idjotherwise
commited on
Commit
•
a26ebcf
1
Parent(s):
52b6ee8
Update README.md
Browse filesremove use_auth_token argument
README.md
CHANGED
@@ -34,9 +34,9 @@ Or Python API:
|
|
34 |
```
|
35 |
from transformers import AutoModelForSequenceClassification, AutoTokenizer
|
36 |
|
37 |
-
model = AutoModelForSequenceClassification.from_pretrained("idjotherwise/autonlp-reading_prediction-172506"
|
38 |
|
39 |
-
tokenizer = AutoTokenizer.from_pretrained("idjotherwise/autonlp-reading_prediction-172506"
|
40 |
|
41 |
inputs = tokenizer("I love AutoNLP", return_tensors="pt")
|
42 |
|
|
|
34 |
```
|
35 |
from transformers import AutoModelForSequenceClassification, AutoTokenizer
|
36 |
|
37 |
+
model = AutoModelForSequenceClassification.from_pretrained("idjotherwise/autonlp-reading_prediction-172506")
|
38 |
|
39 |
+
tokenizer = AutoTokenizer.from_pretrained("idjotherwise/autonlp-reading_prediction-172506")
|
40 |
|
41 |
inputs = tokenizer("I love AutoNLP", return_tensors="pt")
|
42 |
|