thoriqfy commited on
Commit
041cb62
1 Parent(s): 070f1bb

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -0
README.md ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - id
4
+ ---
5
+ How to import:
6
+ ```python
7
+ from transformers import AutoModel, AutoTokenizer
8
+
9
+ tokenizer = BertTokenizer.from_pretrained("thoriqfy/indobert-emotion-classification")
10
+ config = BertConfig.from_pretrained("thoriqfy/indobert-emotion-classification")
11
+ model = BertForSequenceClassification.from_pretrained("thoriqfy/indobert-emotion-classification", config=config)
12
+ ```