diff --git a/README.md b/README.md index 28cfb6b..efcd8b7 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,6 @@ model_path = "cardiffnlp/twitter-xlm-roberta-base-sentiment" sentiment_task = pipeline("sentiment-analysis", model=model_path, tokenizer=model_path) sentiment_task("T'estimo!") ``` -Output: ``` [{'label': 'Positive', 'score': 0.6600581407546997}] ```