Initial release

This commit is contained in:
Pascal
2026-05-10 15:57:15 +02:00
commit add3f940a0
77 changed files with 12367 additions and 0 deletions
Executable
+22
View File
@@ -0,0 +1,22 @@
#!/bin/bash
# Download pre-quantized Qwen3-TTS GGUF models from HuggingFace.
# Usage: ./models.sh
set -eu
REPO="Serveurperso/qwentts.cpp-GGUF"
DIR="models"
mkdir -p "$DIR"
dl() {
local file="$1"
if [ -f "$DIR/$file" ]; then
echo "[OK] $file"
return
fi
echo "[Download] $file"
hf download --quiet "$REPO" "$file" --local-dir "$DIR"
}
dl "qwen-tokenizer-12hz-F32.gguf"
dl "qwen-base-0.6b-Q8_0.gguf"