dnozza commited on
Commit
6205ade
1 Parent(s): 7c40319

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -51,7 +51,7 @@ This model is the fine-tuned version of the [XLM-RoBERTa-large](https://huggingf
51
 
52
  ```python
53
  from transformers import pipeline
54
- classifier = pipeline("text-classification",model='MilaNLProc/hate-ita',top_k=2)
55
  prediction = classifier("ti odio")
56
  print(prediction)
57
  ```
 
51
 
52
  ```python
53
  from transformers import pipeline
54
+ classifier = pipeline("text-classification",model='MilaNLProc/hate-ita-xlm-r-large',top_k=2)
55
  prediction = classifier("ti odio")
56
  print(prediction)
57
  ```