How to add hugging face lib to a Kaggle notebook

409 Views Asked by At

How to add hugging face lib to a Kaggle notebook. I want to add this one to my notebook . the code sample below does not work in the notebook I have. is there some additional step I have missed?

1

There are 1 best solutions below

0
On BEST ANSWER

All models of the huggingface model hub are available once you install the library. This one in particular is only available in PyTorch, so you should install both transformers and torch:

!pip install transformers torch

You can then use the model:

from transformers import BartForConditionalGeneration

model = BartForConditionalGeneration.from_pretrained("facebook/bart-large-cnn")

This model is a summarization model so I would recommend reading the summarization tutorial on Hugging Face's website.