Update README.md
Browse files
README.md
CHANGED
|
@@ -50,8 +50,8 @@ This model is fine-tuned from [`vinai/phobert-base`](https://huggingface.co/vina
|
|
| 50 |
```python
|
| 51 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
| 52 |
|
| 53 |
-
tokenizer = AutoTokenizer.from_pretrained("tmt3103/VSFC-
|
| 54 |
-
model = AutoModelForSequenceClassification.from_pretrained("tmt3103/VSFC-
|
| 55 |
|
| 56 |
inputs = tokenizer("Giảng viên thân thiện dễ thương", return_tensors="pt")
|
| 57 |
outputs = model(**inputs)
|
|
|
|
| 50 |
```python
|
| 51 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
| 52 |
|
| 53 |
+
tokenizer = AutoTokenizer.from_pretrained("tmt3103/VSFC-topic-classify-phoBERT")
|
| 54 |
+
model = AutoModelForSequenceClassification.from_pretrained("tmt3103/VSFC-topic-classify-phoBERT")
|
| 55 |
|
| 56 |
inputs = tokenizer("Giảng viên thân thiện dễ thương", return_tensors="pt")
|
| 57 |
outputs = model(**inputs)
|