justinphan3110 commited on
Commit
a54febd
1 Parent(s): c2e5e46

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -0
README.md CHANGED
@@ -29,6 +29,7 @@ model = AutoModelForSeq2SeqLM.from_pretrained("VietAI/vit5-base-vietnews-summari
29
  model.cuda()
30
 
31
  sentence = "VietAI là tổ chức phi lợi nhuận với sứ mệnh ươm mầm tài năng về trí tuệ nhân tạo và xây dựng một cộng đồng các chuyên gia trong lĩnh vực trí tuệ nhân tạo đẳng cấp quốc tế tại Việt Nam."
 
32
  encoding = tokenizer(sentence, return_tensors="pt")
33
  input_ids, attention_masks = encoding["input_ids"].to("cuda"), encoding["attention_mask"].to("cuda")
34
  outputs = model.generate(
 
29
  model.cuda()
30
 
31
  sentence = "VietAI là tổ chức phi lợi nhuận với sứ mệnh ươm mầm tài năng về trí tuệ nhân tạo và xây dựng một cộng đồng các chuyên gia trong lĩnh vực trí tuệ nhân tạo đẳng cấp quốc tế tại Việt Nam."
32
+ sentence = sentence + "</s>"
33
  encoding = tokenizer(sentence, return_tensors="pt")
34
  input_ids, attention_masks = encoding["input_ids"].to("cuda"), encoding["attention_mask"].to("cuda")
35
  outputs = model.generate(