gabski commited on
Commit
df79469
1 Parent(s): 98b22d8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -24,8 +24,8 @@ We cast this task as a multi-class classification task, where the objective is g
24
  from transformers import AutoTokenizer, AutoModelForSequenceClassification
25
  import torch
26
 
27
- tokenizer = AutoTokenizer.from_pretrained("gabski/deberta-claim-improvement-suggestion-with-parent-context")
28
- model = AutoModelForSequenceClassification.from_pretrained("gabski/deberta-claim-improvement-suggestion-with-parent-context")
29
  claim = 'Teachers are likely to educate children better than parents.'
30
  thesis = 'Homeschooling should be banned.'
31
  model_input = tokenizer(claim,thesis, return_tensors='pt')
 
24
  from transformers import AutoTokenizer, AutoModelForSequenceClassification
25
  import torch
26
 
27
+ tokenizer = AutoTokenizer.from_pretrained("gabski/deberta-claim-improvement-suggestion-with-thesis-context")
28
+ model = AutoModelForSequenceClassification.from_pretrained("gabski/deberta-claim-improvement-suggestion-with-thesis-context")
29
  claim = 'Teachers are likely to educate children better than parents.'
30
  thesis = 'Homeschooling should be banned.'
31
  model_input = tokenizer(claim,thesis, return_tensors='pt')