gabski commited on
Commit
8159881
1 Parent(s): e26b98b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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')