Transformers How to use vicky4s4s/voice_recognition_technology with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="vicky4s4s/voice_recognition_technology") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("vicky4s4s/voice_recognition_technology")
model = AutoModelForSpeechSeq2Seq.from_pretrained("vicky4s4s/voice_recognition_technology")