Instructions to use DevMehdip/whisper-small-fa-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use DevMehdip/whisper-small-fa-lora with PEFT:
from peft import PeftModel from transformers import AutoModelForSeq2SeqLM base_model = AutoModelForSeq2SeqLM.from_pretrained("openai/whisper-small") model = PeftModel.from_pretrained(base_model, "DevMehdip/whisper-small-fa-lora") - Transformers
How to use DevMehdip/whisper-small-fa-lora with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("DevMehdip/whisper-small-fa-lora", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Add model from GitHub repo
Browse files
Fine-tuning-Whisper-Model
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
Subproject commit 7eae04793d42b1b7c0f102e6381023e6acc5b706
|