CoolFace
Datasetpublic

flamiinngo/market-news-qa

Market News QA — Market-Analysis Instruction Dataset Concise question-and-answer pairs for market analysis and financial news interpretation: classifying news by market area, reading sentiment, identifying who a story matters to, and answering forward-looking questions from earnings calls. Built for the Adaption Labs AutoScientist Challenge (Market-Analysis & News category). Rows 10,011 Distinct answers 8,469 (85%) Duplicate questions none Nulls none… See the full description on the dataset page: https://huggingface.co/datasets/flamiinngo/market-news-qa.

sourceHugging Facecc-by-4.0updated 2mo agoView on Hugging Face
1likes49downloads
Dataset Card

Market News QA — Market-Analysis Instruction Dataset

Concise question-and-answer pairs for market analysis and financial news interpretation: classifying news by market area, reading sentiment, identifying who a story matters to, and answering forward-looking questions from earnings calls.

Built for the Adaption Labs AutoScientist Challenge (Market-Analysis & News category).

Rows10,011
Distinct answers8,469 (85%)
Duplicate questionsnone
Nullsnone
Question lengthmedian 23 words (8–63)
Answer lengthmedian 16 words (10–45)
LanguageEnglish
LicenseCC-BY-4.0

Task mix

Five task types, so a model trained on this learns a range of market-analysis skills rather than a single classification behaviour.

TaskRowsShareExample question
Sentiment2,09621%Is this bullish, bearish, or neutral, and why?
Topic classification2,02720%What area of the market does this headline concern?
Implication1,86719%What should an investor watch after this headline?
Who it matters to1,42614%Who in the market should care about this, and why?
Subject identification1,39514%Who or what is this news about?
Earnings-call analysis1,20012%What is driving margin expansion at [company]?

Design notes

Answers are short by design. Median 16 words. In head-to-head evaluation, concise factual answers consistently outperformed long explanatory ones.

Answers are grounded in their own headline. Each names the specific subject — "Microsoft here falls under Analyst Update…", "On TOPS, this reads as bullish…" — rather than reciting a generic category description. That is why 85% of answers are distinct despite a fixed set of categories.

Earnings rows are analyst-shaped, not bookkeeping. They ask about outlook, guidance, drivers, and demand rather than "what was revenue in Q3". Pure metric lookups were filtered out because they classify as corporate finance, not market analysis.

Usage

python
from datasets import load_dataset

ds = load_dataset("flamiinngo/market-news-qa", split="train")
print(ds[0])

Sources & Attribution

SourceLicenseContribution
zeroshot/twitter-financial-news-topicMIT21,107 headlines, 20 topic labels
zeroshot/twitter-financial-news-sentimentMIT11,931 headlines, 3 sentiment labels
lamini/earnings-calls-qaCC-BY-4.0860,164 earnings-call Q&A, filtered to 1,200

Released under CC-BY-4.0, the more restrictive of the upstream licences.

How the earnings rows were filtered

The upstream earnings corpus needed heavy cleaning. From 860,164 rows:

  • —292,002 removed as refusals — 34% of the corpus answers "I do not know" or "not mentioned in the transcript" in some phrasing. Training on these teaches a model to decline.
  • —207,135 removed for naming no subject — questions asking about "the company's revenue" without saying which company. These teach a model to invent figures for unidentified entities.
  • —Further filters removed clinical/pharma content, transcript-dependent answers, and near-duplicate answer structures.
  • —Capped at 3 rows per ticker across 880 companies.

Limitations

  • —Category labels carry source noise. The upstream annotations are imperfect; some headlines are labelled debatably.
  • —Answer explanations are category-level. Each answer names its own subject, but the reasoning clause is drawn from a fixed set of explanations per category. The classification is ground truth; the surrounding analysis is not a per-headline human judgment.
  • —Headlines are from Twitter/X and skew toward US markets, 2020–2022.
  • —Earnings answers are synthetic QA over real transcripts, generated by the upstream authors rather than written by analysts.
  • —Not investment advice. This is training data for research, not a source of financial guidance.

Trained model

Trained with Adaption Labs' AutoScientist on Mixtral-8x7B-Instruct-v0.1 + LoRA.

Disclaimer

For research and informational purposes only. Nothing here is investment advice.