GGUF-converted weights for
mispeech/Dasheng-AudioGen
All variants include the same T5 encoder, vocoder, and tokenizer.
1# Clone and build
2git clone https://github.com/audiohacking/audiogen.cpp
3cd audiogen.cpp
4git submodule update --init --recursive
5make metal # or: make cpu
6
7# Download models (choose one)
8make download-models # F16 (~5.7GB) - best quality
9make download-models-q8 # Q8 (~3.8GB) - great quality
10make download-models-q4 # Q4 (~2.8GB) - good quality
11
12# Generate audio
13./build-metal/dasheng-audiogen \
14 models/t5_encoder.gguf models/dit.gguf models/vocoder.gguf models/spiece.model \
15 --caption "A dog barking loudly" --output output.wav
1./build-metal/dasheng-audiogen \
2 models/t5_encoder.gguf models/dit.gguf models/vocoder.gguf models/spiece.model \
3 --caption "A gritty detective narrating" \
4 --speech "gritty deep male voice" \
5 --asr "The city never sleeps, but it sure knows how to cry." \
6 --sfx "heavy rain hitting pavement" \
7 --music "melancholic solo saxophone" \
8 --env "distant urban ambience" \
9 --output noir_detective.wav
This is a GGUF conversion of
mispeech/Dasheng-AudioGen. Please refer to the original model card for more details about the model architecture and training.