Create README.md
Browse files
README.md
CHANGED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
## How to use
|
3 |
+
|
4 |
+
You can use this model with Transformers for Sentiment Classification.
|
5 |
+
|
6 |
+
from transformers import AutoModelForSequenceClassification
|
7 |
+
from transformers import AutoTokenizer
|
8 |
+
|
9 |
+
|
10 |
+
model = AutoModelForSequenceClassification.from_pretrained('Ifyokoh/Igbo-sentiment-bbc')
|
11 |
+
tokenizer = AutoTokenizer.from_pretrained('Ifyokoh/Igbo-sentiment-bbc')
|