Update README.md
Browse files
README.md
CHANGED
@@ -20,8 +20,14 @@ More information needed
|
|
20 |
|
21 |
## Intended uses & limitations
|
22 |
|
23 |
-
|
|
|
|
|
|
|
|
|
24 |
|
|
|
|
|
25 |
## Training and evaluation data
|
26 |
|
27 |
More information needed
|
|
|
20 |
|
21 |
## Intended uses & limitations
|
22 |
|
23 |
+
the model can be used using the following commands
|
24 |
+
```python
|
25 |
+
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
|
26 |
+
|
27 |
+
tokenizer = AutoTokenizer.from_pretrained("Aharneish/qa-model")
|
28 |
|
29 |
+
model = AutoModelForQuestionAnswering.from_pretrained("Aharneish/qa-model")
|
30 |
+
```
|
31 |
## Training and evaluation data
|
32 |
|
33 |
More information needed
|