Commit
·
446419b
1
Parent(s):
47b7a78
Update README.md
Browse files
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 |
+
```
|