hantian2 commited on
Commit
44bc19d
1 Parent(s): e29e56e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -0
README.md CHANGED
@@ -1,3 +1,12 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ # Usage
6
+
7
+ ```
8
+ from transformers import AutoTokenizer, AutoModelForSequenceClassification
9
+
10
+ tokenizer = AutoTokenizer.from_pretrained("bert-base-uncased")
11
+ model = AutoModelForSequenceClassification.from_pretrained("CogComp/ZeroShotWiki")
12
+ ```