Sentiment140
1.6 million tweets classified into positive and negative | Sentiment analysis
@kaggle.krishbaisoya_tweets_sentiment_analysis
1.6 million tweets classified into positive and negative | Sentiment analysis
@kaggle.krishbaisoya_tweets_sentiment_analysis
This is the Sentiment-140 data-set. It contains 1,600,000 tweets extracted using the twitter API . The tweets have been annotated (0 = negative, 1 = positive) and they can be used to detect sentiment .
CREATE TABLE test_data (
"sentence" VARCHAR,
"sentiment" BIGINT
);
CREATE TABLE train_data (
"sentence" VARCHAR,
"sentiment" BIGINT
);
Anyone who has the link will be able to view this.