Error in Sentiment Analysis Pipeline

Hello,
I’m getting the error when running the following code:

!pip install -q transformers
from transformers import pipeline
data = ["I love you", "I hate you"]
specific_model = pipeline(model="finiteautomata/bertweet-base-sentiment-analysis")
specific_model(data)

The code was running fine before.