Instructions to use ELiRF/mt5-base-dacsa-es with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ELiRF/mt5-base-dacsa-es with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "summarization" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("summarization", model="ELiRF/mt5-base-dacsa-es")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("ELiRF/mt5-base-dacsa-es") model = AutoModelForSeq2SeqLM.from_pretrained("ELiRF/mt5-base-dacsa-es") - Notebooks
- Google Colab
- Kaggle
Commit History
Update README.md 5536eaf
Vicent Ahuir Esteve commited on
Update README.md 71b349e
Vicent Ahuir Esteve commited on
Update README.md 05ccb9f
Vicent Ahuir Esteve commited on
Update README.md fc1fe3d
Vicent Ahuir Esteve commited on
Update tokenizer_config.json 0969cf3
Vicent Ahuir Esteve commited on
Create README.md e644be5
Vicent Ahuir Esteve commited on
Update config.json 0e573a3
Vicent Ahuir Esteve commited on
add tokenizer cd6a4ad
Vicent Ahuir Esteve commited on
add model 080060f
Vicent Ahuir Esteve commited on
initial commit c6da4f7
Vicent Ahuir Esteve commited on