Update README.md
Browse files
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 |
+
```
|