Update README.md
Browse files
README.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
|
|
|
|
3 |
---
|
4 |
# Disclamer
|
5 |
I do not own, distribute, or take credits for this model, all copyrights belong to [Instadeep](https://huggingface.co/InstaDeepAI) under the [MIT licence](https://github.com/instadeepai/tunbert/)
|
@@ -19,6 +23,6 @@ model = AutoModelForSequenceClassification.from_pretrained("not-lain/TunBERT",tr
|
|
19 |
# how to use the model
|
20 |
```python
|
21 |
text = "[insert text here]"
|
22 |
-
inputs = tokenizer(text,return_tensors='pt')
|
23 |
output = model(**inputs)
|
24 |
-
```
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
datasets:
|
4 |
+
- tsac
|
5 |
+
language:
|
6 |
+
- ar
|
7 |
---
|
8 |
# Disclamer
|
9 |
I do not own, distribute, or take credits for this model, all copyrights belong to [Instadeep](https://huggingface.co/InstaDeepAI) under the [MIT licence](https://github.com/instadeepai/tunbert/)
|
|
|
23 |
# how to use the model
|
24 |
```python
|
25 |
text = "[insert text here]"
|
26 |
+
inputs = tokenizer(text,return_tensors='pt') # make sure you are using the `return_tensors='pt'` parameter
|
27 |
output = model(**inputs)
|
28 |
+
```
|