Update README.md
Browse files
README.md
CHANGED
@@ -97,7 +97,7 @@ SpeechLLM is a multi-modal LLM trained to predict the metadata of the speaker's
|
|
97 |
```python
|
98 |
# Load model directly from huggingface
|
99 |
from transformers import AutoModel
|
100 |
-
model = AutoModel.from_pretrained("skit-ai/
|
101 |
|
102 |
model.generate_meta(
|
103 |
audio_path="path-to-audio.wav",
|
|
|
97 |
```python
|
98 |
# Load model directly from huggingface
|
99 |
from transformers import AutoModel
|
100 |
+
model = AutoModel.from_pretrained("skit-ai/speechllm-2B", trust_remote_code=True)
|
101 |
|
102 |
model.generate_meta(
|
103 |
audio_path="path-to-audio.wav",
|