# Load model directly
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
tokenizer = AutoTokenizer.from_pretrained("Atnafu/mt5-base")
model = AutoModelForSeq2SeqLM.from_pretrained("Atnafu/mt5-base")Quick Links
README.md exists but content is empty.
- Downloads last month
- 11
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="Atnafu/mt5-base")