Datasets:
Request access to Multi-Source Financial & General News
This corpus aggregates third-party news for research use. Please acknowledge the terms below.
By requesting access you confirm that:
• You will use the data for non-commercial research/education only.
• You will respect each original source’s terms and remove items upon rightsholder request.
• You will cite this corpus and the original sources in any publication.
Log in or Sign Up to review the conditions and access this dataset content.
Multi-Source Financial & General News
🚀 57.1 MILLION ROWS OF NEWS CONTENT — one unified corpus for market-aware AI/ML
I combined 24 public news datasets (many small on their own) into one consistent, ready-to-use layer so you don’t have to wrangle them yourself. Everything is normalized to a minimal schema (date
, text
, extra_fields
) and shipped as Parquet shards per subset—streamable, DuckDB-friendly, and built with a trading date policy (this can be edited if folks see other use cases).
This repo is econ/finance-first (e.g., financial markets related), but also includes broad general news—great for reinforcement learning, language modeling, event studies, or whatever you want for NLP+Finance tasks.
Why this exists
Most “big” news datasets for ML just didn’t exist when I started and I didn’t want to build a web-crawling pipeline, but there were lots of smaller public datasets scattered across Kaggle/HF/author zips. So I unified them into one consistent corpus that spans 1990–2025 and now totals 57,100,000+ rows across 24 subsets. One place, one schema, no scraping—ready for stock trading RL, language modeling, and more. 📰📈
My hope is to keep adding more and more datasets so this becomes THE dataset for finance + NLP research—one place for consistent data, fair comparisons, and real benchmarks. A big issue today, especially in RL + NLP for stock trading, is that there are no standardized datasets; everyone fends for themselves, which makes results hard to compare or reproduce. I’m aiming to change that with this release and will keep expanding it as new public sources appear. See my paper discussing this problem: Ferrell, 2025.
Distribution of news over time
This dataset is
- ⏱️ Ready for general financial news-focused stock trading — the day-level news content carry a trading-session anchor to prevent look-ahead bias (i.e., next NYSE trading date policy).
- 💾 Scalable without pain — columnar Parquet, subset sharding, HF streaming support.
- 🔎 Preserved — some of the original source metadata lives in
extra_fields
(URLs, publishers, tickers, etc.).
Note: I highly suggest turning this data into a local database (e.g., DuckDB) if you want to use for RL training or any training for that matter where you need filtering/sorting capabilities that HF streaming does not adhere to.
Maintainer & contact
- Maintainer:
ferrellbj@vcu.edu
- Issues and takedown requests: open a discussion on the dataset repo or email.
Dataset Structure
All subsets share the same minimal schema:
Column | Type | Description |
---|---|---|
date |
string | UTC timestamp in ISO 8601 (YYYY-MM-DDTHH:MM:SSZ ). If original precision is only day-level, the top-level date is set to midnight UTC and trading date policy information is kept in extra_fields (see below). |
text |
string | Canonicalized text (e.g., title + two newlines + body/abstract). Paragraph breaks are preserved; long runs of whitespace normalized. |
extra_fields |
string | JSON string bundling all preserved non-core fields (URL(s), publisher(s), author(s), tickers, categories, origin, and timing metadata). |
extra_fields.dataset |
string | Subset identifier (dataset-of-origin). |
My dataset creation pipeline summary
- Download original data (Kaggle/HF/archives).
- Standardize to (
date
,text
,extra_fields
) with dataset-specific parsers. - Time handling: minute-level → UTC; day-level → trading date policy (midnight top-level + trading anchor in extras).
- Normalize: URL hygiene; conservative text normalization.
- Deduplicate per subset on
(date, text)
with union of tickers where applicable. - Export Parquet shards per subset → upload to the Hub.
Where necessary (e.g., MIND), timestamps are derived (first-seen from behaviors) or fallback to a safe default (documented in extras).
Trading Date policy (minute vs day level)
Minute-level inputs are converted to UTC ISO strings.
- If timestamps are naive but known to be U.S. market local, we localize with
tz_hint="America/New_York"
then convert to UTC. - If timestamps already include a
Z
/offset, we settz_hint="UTC"
and keep the exact time.
- If timestamps are naive but known to be U.S. market local, we localize with
Day-level inputs follow a dual-date policy:
- Top-level
date
= midnight UTC for coarse alignment. extra_fields
carries:time_precision
:"day"
.anchor_policy
: currently"date_midnight_utc + next_open_in_date_trading"
.date_raw
: original day string.date_trading
: the NYSE next-session open in UTC (e.g.,09:30 ET
converted to UTC).tz_hint
:"UTC"
for day-level sources.
- Top-level
Derived times (e.g., MIND):
date_source
:"behaviors_first_seen"
when using earliest impression;"fallback_global_min_midnight"
when no impressions exist.
Deduplication
- Within all subsets I apply (date, text) deduplication and union tickers where appropriate.
Known limitations
- Cross-subset duplicates are expected (e.g., syndicated headlines). Users can run their own global dedupe across all subsets if needed (e.g., on
(date, text)
or normalizedurl
). - Some rows lack URLs or precise times; I document the chosen trading date policy in
extra_fields
. - Ticker coverage is uneven; use
extra_fields.stocks
if present. - There is most likely a lot of noise within this dataset (i.e., content that doesn't matter towards stock market), but think of it as part of the robustness testing your model training pipeline may need for stock trading tasks (or other uses)!
Intended use & licensing
- This corpus is meant for research: LLM pretraining/fine-tuning, retrieval, event studies, and backtesting of news-driven strategies.
- Original content remains the property of the respective publishers/data providers. Redistribution of full text may require permission.
- The maintainers provide this aggregated format as research-only preprocessing. If you are a rightsholder and would like content removed, please open an issue or email the maintainers.
Openly licensed content: Wikinews is CC-licensed; retain attribution and abide by its terms.
How to cite
If you use this dataset, please cite the original sources and this unified release. A generic BibTeX entry for the unified format:
@misc{brian_ferrell_2025,
author = { Brian Ferrell },
title = { financial-news-multisource (Revision b509ef6) },
year = 2025,
url = { https://huggingface.co/datasets/Brianferrell787/financial-news-multisource },
doi = { 10.57967/hf/6432 },
publisher = { Hugging Face }
}
Versioning
- v0.2.0 — Added 9 new subsets (NYT 2000–present, All-the-News 2, Yahoo Finance feeds, Reddit finance, U.S. financial news, FinSen US, American news crawl, Frontpage).
Standardized
time_precision
/text_type
, cleaned and harmonized extras fields. Total size ≈ 57.1M rows. - v0.1.0 — Initial unified release; 15 subsets; Parquet shards per subset; dual-date policy for day-level rows.
If there are any updates/edits or even other news datasets to add you have in mind, let me know!
Contents (data)
Each subset corresponds to a processed folder/name in data/
:
benzinga_6000stocks
— Daily News 6000 Stocks (Benzinga): analyst ratings + headlines (2000s–2010s).bloomberg_reuters
— Bloomberg full-text (2006–2013) + Reuters titles (2007–2013).sentarl_combined
— SentARL used_icaif_2021 news (20 assets; headline+subhead+abstract; minute-level).fnspid_news
— FNSPID news portion only (1999–2023; minute & day-level mixed).mind_news_2019
— Microsoft MIND (2019; title+abstract); dates derived from behaviors first-seen when needed.gold_news_kaggle
— Commodity (Gold) annotated headlines (2000–2021).huffpost_news
— HuffPost News Category dataset (2012–2018; headlines).sp500_daily_headlines
— S&P 500 headlines (2008–2024; day-level).djia_stock_headlines
— DJIA “Daily News using Headlines” (2000–2016; Top1–Top25 per day flattened).reddit_worldnews_2008_2016
— Reddit r/worldnews headlines (2008–2016; day-level).wikinews_articles
— Wikinews (open-licensed) articles; title + text; mixed years.headlines_10sites_2007_2022
— 4.5M headlines from 10 major sites (2007–2022; date=YYYYMMDD).nyt_headlines_1990_2020
— New York Times (1990–2020; headlines + metadata).nyt_headlines_2010_2021
— New York Times (2010–2021; headline + abstract + lead paragraph).cnbc_headlines
— CNBC headlines with preview text (2017–2020).american_news_jonasbecker
— U.S. multi-outlet crawl (JSON); title+article; primarily 03/2016-07/2021; mixed minute/day.us_financial_news_2018_jeet
— U.S. finance/news JSON articles (multi-publisher); ~2018 approx.; minute-level.nyt_articles_2000_present
— NYT metadata (2000→2025); headline + abstract/snippet/lead; minute/day mixed.finsen_us_2007_2023
— FinSen (US subset): title+article with sentiment/category fields (2007–2023); day-level dates with trading anchor.yahoo_finance_felixdrinkall
— Yahoo Finance JSON (2017–2023): title + description/main text + tickers; minute-level.reddit_finance_sp500
— Reddit finance subs (S&P-related) posts; 2008–2025; minute-level.frontpage_news
— Frontpage multi-outlet headlines/descriptions; 2015–2020; day-level.yahoo_finance_articles
— Yahoo Finance article feed (2025); title+paragraphs; day-level with trading anchor.all_the_news_2
— “All the News 2.0” curation; title+article; 2016–2019 (approx.); minute/day mixed.
Note: Coverage summaries above are approximate; see each subset’s original source for precise details.
Note: Some of these subsets are filtered to use STOCK/ECON/POLITICAL related news outlets for market-impact relationsips and are not exact copies from their original sources.
Example rows (one per subset)
benzinga_6000stocks
{
"date": "2009-02-14T19:02:00Z",
"text": "How Treasuries and ETFs Work",
"extra_fields": "{\"text_type\":\"headline\",\"time_precision\":\"minute\",\"tz_hint\":\"America/New_York\",\"dataset_source\":\"kaggle:miguelaenlle/massive-stock-news-analysis-db-for-nlpbacktests\",\"dataset\":\"benzinga_6000stocks\",\"source\":\"Benzinga\",\"raw_type\":\"analyst_ratings_processed\",\"stocks\":[\"NAV\"]}"
}
Saved sample to samples\benzinga_6000stocks_sample.jsonl
.
bloomberg_reuters
{
"date": "2006-10-20T20:16:16Z",
"text": "-- Inco's Net Soars on Higher Metal Prices, Breakup Fee\n\nInco Ltd., the Canadian nickel producer\nbeing bought by Brazil 's Cia. Vale do Rio, said third-quarter\nprofit soared 11-fold, boosted by surging metal prices and fees\npaid by Falconbridge Ltd. after a failed takeover. \n Net income jumped to $701 million, or $3.08 a share, from $64\nmillion, or 29 cents, a year earlier, Toronto-based Inco said today\nin a statement. Results included $109 million in net fees from the\nfailed deals with Falconbridge and Phelps Dodge Corp. Sales jumped\nto $2.32 billion from $1.08 billion. \n Inco sold nickel at double the price last year on average, and\noutput jumped 13 percent. Demand for the metal, used in stainless\nsteel, surged as global economic growth fueled demand, especially\nin China . Mines have failed to keep pace, prompting a buying spree\nby producers seeking to bolster ore deposits. Vale outbid Phelps\nDodge and Teck Cominco Ltd. with its $17.3 billion bid. \n ``Record quarterly earnings reflect the unprecedented\nsustained strength we've seen in the nickel market, combined with\nstrong production,'' Inco Chief Executive Officer Scott Hand said\nin the statement. \n Shares of Inco gained 27 cents to C$85.85 at 4:10 p.m. on the\nToronto Stock Exchange. They have gained 80 percent in the past\nyear. Rio de Janeiro-based Vale, the world's largest iron-ore\nproducer, has offered C$86 a share for Inco. \n Breakup Fees \n Inco got $450 million from Falconbridge as a fee for their\nfailed merger, and made payments when deals failed with Phelps\nDodge and LionOre Mining International Ltd. A strike by workers at\nVoisey's Bay in September led to a $24 million charge in the third\nquarter, Inco said. \n Phelps Dodge, the world's third-biggest copper producer, in\nSeptember dropped its offer of cash and stock for Inco, whose\nshareholders supported an unsolicited cash bid from Vale. \n Inco's nickel production climbed to 125 million pounds in the\nquarter as prices jumped on average to $29,552 a metric ton. The\ncompany had cut its output forecast from as much as 140 million\npounds because of strikes and equipment failures. Cash costs for\nnickel sales fell 30 percent to $2.12 a pound, Inco said. \n Inco is the world's second-biggest nickel producer by 2005\noutput behind Russia 's OAO GMK Norilsk Nickel. \n Copper output rose 1.7 percent to 27,669 metric tons and\nprices jumped 90 percent on average to $7,465 a ton. \n Nickel today reached the highest since at least 1987 as\nsupplies lag behind demand. Inventories monitored by the London\nMetal Exchange plunged 86 percent this year. Mine output fell short\nof demand by 70,000 metric tons in the eight months ended August,\nthe World Bureau of Metal Statistics said. \n LME Nickel \n Nickel for delivery in three months gained $375, or 1.2\npercent, to $32,050 on the LME after reaching $32,625, the highest\nin at least 19 years. \n Extended repairs at operations in Indonesia and reduced output\nat a smelter in Sudbury, Ontario, forced Inco to cut its original\nproduction forecast for the quarter on Sept. 20. \n Inco has restored full production at Sudbury and a unit in\nManitoba has returned to ``stable operations'' after a damaged\nfurnace hurt output, Inco said. The company had said Sept. 21 it\nexpected to return to full production at Manitoba by early October. \n Inco declined to provide a forecast on earnings or production\nbefore the expiration of the CVRD offer on Oct. 23. \n Inco said it is ``continuing to review'' the cost and schedule\nfor the $2.15 billion Goro nickel project in New Caledonia that's\nbeen slowed by a general strike in the country. Inco expects to\nannounce a ``revised cost estimate'' and schedule by the end of the\nyear. \n ``There is a global shortage of skilled workers, which is felt\neven more acutely in New Caledonia with its population of 230,000\npeople,'' said Jeff Zweig, deputy general manager at Goro, in an e-\nmail on Oct. 16 ``To execute a project of this size and complexity,\na significant number of skilled workers are required.'' \n To contact the reporter on this story:\nDale Crofts in Chicago at \n dcrofts@bloomberg.net . \n To contact the editor responsible for this story:\nSteve Stroth at \n sstroth@bloomberg.net",
"extra_fields": "{\"author\":\"Dale Crofts\",\"url\":\"http://www.bloomberg.com/news/2006-10-20/inco-s-net-soars-on-higher-metal-prices-breakup-fee-update4-.html\",\"text_type\":\"full_article\",\"time_precision\":\"minute\",\"dataset_source\":\"private:bloomberg_reuters\",\"dataset\":\"bloomberg_2006_2013\",\"source\":\"Bloomberg\",\"raw_type\":\"20061020_20131126_bloomberg_news\",\"tz_hint\":\"UTC\"}"
}
Saved sample to samples\bloomberg_reuters_sample.jsonl
.
sentarl_combined
{
"date": "1997-01-03T14:39:00Z",
"text": "U.S. stocks start the year on an upbeat note\n\nNEW YORK (MarketWatch) -- U.S. stocks rallied straight out of the gates on Wednesday, the first trading session of 2007, with the Dow Jones Industrial Average boosted by better-than-expected holiday sales at Wal-Mart Stores Inc. and news of a management shakeup at Home Depot Inc . The Dow was up 56 points at 12,520. The S&P 500 index gained 5 points to 1,423 and the Nasdaq Composite rose 19 points at 2,435. Home Depot gained 2.7% after news that its embattled chief executive, Robert Nardelli, resigned. Wal-Mart rose 2.9% after its December same store sales came ahead of expectations.",
"extra_fields": "{\"stocks\":[\"$INDU\",\"$SPX\",\"COMP\",\"HD\",\"WMT\"],\"text_type\":\"headline+subhead+abstract\",\"time_precision\":\"minute\",\"dataset_source\":\"private:sentarl\",\"dataset\":\"sentarl_20assets\",\"source\":\"SentARL\",\"raw_type\":\"used_icaif_2021_csv\",\"tz_hint\":\"America/New_York\"}"
}
Saved sample to samples\sentarl_combined_sample.jsonl
.
fnspid_news
{
"date": "2020-06-05T06:30:54Z",
"text": "Stocks That Hit 52-Week Highs On Friday",
"extra_fields": "{\"stocks\": [\"A\"], \"publisher\": \"Benzinga Insights\", \"author\": \"\", \"url\": \"https://www.benzinga.com/news/20/06/16190091/stocks-that-hit-52-week-highs-on-friday\", \"text_type\": \"headline+article\", \"time_precision\": \"minute\", \"dataset_source\": \"hf:Zihan1004/FNSPID\", \"dataset\": \"fnspid_news\", \"raw_type\": \"fnspid_news_csv\", \"tz_hint\": \"America/New_York\"}"
}
Saved sample to samples\fnspid_news_sample.jsonl
.
mind_news_2019
{
"date": "2019-11-09T00:00:00Z",
"text": "2 shot on Grambling State University campus\n\nAuthorities say two people were shot, including a police officer, on Grambling State University's campus early Friday. According to a post on the university's website, the shooting happened around 1:30 a.m. at the Frederick C. Hobdy Assembly Center on campus. Louisiana State Police is investigating and say there is no threat to the public. CBS News affiliate KSLA in Shreveport reports that there was a party at the assembly center when shots were...",
"extra_fields": "{\"category\":\"news\",\"subcategory\":\"newsworld\",\"date_raw\":\"2019-11-09\",\"date_trading\":\"2019-11-11T14:30:00Z\",\"url\":\"https://assets.msn.com/labs/mind/AAIYPhD.html\",\"text_type\":\"title+abstract\",\"dataset_source\":\"web:msnews.microsoft.com\",\"time_precision\":\"day\",\"anchor_policy\":\"date_midnight_utc + next_open_in_date_trading\",\"dataset\":\"mind_news_2019\",\"source\":\"MSN\",\"raw_type\":\"MIND_news_tsv\",\"tz_hint\":\"UTC\"}"
}
Saved sample to samples\mind_news_2019_sample.jsonl
.
gold_news_kaggle
{
"date": "2000-02-15T00:00:00Z",
"text": "gold is poised for greatness",
"extra_fields": "{\"date_raw\":\"15-02-2000\",\"date_trading\":\"2000-02-16T14:30:00Z\",\"url\":\"http://www.marketwatch.com/story/thom-calandras-stockwatch-gold-is-poised-for-greatness-2000-02-15\",\"text_type\":\"headline\",\"dataset_source\":\"kaggle:ankurzing/sentiment-analysis-in-commodity-market-gold\",\"time_precision\":\"day\",\"anchor_policy\":\"date_midnight_utc + next_open_in_date_trading\",\"dataset\":\"gold_news_kaggle\",\"raw_type\":\"kaggle_gold_news_csv\",\"tz_hint\":\"UTC\"}"
}
Saved sample to samples\gold_news_kaggle_sample.jsonl
.
huffpost_news
{
"date": "2012-01-28T00:00:00Z",
"text": "Dwight Howard Rips Teammates After Magic Loss To Hornets\n\nThe five-time all-star center tore into his teammates Friday night after Orlando committed 23 turnovers en route to losing",
"extra_fields": "{\"category\":\"SPORTS\",\"authors\":\"\",\"date_raw\":\"2012-01-28\",\"date_trading\":\"2012-01-30T14:30:00Z\",\"url\":\"https://www.huffingtonpost.com/entry/dwight-howard-rips-teammates-magic-hornets_us_5bb69b24e4b097869fd1b331\",\"text_type\":\"headline+summary\",\"dataset_source\":\"kaggle:rmisra/news-category-dataset\",\"time_precision\":\"day\",\"anchor_policy\":\"date_midnight_utc + next_open_in_date_trading\",\"dataset\":\"huffpost_news_categories\",\"source\":\"HuffPost\",\"raw_type\":\"huffpost_jsonl\",\"tz_hint\":\"UTC\"}"
}
Saved sample to samples\huffpost_news_sample.jsonl
.
sp500_daily_headlines
{
"date": "2008-01-02T00:00:00Z",
"text": "JPMorgan Predicts 2008 Will Be \"Nothing But Net\"",
"extra_fields": "{\"date_raw\":\"2008-01-02\",\"date_trading\":\"2008-01-03T14:30:00Z\",\"text_type\":\"headline\",\"dataset_source\":\"kaggle:dyutidasmahaptra/s-and-p-500-with-financial-news-headlines-20082024\",\"time_precision\":\"day\",\"anchor_policy\":\"date_midnight_utc + next_open_in_date_trading\",\"dataset\":\"sp500_daily_headlines\",\"source\":\"market_recaps\",\"raw_type\":\"sp500_headlines_csv\",\"tz_hint\":\"UTC\"}"
}
Saved sample to samples\sp500_daily_headlines_sample.jsonl
.
reddit_worldnews_2008_2016
{
"date": "2008-06-08T00:00:00Z",
"text": "b'Marriage, they said, was reduced to the status of a commercial transaction in which women could be discarded by husbands claiming to have discovered hidden defects in them.'",
"extra_fields": "{\"date_raw\":\"2008-06-08\",\"date_trading\":\"2008-06-09T13:30:00Z\",\"text_type\":\"headline\",\"dataset_source\":\"kaggle:tanishqdublish/stock-market-predictions\",\"time_precision\":\"day\",\"anchor_policy\":\"date_midnight_utc + next_open_in_date_trading\",\"dataset\":\"reddit_worldnews_2008_2016\",\"source\":\"Reddit (r/worldnews)\",\"raw_type\":\"RedditNews_csv\",\"tz_hint\":\"UTC\"}"
}
Saved sample to samples\reddit_worldnews_2008_2016_sample.jsonl
.
djia_stock_headlines
{
"date": "2000-01-03T00:00:00Z",
"text": "A 'hindrance to operations': extracts from the leaked reports",
"extra_fields": "{\"top_index\":\"top1\",\"date_raw\":\"2000-01-03\",\"date_trading\":\"2000-01-04T14:30:00Z\",\"text_type\":\"headline\",\"dataset_source\":\"kaggle:lykin22/stock-headlines\",\"time_precision\":\"day\",\"anchor_policy\":\"date_midnight_utc + next_open_in_date_trading\",\"dataset\":\"djia_stock_headlines\",\"source\":\"DJIA_daily_headlines\",\"raw_type\":\"djia_stock_headlines_csv\",\"tz_hint\":\"UTC\"}"
}
Saved sample to samples\djia_stock_headlines_sample.jsonl
.
wikinews_articles
{
"date": "2002-04-01T00:00:00Z",
"text": "Department of Defense report lambasts communication failure in US War on Terror\n\nA U.S. Department of Defense\nadvisory committee has released a report harshly criticizing the U.S.-led \"War\non Terror\". The report details communication failures with the Muslim\nworld, and notes that current efforts may have achieved the opposite\nof their intended effect.\n\nThe report released without publicity the Wednesday before Thanksgiving by Defense Science Board, focuses on a failure of communication, which the Defense Science Board considers vital to the war on terror. It asserts this failure of \"strategic communication\" contributes to a perceived \"negative image in world opinion and diminished ability to persuade\" of the United States, and that a resulting atmosphere of hostility can manifest in numerous ways.\n\nThe list of harmful effects includes \"terrorism, thin coalitions, harmful effects on business, restrictions\non travel, declines in cross border tourism and education flows, and\ndamaging consequences for other elements of U.S. soft power\".\n\nAccording to the report, \"The information campaign ... is an essential objective, because the larger goals of U.S. strategy depend on separating the vast majority of non-violent Muslims from the radical-militant Islamist-Jihadists. But American efforts have not only failed in this respect: they may also have achieved the opposite of what they intended.\"\n\nBy way of example, the report quotes figures from a June 2004 Zogby poll, claiming to show a significant drop in Arab support for the U.S. in the past couple years. Statistical results are reproduced below.\n\nThe report further claims, \"American direct intervention in the Muslim World has paradoxically elevated the stature of and support for radical Islamists.\" As summarised in a Christian Science Monitor headline, 'They hate our policies, not our freedom'.\n\nSo why has support for the U.S. dropped? -- to single digits in some Arab nations. President Bush and others have famously claimed that America is hated for its freedom. But the Defense Science Board concluded that most Arabs \"do not hate us for our values, but because of our policies.\" From the same Zogby study:\n\nThis study explains that while support for American values may not be overwhelming, it is practically non-existent for America's policies in the Middle East.\n\n\"The overwhelming majority voice their objections to what they see as one-sided support in favor of Israel and against Palestinian rights, and the longstanding, even increasing support for what Muslims collectively see as tyrannies, most notably Egypt, Saudi Arabia, Jordan, Pakistan, and the Gulf states. Thus when American public diplomacy talks about bringing democracy to Islamic societies, this is seen as no more than self-serving hypocrisy.\"\n\nIn the eyes of Muslims, according to this report, America is really only looking out for its own interests.\n\nIt concludes from this that the fundamental problem with relations with the Muslim world is not a simple matter of crafting the right message. \"Rather, it is a fundamental problem of credibility. Simply, there is none.\"",
"extra_fields": "{\"categories_norm\":[\"middle east\",\"lebanon\",\"north america\",\"religion\",\"united arab emirates\",\"united states\",\"saudi arabia\",\"islam\",\"jordan\",\"tourism\",\"us war on terror\",\"morocco\",\"egypt\",\"africa\"],\"date_raw\":\"2002-04-01\",\"date_trading\":\"2002-04-02T14:30:00Z\",\"text_type\":\"title+article\",\"dataset_source\":\"kaggle:datagator/wikinews-article-dataset\",\"time_precision\":\"day\",\"anchor_policy\":\"date_midnight_utc + next_open_in_date_trading\",\"dataset\":\"wikinews_articles\",\"source\":\"Wikinews\",\"raw_type\":\"wikinews_json\",\"tz_hint\":\"UTC\"}"
}
Saved sample to samples\wikinews_articles_sample.jsonl
.
headlines_10sites_2007_2022
{
"date": "2007-01-01T00:00:00Z",
"text": "Rush to Hang Hussein Was Questioned",
"extra_fields": "{\"publication\": \"New York Times\", \"date_raw\": \"2007-01-01\", \"date_trading\": \"2007-01-03T14:30:00Z\", \"url\": \"http://www.nytimes.com/2007/01/01/world/middleeast/01iraq.html?hp&ex=1167714000&en=85dae91ed8178e3a&ei=5094&partner=homepage\", \"text_type\": \"headline\", \"dataset_source\": \"kaggle:jordankrishnayah/45m-headlines-from-2007-2022-10-largest-sites\", \"time_precision\": \"day\", \"anchor_policy\": \"date_midnight_utc + next_open_in_date_trading\", \"dataset\": \"headlines_10sites_2007_2022\", \"raw_type\": \"10sites_headlines_csv\", \"tz_hint\": \"UTC\"}"
}
Saved sample to samples\headlines_10sites_2007_2022_sample.jsonl
.
nyt_headlines_1990_2020
{
"date": "1990-01-01T05:00:00Z",
"text": "Bridge",
"extra_fields": "{\"news_desk\":\"Metropolitan Desk\",\"url\":\"https://www.nytimes.com/1990/01/01/nyregion/bridge-173390.html\",\"text_type\":\"headline\",\"time_precision\":\"minute\",\"dataset_source\":\"kaggle:johnbandy/new-york-times-headlines\",\"dataset\":\"nyt_headlines_1990_2020\",\"source\":\"New York Times\",\"raw_type\":\"nyt_csv\",\"tz_hint\":\"UTC\"}"
}
Saved sample to samples\nyt_headlines_1990_2020_sample.jsonl
.
nyt_headlines_2010_2021
{
"date": "2007-07-07T14:46:20Z",
"text": "It was a long antipodean night. While there’s no telling what’s a reflection of national taste and what’s the result of booking expediency, each of the concerts from Australia, Japan and China certainly had its own character.\n\nLive Earth: Earnest Crooners and a “Supersonic Speed Machine” in Australia, China and Japan\n\nIt was a long antipodean night. While there’s no telling what’s a reflection of national taste and what’s the result of booking expediency, each of the concerts from Australia, Japan and China certainly had its own character.",
"extra_fields": "{\"news_desk\":\"Culture\",\"section\":null,\"section_name\":\"Arts\",\"byline\":null,\"url\":null,\"text_type\":\"abstract+headline+lead\",\"time_precision\":\"minute\",\"dataset_source\":\"kaggle:tmishinev/nyt-headlines-20102021\",\"dataset\":\"nyt_headlines_2010_2021\",\"source\":\"New York Times\",\"raw_type\":\"nyt_2010_2021_csv\",\"tz_hint\":\"UTC\"}"
}
Saved sample to samples\nyt_headlines_2010_2021_sample.jsonl
.
cnbc_headlines
{
"date": "2006-11-30T14:25:19Z",
"text": "Word On The Street: The Day Ahead\n\nTime for our look at the day ahead--with \"Word on the Street.\" On this morning's \"Squawk On The Street\" --CNBC’s Mark Haines spoke with Peter Costa-Senior Managing Director at Lipari Partners. Costa says he's going to develop his own theory--\"Costa's Theory of Economic Confusion\" -- from this week's information. He says it's kind of hard to figure out what direction the market will move today.He added that he's been a bull all year and he expects markets to go higher for the rest of the 2006.",
"extra_fields": "{\"author\":\"Lee Brodie\",\"publisher\":\"CNBC\",\"category\":\"CNBC TV\",\"url\":\"https://www.cnbc.com/2006/11/30/word-on-the-street-the-day-ahead.html\",\"text_type\":\"headline+abstract\",\"time_precision\":\"minute\",\"dataset_source\":\"kaggle:crawlfeeds/cnbc-news-headlines-dataset\",\"dataset\":\"cnbc_headlines_2017_2020\",\"source\":\"CNBC\",\"raw_type\":\"cnbc_csv\",\"tz_hint\":\"America/New_York\"}"
}
Saved sample to samples\cnbc_headlines_sample.jsonl
.
american_news_jonasbecker
{
"date": "2016-02-05T21:51:32Z",
"text": "Higher Education Jobs | Guardian Jobs\n\nSkip to job results Skip to refine results Did you mean ? Find the latest higher education jobs to view and apply for now with Guardian Jobs. To have a job in higher education sent to you the day it's posted, be sure to sign up for email alerts. Visit our higher education section to discover more jobs within the education sector. PortsmouthUnspecifiedUNIVERSITY OF PORTSMOUTH We are seeking a Professor in Marketing and Sales with an appetite for research leadership. View details New Top job Stellenbosch, South AfricaUnspecifiedSTELLENBOSCH UNIVERSITY Enhance and exchange knowledge, skills and expertise in a collaborative manner between the University and society. View details Top job HullNHS Agenda for Change scales UNIVERSITY OF HULL We are seeking a flexible, dynamic and experienced clinical psychologist with a strong interest in the academic side of clinical psychology training. View details New HullNHS Agenda for Change scalesUNIVERSITY OF HULL Looking for a part-time qualified cognitive behavioural therapist to teach & supervise on our Post-graduate Cognitive Behavioural Therapy (CBT) Course View details New London (Central), London (Greater)circa £23,000 per annumBRITISH ACADEMY The British Academy - the UK's national Academy for the humanities and social sciences - is seeking an Assistant Press & Communications Officer. View details New London£40000 per annumLONDON BUSINESS SCHOOL Supply Contract Manager£40k FTCAt London Business School we all share the vision of having a profound impact on the way the world does business, in... View details New Hammersmith, London W6Up to £42k + pension + benefitsINSTITUTE OF FOOD SCIENCE AND TECHNOLOGY This is an important senior management position with a wide remit within an exciting and rapidly developing professional organisation. View details New London College of Communication £27,499 - £33,569 per annumUNIVERSITY OF THE ARTS LONDON IT Support Analyst x2 Permanent, full-time £27,499 - £33,569 per annum College/Service: Strategic Development Location: London College of Communica... View details New Cambridge, CambridgeshireCompetitiveCAMBRIDGE ASSESSMENT We are rapidly expanding and actively adopting new technologies to meet challenging deadlines demanded by our global delivery programmes. View details New SE11 4BU, London (Greater)c£29,300 per annumTHE HEALTH AND CARE PROFESSIONS COUNCIL We are currently recruiting for an Education Officer to join the Education department. This is a replacement role and will carry out case work asso... View details New PortsmouthUnspecifiedUNIVERSITY OF PORTSMOUTH We are seeking a Professor in Law with an appetite for research leadership. View details New PortsmouthUnspecifiedUNIVERSITY OF PORTSMOUTH We are seeking a Professor in Marketing and Sales with an appetite for research leadership. View details New PortsmouthUnspecifiedUNIVERSITY OF PORTSMOUTH We are seeking a Professor in Small Business and Enterprise Development with an appetite for research leadership. View details New PortsmouthUnspecifiedUNIVERSITY OF PORTSMOUTH We are seeking a Professor in Accounting and Financial Management with an appetite for research leadership. View details New Rotherham£30000 - £37889 per annumONLY FE Teaching, Learning & Assessment Manager: College Delivery£37,889 per annum View details New LondonTBCOPEN SOCIETY FOUNDATION We are recruiting for 3 Program Officers to focus on our work in Africa, MENA and on Higher Education Policy. View details New Coventry, West Midlands£31,662 to £38,904 per annum COVENTRY UNIVERSITY You'll assist in developing a world class research presence that generates impact across many sectors, especially aerospace and automotive. View details New Bradford, West Yorkshire£49,230 - £55,389UNIVERSITY OF BRADFORD The Division of Social Work and Social Care is seeking to appoint an experienced academic with a background in Social Work practice. View details New Hatfield, HertfordshireUH7 £31,656 to £37,768 per annum depending on skills and experienceUNIVERSITY OF HERTFORDSHIRE We are seeking to appoint an academic member of staff to support the new BA degree in Politics & International Relations in the School of Law. View details New Houghton St, LondonSalary from £24,491 to £27,528 pa inclusive with potential to progress to £29,616 pa inclusiveLONDON SCHOOL OF ECONOMICS AND POLITICAL SCIENCE The Alumni Relations Assistant plays a key role in supporting the School's alumni engagement programme. View details New London£22k - £30k per annum + sales related bonus.DUKES EDUCATION You'll be the first port of call for clients, guiding them through the education process and advising them on the products and services we offer. View details New LondonAvailable on requestATWOOD TATE A leading Music Publisher is looking for a Commissioning Editor to join their offices in central London. This is a great opportunity for an experie... View details New Did you mean ? Subscribe Back to top Advertise a job 2013 - 2016 Guardian News and Media Limited, all rights reserved. Powered by Madgex Job Board Software",
"extra_fields": "{\"authors\":\"\",\"source_domain\":\"jobs.theguardian.com\",\"url\":\"https://jobs.theguardian.com/jobs/higher-education/\",\"text_type\":\"title+article\",\"time_precision\":\"minute\",\"dataset_source\":\"kaggle:jonasbecker98/news-website-articles\",\"dataset\":\"american_news_jonasbecker\",\"source\":\"US news (multi-outlet)\",\"raw_type\":\"jonasbecker_json\",\"tz_hint\":\"America/New_York\"}"
}
Saved sample to samples\american_news_jonasbecker_sample.jsonl
.
us_financial_news_2018_jeet
{
"date": "2017-12-07T04:58:00Z",
"text": "This entrepreneur is ringing up sales restoring vintage telephones - MarketWatch\n\nPublished: Dec 7, 2017 4:58 a.m. ET Share \nCollectors and Hollywood buyers are snapping them up OldPhoneWorks.com This chrome-plated Western Electric 302 model from the 1930s sells for $449.95 at Old Phone Works. \nBy Bonnie Miller Rubin \nWhen Don Woodbury opened a cellphone store in 2001, he included a few old phones as part of the décor, reflecting the historic district where the business was located. \nSoon customers were asking to purchase the vintage models. “They’d just come up to me and say, ‘I want one of those.’ It didn’t take me long to realize that there was a good internet market for this stuff,” Woodbury says. \nSome 16 years later, Oldphoneworks.com , based in Kingston, Ontario, has grown to become one of the biggest sellers of antique phones, whether it’s the “candlestick” style familiar from old films and TV shows or the clunky desk models that were fixtures at grandma’s house. \nWoodbury’s base is a small but loyal group of collectors with a taste for nostalgia, along with a handful of people looking to buy old models in bulk, such as movie producers trying to conjure up the past and hotel moguls looking to add a touch of uniqueness to rooms. \n“It’s kind of amazing that we’ve been able to create a viable business from repurposing and redeploying obsolete technology that would otherwise end up in the trash,” says the 59-year-old Woodbury, who sold his 50-store cellphone chain in 2013. \nMany small companies have done very well by selling niche products that have long since been put out to pasture, whether it’s vinyl records, typewriters or anything else that captures people’s fancy. \nAlso read: Old technology that’s worth bringing back—and not for the nostalgia \nFor some entrepreneurs, vintage sales are a sideline. Dr. Jonathan Finder started Oldphones.com 16 years ago when he was a young physician, and the second income helped him pay off student loans. \nNow his job as a pediatric lung specialist keeps him from putting in the time to acquire new customers. And a downturn in landline sales has hurt business. \nBut he keeps at it, in no small part because he’s an unabashed fan of the craftsmanship and history of his merchandise. “How many electromechanical objects that are 50 to 70 years old do exactly what they did when they were first made?” Finder says. “The phones of the ’30s and ’40s outclass anything on the market today.” A new calling \nFor other entrepreneurs, like Woodbury, retro devices are their sole focus. The market for these phones would seem pretty small to build a business on. Two groups—the Antique Telephone Collectors Association and Telephone Collectors International—have only 1,125 members total. \nDon’t miss: This is the vintage technology some companies are using to store your data \nYet buyers have been eager enough not only to keep Woodbury’s operation afloat but allow it to thrive, even enough to support a four-person staff. Revenue, he says, can hit 50,000 Canadian dollars (roughly US$39,000) in a good month, and though he doesn’t track long-term growth, he says that sales have shown a consistent year-to-year increase since the beginning. \nWhen original equipment is unavailable, the company uses reproduction parts—such as cloth-covered cords—manufactured in its own workshop. Additionally, Oldphoneworks.com has the capability to repair and refurbish models that aren’t in its inventory, a service that accounts for about 10% of the company’s revenue. \nWoodbury’s customers are both “repeat buyers; people who are going through their collection and want to upgrade, so they’ll come to us to order the one part they need,” he says, and “a lot of one-offs, where someone Googles us because they need parts.” \nTypically, Woodbury gets his inventory from individuals or estates looking to liquidate their collections. His average telephone sale is $250, a healthy return on his average investment of $50, not counting the cost of labor for refurbishing. Prices usually range from $100 to as much as $8,000 for a rare model, such as the 1905 Strowger Candlestick, the first commercially available dial telephone. \n(A Kansas City undertaker, Almon Strowger, believed that the only local operator was steering business calls to his competitor, who also happened to be her husband. So he invented dial service, bypassing operator intervention.) OldPhoneWorks.com Hello! This Strowger Candlestick dial phone goes for $7,999. \n“A phone like that may sit there for five years, but eventually someone will buy it,” Woodbury says. “If people really want something, they’re willing to pay for it. You just have to be patient.” \nTo build consumer trust, he offers a one-year, repair-or-replace warranty—which gives him an edge over garage sales and flea markets, where the mantra is “Let the buyer beware.” He also says he can offer items in bulk, which is difficult for other dealers. A trunk line \nThe company doesn’t do much marketing. Mostly it involves making sure customers can find 20th-century technology using 21st-century methods. General manager Matt Jennings, 31, makes updating social media a top priority, trying to land the company at the top of Google rankings in their category. \nWhen he answered a help-wanted ad two years ago, he didn’t know a spit-cup receiver from an F1 handset. “I thought I’d be repairing cellphones. I certainly didn’t think this would be much of a market,” he says. “After my first day, I realized I was wrong.” \nBeth Howe, like many buyers, found her way to Oldphoneworks by googling. She isn’t a collector, but lusted after a Western Electric 500—the phone of her childhood—for her Topanga, Calif., home. \n“I have fond memories of avocado-green kitchen appliances,” Ms. Howe says. “Maybe it’s just reaching adulthood that has made me nostalgic for the late ’60s, early ’70s design sensibility.” \nAn online search brought her to the site, and she fell hard for a dark red Western Electric 302 instead. Last produced in 1954, the phone’s sleek lines and distinctive chime made the model a staple of Hollywood’s Golden Age. \n“I thought, what fun to have a phone, not from my own childhood era, but from that classic period,” says Ms. Howe, a visual-effects production supervisor, who worked on the recently released film “Blade Runner 2049.” \n“I was especially enamored of the matching textile cord…and the clickety, clickety, clack of the dialing mechanism and the ringer, which is as good as a time machine to transport me back,” she says. \nYou might like: How to value the stuff you inherited A starring role \nOther regular clients are the TV and movie industries, which account for 15% of the firm’s revenue. \n“It’s just been building on its own,” Woodbury says. Recently, he says, “we got calls from two different production companies on the same day asking us to rush phones that they need on the set.” \nJess Royal, set decorator for the Netflix NFLX, -0.39% series “Stranger Things,” calls the company her “go-to source.” \n“It’s super hard to find a whole bunch of phones in working condition, such as ones that all light up for a police station scene,” she says. “They’ve been great for us.” \nAlso read: 5 strange things about ‘Stranger Things’ season 2 \nWhen a certain style Woodbury has supplied appears on the screen, his staff will see an immediate blip in sales. \n“We won’t sell any red pay phones for ages, then, all of a sudden, we’ll sell four in a day,” he says. \nA big order came in recently from",
"extra_fields": "{\"source_norm\":\"www.wsj.com\",\"author\":\"Bonnie Miller Rubin\",\"url\":\"https://www.wsj.com/articles/an-entrepreneur-builds-a-business-selling-old-phones-1511752141\",\"text_type\":\"headline+article\",\"time_precision\":\"minute\",\"dataset_source\":\"kaggle:jeet2016/us-financial-news-articles\",\"dataset\":\"us_financial_news_2018_jeet\",\"source\":\"U.S. Financial News (multi-outlet)\",\"raw_type\":\"jeet_json\",\"tz_hint\":\"UTC\"}"
}
Saved sample to samples\us_financial_news_2018_jeet_sample.jsonl
.
nyt_articles_2000_present
{
"date": "2000-01-01T05:00:00Z",
"text": "Playoffs or No, Dallas Provides The Motivation\n\nArticle on upcoming New York Giants-Dallas Cowboys game; photo (M)",
"extra_fields": "{\"byline_norm\":\"By Bill Pennington\",\"keywords_norm\":[\"New York Giants\",\"Dallas Cowboys\",\"Football\"],\"source_norm\":\"The New York Times\",\"web_url\":\"https://www.nytimes.com/2000/01/01/sports/pro-football-playoffs-or-no-dallas-provides-the-motivation.html\",\"text_type\":\"headline+abstract_or_snippet_or_lead\",\"time_precision\":\"minute\",\"dataset_source\":\"kaggle:aryansingh0909/nyt-articles-21m-2000-present\",\"dataset\":\"nyt_articles_2000_present\",\"source\":\"New York Times\",\"raw_type\":\"nyt_metadata_csv\",\"tz_hint\":\"UTC\"}"
}
Saved sample to samples\nyt_articles_2000_present_sample.jsonl
.
finsen_us_2007_2023
{
"date": "2007-06-04T00:00:00Z",
"text": "Blackstone boosts IPO after Beijing takes $3bn stake\n\nBlackstone boosts IPO after Beijing takes $3bn stakeUnited States NewsThe Chinese government is to use $3bn of its vast foreign exchange reserves to buy a 9.9% stake in Blackstone, as the US buy-out fund said it had increased the size of its IPO to up to $4.75bn.2007-06-04T13:02:14.917",
"extra_fields": "{\"category\":\"Other\",\"date_raw\":\"4/06/2007\",\"date_trading\":\"2007-06-05T13:30:00Z\",\"text_type\":\"title+article\",\"dataset_source\":\"kaggle:eaglewhl/finsen-financial-sentiment-dataset\",\"tz_hint\":\"America/New_York\",\"time_precision\":\"day\",\"anchor_policy\":\"date_midnight_utc + next_open_in_date_trading\",\"dataset\":\"finsen_us_2007_2023\",\"source\":\"FinSen (US subset)\",\"raw_type\":\"finsen_us_csv\"}"
}
Saved sample to samples\finsen_us_2007_2023_sample.jsonl
.
yahoo_finance_felixdrinkall
{
"date": "2017-01-03T00:00:00Z",
"text": "Meet the world’s friendliest home robot\n\nKuri, developed by Mayfield Robotics, is not only a home assistant — it was designed to be a companion as well. Kuri responds to your voice, much as Amazon Echo or Google Home do, and it’s able to carry out various tasks, including a nightly security patrol. Kuri can also monitor your home when you",
"extra_fields": "{\"source_domain\":\"finance.yahoo.com\",\"news_outlet\":\"finance.yahoo.com\",\"authors\":[],\"mentioned_companies\":[\"GOOGL\",\"AMZN\",\"AAPL\",\"NFLX\"],\"related_companies\":[\"IGLD\",\"TDC\",\"IAIC\",\"CTXS\",\"EPAY\",\"OTEX\",\"CRAY\",\"TCX\",\"SMCI\",\"YHOO\",\"WBMD\",\"HMI\",\"DTLK\",\"HPQ\",\"ADSK\",\"MGIC\",\"MSFT\",\"TISA\",\"OMCL\",\"ANSS\",\"TTWO\",\"FB\",\"ZEPP\",\"AABA\",\"SNPS\",\"NAN\",\"BIDU\",\"RAMP\",\"NTCT\",\"ATVI\",\"IIJI\",\"CHKP\",\"WAVD\",\"CTSH\",\"MANH\",\"SYNT\",\"GIGM\",\"TWTR\",\"NSR\",\"ACXM\",\"SCKT\",\"ULTI\",\"PRFT\",\"COR\",\"PINS\",\"GOOG\",\"META\",\"SIFY\",\"CTSO\",\"IBM\",\"FORTY\",\"INTU\",\"AWRE\"],\"industries\":[\"7841\",\"7370\",\"3571\",\"7375\"],\"named_entities\":[],\"url\":\"http://finance.yahoo.com/news/meet-the-worlds-friendliest-home-robot-225232872.html\",\"text_type\":\"title+description_or_maintext\",\"time_precision\":\"minute\",\"dataset_source\":\"github:felixdrinkall/financial-news-dataset\",\"dataset\":\"yahoo_finance_felixdrinkall_2017_2023\",\"source\":\"Yahoo Finance\",\"raw_type\":\"felixdrinkall_json\",\"tz_hint\":\"America/New_York\",\"stocks\":[\"AAPL\",\"AMZN\",\"GOOGL\",\"NFLX\"]}"
}
Saved sample to samples\yahoo_finance_felixdrinkall_sample.jsonl
.
reddit_finance_sp500
{
"date": "2008-11-11T01:35:09Z",
"text": "The Fed makes American Express a bank - now they can cash in on the government bailout money!!",
"extra_fields": "{\"subreddit\":\"economy\",\"author\":\"weegee\",\"flair\":\"\",\"score\":78,\"num_comments\":7,\"upvote_ratio\":0.95,\"permalink\":\"/r/economy/comments/7ckuh/the_fed_makes_american_express_a_bank_now_they/\",\"domain\":\"money.cnn.com\",\"id\":\"7ckuh\",\"created_datetime\":\"2008-11-11 01:35:09\",\"text_type\":\"title+selftext\",\"time_precision\":\"minute\",\"dataset_source\":\"hf:emilpartow/reddit_finance_posts_sp500\",\"dataset\":\"reddit_finance_sp500\",\"source\":\"Reddit (finance subs)\",\"raw_type\":\"reddit_finance_csv\",\"tz_hint\":\"UTC\",\"stocks\":[\"AMERICAN_EXPRESS\"]}"
}
Saved sample to samples\reddit_finance_sp500_sample.jsonl
.
frontpage_news
{
"date": "2015-07-16T00:00:00Z",
"text": "FLOTUS teams up with rapper Wale\n\nWale will perform at a White House event on higher education.",
"extra_fields": "{\"outlet\":\"thehill.com\",\"new_article_id\":\"35ecc22d9ccc5f028849afe1a8826e48\",\"date_raw\":\"2015-07-16\",\"date_trading\":\"2015-07-17T13:30:00Z\",\"text_type\":\"title+description\",\"dataset_source\":\"hf:AndyReas/frontpage-news\",\"time_precision\":\"day\",\"anchor_policy\":\"date_midnight_utc + next_open_in_date_trading\",\"dataset\":\"frontpage_news\",\"source\":\"Frontpage (multi-outlet)\",\"raw_type\":\"frontpage_parquet\",\"tz_hint\":\"UTC\"}"
}
Saved sample to samples\frontpage_news_sample.jsonl
.
yahoo_finance_articles
{
"date": "2025-03-11T00:00:00Z",
"text": "Ainos, ASE to Use AI Nose Technology in Semiconductor Manufacturing\n\nAinos (AIMD) said Tuesday it's partnering with Advanced Semiconductor Engineering to \"revolutionize\"",
"extra_fields": "{\"publisher\":\"MT Newswires\",\"type\":\"STORY\",\"date_raw\":\"2025-03-11\",\"date_trading\":\"2025-03-12T13:30:00Z\",\"link\":\"https://finance.yahoo.com/news/ainos-ase-ai-nose-technology-151328212.html\",\"text_type\":\"title+paragraphs\",\"dataset_source\":\"hf:bwzheng2010/yahoo-finance-data\",\"time_precision\":\"day\",\"anchor_policy\":\"date_midnight_utc + next_open_in_date_trading\",\"dataset\":\"yahoo_finance_articles\",\"source\":\"Yahoo Finance\",\"raw_type\":\"yahoo_stock_news_parquet\",\"tz_hint\":\"UTC\",\"stocks\":[\"ASX\"]}"
}
Saved sample to samples\yahoo_finance_articles_sample.jsonl
.
all_the_news_2
{
"date": "2016-01-01T00:00:00Z",
"text": "New Ted Cruz Super PAC with $4M ad buy\n\n(CNN)A new super PAC supporting Ted Cruz is beginning a $4 million television advertising campaign on his behalf, the most ambitious effort yet to back him independently in the 2016 race. Stand for Truth, a group formed only six weeks ago, said Friday that it would begin $2 million TV campaigns in both Iowa and South Carolina in the coming weeks. The little-known group, which has not yet disclosed its donors, is independent of the umbrella network of super PACs, Keep the Promise, that have been blessed by the campaign. And Keep the Promise is largely unaware of the contributors and strategists behind the group, which lacks an immediate tie to the network of Cruz associates who have plotted the independent efforts to back him for over a year. Stand for Truth, however, does not appear to be a renegade organization: Keep the Promise was aware of Stand for Truth's advertising plans, even if the group is surfacing fairly late in the election calendar. Nevertheless, the outlay of $4 million is a significant pro-Cruz effort that will be more than any Keep the Promise group has spent so far on television. And it comes at a time when Cruz expects to be on the defensive, given his surge in Iowa that has invited attacks from nearly every other GOP hopeful in recent weeks. \"As one of the two frontrunners heading into the final weeks before voting begins, Senator Cruz is under attack from all directions and will be for the remainder of this election,\" Eric Lycan, an attorney for the group, said in a statement. \"Stand for Truth is here to make sure an accurate message reaches voters.\" Stand for Truth began with small advertising buys on digital and radio platforms, while not responding to requests for comment about how it fit into the larger pro-Cruz framework. The only known official associated with the group, Lycan, is only compounding suspicion of the group in some Cruz circles. A prominent GOP election attorney, Lycan was the counsel in 2014 for the reelection campaign for Mitch McConnell, a Cruz foe in the Senate. Early media buys have been executed by SRCP Media, a well-known Washington-based GOP advertising firm. The Keep the Promise network has been reluctant to spend much money on television, only announcing 24 hours earlier, on Thursday evening, that it planned to make its first major foray into TV with a $700,000 purchase on the Iowa airwaves. Given its uneasiness with a large investment in TV, some Cruz allies were elated that Stand for Truth might play the heavy in early pro-Cruz television buys. The $2.1 million buy in Iowa begins on Jan. 13 and the second $2.1 million in South Carolina begins on Jan. 27. Each runs through the election.",
"extra_fields": "{\"publication\":\"CNN\",\"author\":\"Theodore Schleifer\",\"url\":\"https://www.cnn.com/2016/01/01/politics/cruz-super-pac-stand-for-truth/index.html\",\"text_type\":\"headline+article\",\"time_precision\":\"minute\",\"dataset_source\":\"components.one:all-the-news-2 (via zip)\",\"dataset\":\"all_the_news_2\",\"source\":\"All the News (curation)\",\"raw_type\":\"all_the_news_csv\",\"tz_hint\":\"America/New_York\"}"
}
Saved sample to samples\all_the_news_2_sample.jsonl
.
How to load
This repo requires an account and to log in for use (
huggingface-cli login
; see source)
1) Install
pip install datasets
2) Load everything (streaming is recommended given the size of the data)
from datasets import load_dataset
# All shards across all subsets:
ds = load_dataset(
path="Brianferrell787/financial-news-multisource",
data_files="data/*/*.parquet",
split="train",
streaming=True
)
for i, row in enumerate(ds):
# row["extra_fields"] is a JSON string
if i == 3:
break
3) Load a single subset
from datasets import load_dataset
huff = load_dataset("Brianferrell787/financial-news-multisource",
data_files="data/huffpost_news/*.parquet",
split="train",
streaming=True)
4) Load multiple chosen subsets
files = [
"data/fnspid_news/*.parquet",
"data/bloomberg_reuters/*.parquet",
"data/cnbc_headlines/*.parquet",
]
ds = load_dataset("Brianferrell787/financial-news-multisource", data_files=files, split="train", streaming=True)
5) Parse extras
import json
sample = next(iter(ds))
extras = json.loads(sample["extra_fields"])
print(extras.get("url"), extras.get("publisher"), extras.get("date_trading"))
Tip: If you prefer non-streaming, omit
streaming=True
. Parquet enables columnar, memory-efficient reads even at scale.
Example: backtest-safe date handling
Day-level rows carry two timestamps:
date
(top-level): midnight UTC (YYYY-MM-DDT00:00:00Z
), used for coarse alignment/joins.extra_fields.date_trading
: NYSE next-session open in UTC (default). Use this for labeling or event-time alignment in backtesting.
def event_time_utc(row):
import json, datetime
extra = json.loads(row["extra_fields"])
return extra.get("date_trading") or row["date"]
You can switch to same-day anchoring if desired; I recorded the policy in extra_fields.backtest_rule
.
Loading cheatsheet
# ALL
load_dataset("Brianferrell787/financial-news-multisource", data_files="data/*/*.parquet", split="train", streaming=True)
# One subset
load_dataset("Brianferrell787/financial-news-multisource", data_files="data/fnspid_news/*.parquet", split="train")
# Two subsets
load_dataset("Brianferrell787/financial-news-multisource", data_files=["data/cnbc_headlines/*.parquet",
"data/huffpost_news/*.parquet"],
split="train")
# Pandas-style: take a slice quickly
ds = load_dataset("Brianferrell787/financial-news-multisource", data_files="data/nyt_headlines_2010_2021/*.parquet", split="train")
df = ds.shuffle(seed=42).take(1000) # or use .to_pandas() for small samples
Quick QA
Q: Why midnight UTC for day-only rows?
A: To avoid implying any exact intra-day minute and to keep merges stable across sources. Backtest with extra_fields.date_trading
.
Q: Are there splits?
A: No fixed train/val/test
. This is a document store. Use time-based splits or subset-based splits as needed.
Q: Can I stream only finance-focused sources?
A: Yes—pass specific data_files
globs to load_dataset
(see examples).
Q: What’s inside extra_fields
?
A: A compact JSON with everything not in date
/text
/dataset
, e.g.:
{
"url": "https://example.com/news/123",
"publisher": "Reuters",
"author": "Jane Doe",
"stocks": ["AAPL","MSFT"],
"category": "business",
"time_precision": "day",
"tz_hint": "UTC",
"date_raw": "2011-04-19",
"date_trading": "2011-04-20T13:30:00Z",
"anchor_policy": "date_midnight_utc + next_open_in_date_trading",
"dataset_source": "kaggle:some/source",
"dataset": "some_subset",
"source": "Some Publisher",
"raw_type": "source_specific_format"
}
- Downloads last month
- 645