提交 e320939
mataoxun commited on
How to use mgtoxd/tsttst with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="mgtoxd/tsttst") # Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("mgtoxd/tsttst")
model = AutoModelForCTC.from_pretrained("mgtoxd/tsttst")