Instructions to use hinge/danstral-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use hinge/danstral-v1 with PEFT:
from peft import PeftModel from transformers import AutoModelForSeq2SeqLM base_model = AutoModelForSeq2SeqLM.from_pretrained("mistralai/Voxtral-Small-24B-2507") model = PeftModel.from_pretrained(base_model, "hinge/danstral-v1") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -112,6 +112,7 @@ for i in range(10):
|
|
| 112 |
print(f"Ground Truth: {ground_truth}")
|
| 113 |
print(f"Prediction: {decoded_outputs[0]}")
|
| 114 |
print("-" * 40)
|
|
|
|
| 115 |
## Shoutouts
|
| 116 |
- Viktor Stenby Johansson and Rasmus Asgaard for ASR hackathon and ideation
|
| 117 |
- The CoRal project and Alexandra Institute for curating Danish datasets and leading the effort in Danish NLP
|
|
|
|
| 112 |
print(f"Ground Truth: {ground_truth}")
|
| 113 |
print(f"Prediction: {decoded_outputs[0]}")
|
| 114 |
print("-" * 40)
|
| 115 |
+
```
|
| 116 |
## Shoutouts
|
| 117 |
- Viktor Stenby Johansson and Rasmus Asgaard for ASR hackathon and ideation
|
| 118 |
- The CoRal project and Alexandra Institute for curating Danish datasets and leading the effort in Danish NLP
|