Update README.md
Browse files
README.md
CHANGED
@@ -54,10 +54,10 @@ This model is suitable for rapid prototyping and practical applications in autom
|
|
54 |
```python
|
55 |
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
|
56 |
|
57 |
-
tokenizer = AutoTokenizer.from_pretrained("
|
58 |
-
model = AutoModelForSeq2SeqLM.from_pretrained("
|
59 |
|
60 |
-
text = "
|
61 |
|
62 |
# "summarize: " prefix
|
63 |
input_text = "summarize: " + text
|
|
|
54 |
```python
|
55 |
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
|
56 |
|
57 |
+
tokenizer = AutoTokenizer.from_pretrained("LaciaStudio/Lacia_sum_small_v1")
|
58 |
+
model = AutoModelForSeq2SeqLM.from_pretrained("LaciaStudio/Lacia_sum_small_v1")
|
59 |
|
60 |
+
text = "Современные технологии оказывают значительное влияние на нашу повседневную жизнь и рабочие процессы. Искусственный интеллект становится важным инструментом, помогающим оптимизировать задачи и открывающим новые перспективы в различных областях."
|
61 |
|
62 |
# "summarize: " prefix
|
63 |
input_text = "summarize: " + text
|