Update README.md
Browse files
README.md
CHANGED
@@ -42,5 +42,5 @@ inputs = recap_tokenizer(["restore capitalization and punctuation: " + sentence]
|
|
42 |
outputs = recap_model.generate(**inputs, max_length=768, num_beams=5, early_stopping=True).squeeze(0)
|
43 |
recap_result = recap_tokenizer.decode(outputs, skip_special_tokens=True)
|
44 |
print(recap_result)
|
45 |
-
-> Скопје е главен град на
|
46 |
```
|
|
|
42 |
outputs = recap_model.generate(**inputs, max_length=768, num_beams=5, early_stopping=True).squeeze(0)
|
43 |
recap_result = recap_tokenizer.decode(outputs, skip_special_tokens=True)
|
44 |
print(recap_result)
|
45 |
+
-> "Скопје е главен град на Македонија".
|
46 |
```
|