Instructions to use voidful/mbart-large-50-many-to-many-unit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use voidful/mbart-large-50-many-to-many-unit with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="voidful/mbart-large-50-many-to-many-unit")# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("voidful/mbart-large-50-many-to-many-unit") model = AutoModelForMultimodalLM.from_pretrained("voidful/mbart-large-50-many-to-many-unit") - Notebooks
- Google Colab
- Kaggle
# Load model directly
from transformers import AutoTokenizer, AutoModelForMultimodalLM
tokenizer = AutoTokenizer.from_pretrained("voidful/mbart-large-50-many-to-many-unit")
model = AutoModelForMultimodalLM.from_pretrained("voidful/mbart-large-50-many-to-many-unit")Quick Links
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="voidful/mbart-large-50-many-to-many-unit")