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-with-thesis")
|
| 31 |
-
model = AutoModelForSequenceClassification.from_pretrained("gabski/deberta-suboptimal-claim-detection-with-thesis")
|
| 32 |
claim = 'Teachers are likely to educate children better than parents.'
|
| 33 |
thesis = 'Homeschooling should be banned.'
|
| 34 |
model_input = tokenizer(claim, thesis, return_tensors='pt')
|
|
|
|
| 27 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
| 28 |
import torch
|
| 29 |
|
| 30 |
+
tokenizer = AutoTokenizer.from_pretrained("gabski/deberta-suboptimal-claim-detection-with-thesis-context")
|
| 31 |
+
model = AutoModelForSequenceClassification.from_pretrained("gabski/deberta-suboptimal-claim-detection-with-thesis-context")
|
| 32 |
claim = 'Teachers are likely to educate children better than parents.'
|
| 33 |
thesis = 'Homeschooling should be banned.'
|
| 34 |
model_input = tokenizer(claim, thesis, return_tensors='pt')
|