Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,81 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-classification
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- ycombinator
|
| 9 |
+
- news
|
| 10 |
+
- press
|
| 11 |
+
- startup
|
| 12 |
+
- announcements
|
| 13 |
+
pretty_name: Y Combinator News Mentions
|
| 14 |
+
size_categories:
|
| 15 |
+
- n<1K
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# Y Combinator News Mentions — Preview
|
| 19 |
+
|
| 20 |
+
A small preview of news and press items mentioning YC companies. Useful for testing monitoring pipelines and enrichment flows. Get the full dataset with extended coverage and refreshes at https://www.thedataoutlet.com.
|
| 21 |
+
|
| 22 |
+
> Buy the full dataset: https://www.thedataoutlet.com
|
| 23 |
+
|
| 24 |
+
---
|
| 25 |
+
|
| 26 |
+
## What you get in this preview
|
| 27 |
+
|
| 28 |
+
- One CSV under 1,000 rows
|
| 29 |
+
- Article metadata, company mapping, timestamps, and links
|
| 30 |
+
|
| 31 |
+
**File list**
|
| 32 |
+
|
| 33 |
+
- YC_News.csv
|
| 34 |
+
|
| 35 |
+
## Quickstart
|
| 36 |
+
|
| 37 |
+
from datasets import load_dataset
|
| 38 |
+
ds = load_dataset("csv", data_files="YC_News.csv", split="train")
|
| 39 |
+
print(ds[0])
|
| 40 |
+
|
| 41 |
+
import pandas as pd
|
| 42 |
+
df = pd.read_csv("YC_News.csv")
|
| 43 |
+
df.head()
|
| 44 |
+
|
| 45 |
+
## Suggested schema
|
| 46 |
+
|
| 47 |
+
| Column | Type | Notes |
|
| 48 |
+
|----------------|--------|----------------------------------------|
|
| 49 |
+
| Title | string | Article title |
|
| 50 |
+
| Outlet | string | Publisher name |
|
| 51 |
+
| Author | string | If parsed |
|
| 52 |
+
| Datetime | string | ISO timestamp |
|
| 53 |
+
| Url | string | Article link |
|
| 54 |
+
| Company | string | Mapped YC company |
|
| 55 |
+
| Batch | string | W/S code if known |
|
| 56 |
+
| Category | string | Funding, product, hiring, etc. |
|
| 57 |
+
| Country | string | Outlet or company region |
|
| 58 |
+
| Summary | string | Short abstract if present |
|
| 59 |
+
| Image | string | Image URL if present |
|
| 60 |
+
| Date Accessed | string | Collection timestamp |
|
| 61 |
+
|
| 62 |
+
## Uses
|
| 63 |
+
|
| 64 |
+
- News monitoring for portfolio ops
|
| 65 |
+
- Lead list enrichment and alerts
|
| 66 |
+
- LLM-powered IE experiments on startup news
|
| 67 |
+
|
| 68 |
+
## Get the complete dataset
|
| 69 |
+
|
| 70 |
+
The paid version includes more rows, cleaner joins, and scheduled refreshes.
|
| 71 |
+
|
| 72 |
+
Purchase here: https://www.thedataoutlet.com
|
| 73 |
+
|
| 74 |
+
## License and terms
|
| 75 |
+
|
| 76 |
+
- Evaluation only. No redistribution. No resale.
|
| 77 |
+
- Terms apply as listed on the purchase page.
|
| 78 |
+
|
| 79 |
+
## Support
|
| 80 |
+
|
| 81 |
+
Questions or custom coverage windows? Contact us via https://www.thedataoutlet.com and mention “YC News Mentions”.
|