Update README.md
Browse files
README.md
CHANGED
@@ -28,8 +28,8 @@ This is the <a href="https://huggingface.co/facebook/bart-base">bart-base</a> (<
|
|
28 |
```python
|
29 |
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
|
30 |
|
31 |
-
tokenizer = AutoTokenizer.from_pretrained("
|
32 |
-
model = AutoModelForSeq2SeqLM.from_pretrained("
|
33 |
|
34 |
text = "In this paper, we investigate cross-domain limitations of keyphrase generation using the models for abstractive text summarization.\
|
35 |
We present an evaluation of BART fine-tuned for keyphrase generation across three types of texts, \
|
|
|
28 |
```python
|
29 |
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
|
30 |
|
31 |
+
tokenizer = AutoTokenizer.from_pretrained("aglazkova/bart_finetuned_keyphrase_extraction")
|
32 |
+
model = AutoModelForSeq2SeqLM.from_pretrained("aglazkova/bart_finetuned_keyphrase_extraction")
|
33 |
|
34 |
text = "In this paper, we investigate cross-domain limitations of keyphrase generation using the models for abstractive text summarization.\
|
35 |
We present an evaluation of BART fine-tuned for keyphrase generation across three types of texts, \
|