Instructions to use facebook/bart-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use facebook/bart-base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="facebook/bart-base")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("facebook/bart-base") model = AutoModel.from_pretrained("facebook/bart-base") - Inference
- Notebooks
- Google Colab
- Kaggle
Commit History
Update config.json d0af988
remove ipynb file ea0107e
update mask token embeddings b0c3779
Fix code example 7652e0c
Add model card 51f9983
add flax model c5eee23
Move tokenizer.json from roberta-large c2469fb
Added vocabulary files from robert-large repo df1e90c
Thomas Wolf commited on