File size: 2,235 Bytes
7c96444 b12afd6 7c96444 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
```CODE:
# Load model directly
from transformers import AutoModelForSeq2SeqLM
model = AutoModelForSeq2SeqLM.from_pretrained("FunAudioLLM/Fun-Audio-Chat-8B", dtype="auto")
```
ERROR:
Traceback (most recent call last):
File "/tmp/.cache/uv/environments-v2/124dad88d9083e78/lib/python3.13/site-packages/transformers/models/auto/configuration_auto.py", line 1360, in from_pretrained
config_class = CONFIG_MAPPING[config_dict["model_type"]]
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/.cache/uv/environments-v2/124dad88d9083e78/lib/python3.13/site-packages/transformers/models/auto/configuration_auto.py", line 1048, in __getitem__
raise KeyError(key)
KeyError: 'funaudiochat'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/tmp/FunAudioLLM_Fun-Audio-Chat-8B_01j34gE.py", line 25, in <module>
model = AutoModelForSeq2SeqLM.from_pretrained("FunAudioLLM/Fun-Audio-Chat-8B", dtype="auto")
File "/tmp/.cache/uv/environments-v2/124dad88d9083e78/lib/python3.13/site-packages/transformers/models/auto/auto_factory.py", line 549, in from_pretrained
config, kwargs = AutoConfig.from_pretrained(
~~~~~~~~~~~~~~~~~~~~~~~~~~^
pretrained_model_name_or_path,
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...<4 lines>...
**kwargs,
^^^^^^^^^
)
^
File "/tmp/.cache/uv/environments-v2/124dad88d9083e78/lib/python3.13/site-packages/transformers/models/auto/configuration_auto.py", line 1362, in from_pretrained
raise ValueError(
...<8 lines>...
)
ValueError: The checkpoint you are trying to load has model type `funaudiochat` 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.
You can update Transformers with the command `pip install --upgrade transformers`. If this does not work, and the checkpoint is very new, then there may not be a release version that supports this model yet. In this case, you can get the most up-to-date code by installing Transformers from source with the command `pip install git+https://github.com/huggingface/transformers.git`
|