Transformers How to use aoiandroid/seamless-m4t-v2-large with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="aoiandroid/seamless-m4t-v2-large") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("aoiandroid/seamless-m4t-v2-large")
model = AutoModel.from_pretrained("aoiandroid/seamless-m4t-v2-large")