Shenzy commited on
Commit
34e4ef5
1 Parent(s): 31dbd2c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -40,9 +40,9 @@ import numpy as np
40
 
41
  labdic ={ 0: "rationale", 1: "suggestion", 2: "specific_critique"}
42
 
43
- model = AutoModelForSequenceClassification.from_pretrained("Shenzy/Sentence_Classification4DesignTutor", use_auth_token=True)
44
 
45
- tokenizer = AutoTokenizer.from_pretrained("Shenzy/Sentence_Classification4DesignTutor", use_auth_token=True)
46
 
47
  inputs = tokenizer("An unusual hierarchy in the section near the top where the design seems to prioritise running time over a compacted artist name.", return_tensors="pt")
48
 
 
40
 
41
  labdic ={ 0: "rationale", 1: "suggestion", 2: "specific_critique"}
42
 
43
+ model = AutoModelForSequenceClassification.from_pretrained("Shenzy/Sentence_Classification4DesignTutor")
44
 
45
+ tokenizer = AutoTokenizer.from_pretrained("Shenzy/Sentence_Classification4DesignTutor")
46
 
47
  inputs = tokenizer("An unusual hierarchy in the section near the top where the design seems to prioritise running time over a compacted artist name.", return_tensors="pt")
48