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