Upload zai-org_GLM-ASR-Nano-2512_1.txt with huggingface_hub
Browse files
zai-org_GLM-ASR-Nano-2512_1.txt
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
```CODE:
|
| 2 |
+
# Load model directly
|
| 3 |
+
from transformers import AutoModelForCausalLM
|
| 4 |
+
model = AutoModelForCausalLM.from_pretrained("zai-org/GLM-ASR-Nano-2512", trust_remote_code=True, dtype="auto")
|
| 5 |
+
```
|
| 6 |
+
|
| 7 |
+
ERROR:
|
| 8 |
+
Traceback (most recent call last):
|
| 9 |
+
File "/tmp/zai-org_GLM-ASR-Nano-2512_1igCSvL.py", line 25, in <module>
|
| 10 |
+
model = AutoModelForCausalLM.from_pretrained("zai-org/GLM-ASR-Nano-2512", trust_remote_code=True, dtype="auto")
|
| 11 |
+
File "/tmp/.cache/uv/environments-v2/1f148c168d860d2b/lib/python3.13/site-packages/transformers/models/auto/auto_factory.py", line 586, in from_pretrained
|
| 12 |
+
model_class = get_class_from_dynamic_module(
|
| 13 |
+
class_ref, pretrained_model_name_or_path, code_revision=code_revision, **hub_kwargs, **kwargs
|
| 14 |
+
)
|
| 15 |
+
File "/tmp/.cache/uv/environments-v2/1f148c168d860d2b/lib/python3.13/site-packages/transformers/dynamic_module_utils.py", line 616, in get_class_from_dynamic_module
|
| 16 |
+
return get_class_in_module(class_name, final_module, force_reload=force_download)
|
| 17 |
+
File "/tmp/.cache/uv/environments-v2/1f148c168d860d2b/lib/python3.13/site-packages/transformers/dynamic_module_utils.py", line 311, in get_class_in_module
|
| 18 |
+
module_spec.loader.exec_module(module)
|
| 19 |
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^
|
| 20 |
+
File "<frozen importlib._bootstrap_external>", line 1026, in exec_module
|
| 21 |
+
File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
|
| 22 |
+
File "/tmp/.cache/huggingface/modules/transformers_modules/zai_hyphen_org/GLM_hyphen_ASR_hyphen_Nano_hyphen_2512/fdc39709f86b00cdce879c04d967c2146ce4053c/modeling_glmasr.py", line 9, in <module>
|
| 23 |
+
from .modeling_audio import WhisperSpecialEncoder
|
| 24 |
+
File "/tmp/.cache/huggingface/modules/transformers_modules/zai_hyphen_org/GLM_hyphen_ASR_hyphen_Nano_hyphen_2512/fdc39709f86b00cdce879c04d967c2146ce4053c/modeling_audio.py", line 8, in <module>
|
| 25 |
+
from transformers.models.whisper.modeling_whisper import WhisperEncoder, WhisperEncoderLayer, WhisperFlashAttention2
|
| 26 |
+
ImportError: cannot import name 'WhisperFlashAttention2' from 'transformers.models.whisper.modeling_whisper' (/tmp/.cache/uv/environments-v2/1f148c168d860d2b/lib/python3.13/site-packages/transformers/models/whisper/modeling_whisper.py)
|