Audio-Text-to-Text
Transformers
Safetensors
English
Korean
fastslm
feature-extraction
audio
text-generation
custom_code
Eval Results
Instructions to use okestro-ai-lab/FastSLM-ASR with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use okestro-ai-lab/FastSLM-ASR with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("okestro-ai-lab/FastSLM-ASR", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 383 Bytes
3cbab94 e5422ca 3cbab94 e5422ca 3cbab94 | 1 2 3 4 5 6 7 8 9 | from .configuration_symphony import SymphonyConfig
from .modeling_symphony import SymphonyForConditionalGeneration
from transformers import AutoConfig, AutoModelForCausalLM, AutoModel
AutoConfig.register("symphony", SymphonyConfig)
AutoModelForCausalLM.register(SymphonyConfig, SymphonyForConditionalGeneration)
AutoModel.register(SymphonyConfig, SymphonyForConditionalGeneration)
|