Model reference · open weights
GLaDOS_TTS is an open-weight audio or speech model from DavesArmoury. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | DavesArmoury |
|---|---|
| Type | Audio & music |
| Task | Text→speech |
| Runs with | nemo |
| Released | 2024-02-20 |
| Popularity | 506 downloads / month |
| Licence | Open weights |
About
This was trained with the ipython notebok HERE
Look here https://docs.nvidia.com/deeplearning/riva/user-guide/docs/quick-start-guide.html
pip3 install whl
pip3 install nemo2riva
nemo2riva --out hifigan.riva hifigan.nemo --key None
nemo2riva --out fastpitch.riva fastpitch.nemo --key None
scp .riva files to jetson under ~/RIVA/artifacts
docker run --gpus all -it --rm \
-v /home/davesarmoury/RIVA/artifacts:/servicemaker-dev \
-v /home/davesarmoury/RIVA/riva_repo:/data \
--entrypoint="/bin/bash" \
nvcr.io/nvidia/riva/riva-speech:2.13.1-servicemaker-l4t-aarch64
riva-build speech_synthesis \
/servicemaker-dev/glados.rmir:tlt_encode \
/servicemaker-dev/glados_fastpitch.riva:tlt_encode \
/servicemaker-dev/glados_hifigan.riva:tlt_encode \
--voice_name=GLaDOS \
--sample_rate 22050
riva-deploy /servicemaker-dev/glados.rmir:tlt_encode /data/models
# Exit docker
ngc registry resource download-version nvidia/riva/riva_quickstart_arm64:2.13.1
cd riva_quickstart_arm64_v2.13.1
bash riva_init.sh
copy glados.riva files into riva models dir
riva_start.shFrom the published model card. Full card on the HuggingFace links in the sidebar.
How it works
Using it via the API
Once AxForge deploys glados-tts for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (glados-tts below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/audio/transcriptions \ -H "Authorization: Bearer $AXFORGE_API_KEY" \ -F model="glados-tts" -F file=@audio.mp3
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.