error in colab

#10
by Patronumland - opened

Downloading and registering custom 'breeze' code...
Critical Error during load: The checkpoint you are trying to load has model type breeze but Transformers does not recognize this architecture. This could be because of an issue with the checkpoint, or because your version of Transformers is out of date.

BreezeBlue org

Thanks for reporting this.

Breeze TTS 2 uses a custom breeze model architecture that is implemented and registered by the inference repository. It cannot currently be loaded directly with the generic AutoModelForSeq2SeqLM.from_pretrained() example shown on the Hugging Face model page.

Please use the official inference repository instead:

git clone https://github.com/breezeblue-ai/breeze-tts.git
cd breeze-tts
python -m pip install -r requirements.txt

Then follow the inference examples in the repository README:
https://github.com/breezeblue-ai/breeze-tts#-quick-start

Sign up or log in to comment