Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,82 @@
|
|
| 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 |
+
- founders
|
| 10 |
+
- alumni
|
| 11 |
+
- startup
|
| 12 |
+
- profiles
|
| 13 |
+
pretty_name: Y Combinator Founders
|
| 14 |
+
size_categories:
|
| 15 |
+
- n<1K
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# Y Combinator Founders — Preview
|
| 19 |
+
|
| 20 |
+
This is a small preview of Y Combinator founder records. Use it to validate schema, try matching routines, and test scripts. To purchase the complete dataset with full coverage and recurring updates, visit 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 |
+
- Founder to company mappings with basic attributes and links
|
| 30 |
+
|
| 31 |
+
**File list**
|
| 32 |
+
|
| 33 |
+
- YC_Founders.csv
|
| 34 |
+
|
| 35 |
+
## Quickstart
|
| 36 |
+
|
| 37 |
+
from datasets import load_dataset
|
| 38 |
+
ds = load_dataset("csv", data_files="YC_Founders.csv", split="train")
|
| 39 |
+
print(ds[0])
|
| 40 |
+
|
| 41 |
+
import pandas as pd
|
| 42 |
+
df = pd.read_csv("YC_Founders.csv")
|
| 43 |
+
df.head()
|
| 44 |
+
|
| 45 |
+
## Suggested schema
|
| 46 |
+
|
| 47 |
+
| Column | Type | Notes |
|
| 48 |
+
|---------------------|--------|-------------------------------------------|
|
| 49 |
+
| Founder Name | string | Full name |
|
| 50 |
+
| Company | string | YC startup |
|
| 51 |
+
| Batch | string | e.g., S24, W23 |
|
| 52 |
+
| Role | string | CEO, CTO, Co-founder |
|
| 53 |
+
| Email | string | If available |
|
| 54 |
+
| LinkedIn | string | Profile URL |
|
| 55 |
+
| Twitter | string | Handle or URL |
|
| 56 |
+
| Website | string | Company or personal site |
|
| 57 |
+
| City | string | |
|
| 58 |
+
| Country | string | |
|
| 59 |
+
| Category | string | Sector tag |
|
| 60 |
+
| Notes | string | Free text |
|
| 61 |
+
| Date Accessed | string | Collection timestamp |
|
| 62 |
+
|
| 63 |
+
## Uses
|
| 64 |
+
|
| 65 |
+
- Prospecting YC alumni by batch, role, or sector
|
| 66 |
+
- CRM enrichment and graph building
|
| 67 |
+
- Training data for NER and entity resolution
|
| 68 |
+
|
| 69 |
+
## Get the complete dataset
|
| 70 |
+
|
| 71 |
+
The paid version includes more rows, normalized entities, and scheduled refreshes.
|
| 72 |
+
|
| 73 |
+
Purchase here: https://www.thedataoutlet.com
|
| 74 |
+
|
| 75 |
+
## License and terms
|
| 76 |
+
|
| 77 |
+
- Evaluation only. No redistribution. No resale.
|
| 78 |
+
- Use implies acceptance of terms on the purchase page.
|
| 79 |
+
|
| 80 |
+
## Support
|
| 81 |
+
|
| 82 |
+
Questions or custom fields? Contact us via https://www.thedataoutlet.com and mention “YC Founders”.
|