HiroshigeAoki commited on
Commit
446419b
·
1 Parent(s): 47b7a78

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -0
README.md CHANGED
@@ -1 +1,9 @@
1
  Note that model type is Camembert.
 
 
 
 
 
 
 
 
 
1
  Note that model type is Camembert.
2
+
3
+ Usage:
4
+ ```Python
5
+ from transformers import AutoTokenizer, RobertaForSequenceClassification
6
+
7
+ tokenizer = AutoTokenizer.from_pretrained("itsunoda/wolfbbsRoBERTa-small")
8
+ model = RobertaForSequenceClassification.from_pretrained("itsunoda/wolfbbsRoBERTa-small")
9
+ ```