Commit
•
3ae8f00
1
Parent(s):
e26bb9e
Update README.md (#1)
Browse files- Update README.md (daf9254828f7773fba66b02ed1f290dc802310bc)
Co-authored-by: Long Phan <justinphan3110@users.noreply.huggingface.co>
README.md
CHANGED
@@ -30,7 +30,7 @@ tokenizer = AutoTokenizer.from_pretrained("razent/SciFive-base-Pubmed_PMC")
|
|
30 |
model = AutoModelForSeq2SeqLM.from_pretrained("razent/SciFive-base-Pubmed_PMC")
|
31 |
|
32 |
sentence = "Identification of APC2 , a homologue of the adenomatous polyposis coli tumour suppressor ."
|
33 |
-
text =
|
34 |
|
35 |
encoding = tokenizer.encode_plus(text, pad_to_max_length=True, return_tensors="pt")
|
36 |
input_ids, attention_masks = encoding["input_ids"].to("cuda"), encoding["attention_mask"].to("cuda")
|
|
|
30 |
model = AutoModelForSeq2SeqLM.from_pretrained("razent/SciFive-base-Pubmed_PMC")
|
31 |
|
32 |
sentence = "Identification of APC2 , a homologue of the adenomatous polyposis coli tumour suppressor ."
|
33 |
+
text = sentence + "</s>"
|
34 |
|
35 |
encoding = tokenizer.encode_plus(text, pad_to_max_length=True, return_tensors="pt")
|
36 |
input_ids, attention_masks = encoding["input_ids"].to("cuda"), encoding["attention_mask"].to("cuda")
|