Chaitanya14 commited on
Commit
6649d08
·
verified ·
1 Parent(s): fd5f391

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -3
README.md CHANGED
@@ -1,3 +1,14 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+ # How to get started with the model
6
+
7
+ Use the code below to get started with the model.
8
+ ```python
9
+ from transformers import AutoTokenizer, RobertaForSequenceClassification
10
+
11
+ tokenizer = AutoTokenizer.from_pretrained('roberta-large')
12
+
13
+ model = RobertaForSequenceClassification.from_pretarined('Chaitanya14/finroberta')
14
+ ```