Update README.md
Browse files
README.md
CHANGED
@@ -27,8 +27,8 @@ We cast this task as a binary classification task, where the objective is, given
|
|
27 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
28 |
import torch
|
29 |
|
30 |
-
tokenizer = AutoTokenizer.from_pretrained("gabski/deberta-suboptimal-claim-detection")
|
31 |
-
model = AutoModelForSequenceClassification.from_pretrained("gabski/deberta-suboptimal-claim-detection")
|
32 |
claim = 'Teachers are likely to educate children better than parents.'
|
33 |
parent_claim = 'Homeschooling should be banned.'
|
34 |
model_input = tokenizer(claim, parent_claim, return_tensors='pt')
|
|
|
27 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
28 |
import torch
|
29 |
|
30 |
+
tokenizer = AutoTokenizer.from_pretrained("gabski/deberta-suboptimal-claim-detection-with-parent-context")
|
31 |
+
model = AutoModelForSequenceClassification.from_pretrained("gabski/deberta-suboptimal-claim-detection-with-parent-context")
|
32 |
claim = 'Teachers are likely to educate children better than parents.'
|
33 |
parent_claim = 'Homeschooling should be banned.'
|
34 |
model_input = tokenizer(claim, parent_claim, return_tensors='pt')
|