Text Sentiment Analysis

Classify sentiment of reviews for musical instruments found on Amazon

Run

label-studio init --template=text_sentiment sentiment_analysis_project
label-studio start sentiment_analysis_project

Config

<View>
  <Header value="Choose text sentiment:"/>
  <Text name="my_text" value="$reviewText"/>
  <Choices name="sentiment" toName="my_text" choice="single" showInLine="true">
    <Choice value="Positive"/>
    <Choice value="Negative"/>
    <Choice value="Neutral"/>
  </Choices>
</View>