Why Sentiment Analysis cannot be tested?

Hello, I want to implement the sentiment analysis component in the rasa pipeline. But when I run the Rasa Test command with the model. The error shows as below.

Here is my error after running the model test:

Here is my sentiment analysis code:

from rasa.nlu.components import Component

from rasa.nlu import utils

from rasa.nlu.model import Metadata

import nltk

from nltk.sentiment.vader import SentimentIntensityAnalyzer

import os

class SentimentAnalyzer(Component):

"""A pre-trained sentiment component"""

name = "sentiment"

provides = ["entities"]

requires = []

defaults = {}

language_list = ["en"]

def __init__(self, component_config=None):

    super(SentimentAnalyzer, self).__init__(component_config)

def train(self, training_data, cfg, **kwargs):

    """Not needed, because the the model is pretrained"""

    pass

def convert_to_rasa(self, value, confidence):

    """Convert model output into the Rasa NLU compatible output format."""

    entity = {"value": value,

              "confidence": confidence,

              "entity": "sentiment",

              "extractor": "sentiment_extractor"}

    return entity

def process(self, message, **kwargs):

    """Retrieve the text message, pass it to the classifier

        and append the prediction results to the message class."""

    sid = SentimentIntensityAnalyzer()

    data = ""

    try:

        data = message.data['text']

    except KeyError:

        pass

    res = sid.polarity_scores(data)

    key, value = max(res.items(), key=lambda x: x[1])

    entity = self.convert_to_rasa(key, value)

    message.set("entities", [entity], add_to_output=True)

def persist(self, file_name, model_dir):

    """Pass because a pre-trained model is already persisted"""

    pass

Is it have any solution to solve this?

Does the sentiment analysis custom component work as expected when you test in using rasa shell nlu?

Yes, but sometimes the sentiment extractor does not give the accurate sentiment for the sentences.