You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

Financial Sentiment Dataset

This dataset contains financial news articles and social media posts labeled with sentiment scores. It is designed to train and evaluate models for sentiment analysis in the context of financial markets.

Dataset Details

  • Data Sources: Financial news websites, social media platforms (e.g., Twitter, Reddit)
  • Labels: Positive, Negative, Neutral
  • Number of Samples: 50,000
  • Languages: English

Dataset Structure

The dataset is structured as follows:

  • text: The text of the financial news article or social media post.
  • label: The sentiment label (Positive, Negative, Neutral).

Example:

text label
"The market is bullish today." Positive
"The company's earnings report was poor." Negative
"The stock price remained unchanged." Neutral

Usage

To use this dataset for training or evaluation, follow the instructions below:

from datasets import load_dataset

# Load the dataset
dataset = load_dataset('your_dataset_name')

# Print the first example
print(dataset['train'][0])
Downloads last month
36