How to use Shadowmachete/asr_training_small with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="Shadowmachete/asr_training_small")
# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("Shadowmachete/asr_training_small") model = AutoModelForSpeechSeq2Seq.from_pretrained("Shadowmachete/asr_training_small")
The community tab is the place to discuss and collaborate with the HF community!