Update README.md
Browse files
README.md
CHANGED
@@ -22,11 +22,12 @@ def paraphase(text):
|
|
22 |
output = model.generate(input_ids, attention_mask=attention_mask, max_length=64)
|
23 |
return tokenizer.decode(output[0], skip_special_tokens=True)
|
24 |
|
25 |
-
texts = [
|
26 |
-
|
27 |
-
"
|
28 |
-
|
29 |
-
|
|
|
30 |
]
|
31 |
for text in texts:
|
32 |
print(f'Input: {text}')
|
|
|
22 |
output = model.generate(input_ids, attention_mask=attention_mask, max_length=64)
|
23 |
return tokenizer.decode(output[0], skip_special_tokens=True)
|
24 |
|
25 |
+
texts = [
|
26 |
+
"Thật tự hào khi là sinh viên trường Đại học Công nghệ",
|
27 |
+
"Cách kiếm nhiều tiền ?",
|
28 |
+
"Những nguyên lí cơ bản của vật lý ?",
|
29 |
+
"Làm thế nào để học ngôn ngữ Java",
|
30 |
+
"Ngoài ra, nắng nóng còn có thể gây tình trạng mất nước, kiệt sức, đột qụy do sốc nhiệt đối với cơ thể người khi tiếp xúc lâu với nền nhiệt độ cao."
|
31 |
]
|
32 |
for text in texts:
|
33 |
print(f'Input: {text}')
|