benstaf commited on
Commit
c6004a7
·
verified ·
1 Parent(s): 67a0704

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -26
README.md CHANGED
@@ -1,9 +1,10 @@
 
1
  ---
2
  pretty_name: YCbench
3
  dataset_name: ycbench
4
  language:
5
  - en
6
- license: unknown # Change to "mit", "cc-by-4.0", etc. if you pick one
7
  tags:
8
  - finance
9
  - startups
@@ -18,18 +19,16 @@ task_categories:
18
  size_categories:
19
  - n<1K
20
  configs:
21
- - config_name: default
22
- data_files:
23
- - split: train
24
- path: yc_w26_startups.csv
25
- - split: train
26
- path: yc_w26_traction.csv
27
- - split: train
28
- path: yc_w26_pre_demo_scores.csv
29
- - split: train
30
- path: yc_mentions.csv
31
- - split: train
32
- path: yc_mentions_early.csv
33
  ---
34
 
35
  # YCbench
@@ -41,32 +40,39 @@ This dataset was introduced in the paper:
41
 
42
  ## Dataset Overview
43
 
44
- YCbench provides structured public signals for Y Combinator startups (focused on the **W26** batch of 196 companies). It enables rapid evaluation of models that predict which startups will **outperform their batch peers** in the short term (e.g., within ~90 days until Demo Day).
45
 
46
- Instead of waiting years for exits or large funding rounds, performance is measured using a **Pre-Demo Day Score** that combines traction signals and web visibility.
47
 
48
- ### Key Files
49
 
50
- - `yc_w26_startups.csv` List of W26 startups with basic information
51
- - `yc_w26_traction.csv` — Traction metrics
52
- - `yc_w26_pre_demo_scores.csv` Pre-demo day scores, velocity scores, hybrid scores, etc.
53
- - `yc_mentions.csv` Google/web mention counts
54
- - `yc_mentions_early.csv` — Early-stage mention data
 
 
55
 
56
  ## Quick Load
57
 
58
  ```python
59
  from datasets import load_dataset
60
- import pandas as pd
61
 
62
- # Load individual files (recommended for now)
63
- df_startups = pd.read_csv("hf://datasets/benstaf/ycbench/yc_w26_startups.csv")
64
- df_scores = pd.read_csv("hf://datasets/benstaf/ycbench/yc_w26_pre_demo_scores.csv")
 
 
65
 
 
 
 
 
66
  ```
67
 
68
  ## Links
69
 
70
  - **Paper**: [arXiv 2604.02378](https://huggingface.co/papers/2604.02378)
71
  - **Live Benchmark**: [ycbench.com](https://ycbench.com/)
72
- - **GitHub**: [benstaf/ycbench](https://github.com/benstaf/ycbench)
 
1
+
2
  ---
3
  pretty_name: YCbench
4
  dataset_name: ycbench
5
  language:
6
  - en
7
+ license: mit
8
  tags:
9
  - finance
10
  - startups
 
19
  size_categories:
20
  - n<1K
21
  configs:
22
+ - config_name: startups
23
+ data_files: yc_w26_startups.csv
24
+ - config_name: traction
25
+ data_files: yc_w26_traction.csv
26
+ - config_name: scores
27
+ data_files: yc_w26_pre_demo_scores.csv
28
+ - config_name: mentions
29
+ data_files: yc_mentions.csv
30
+ - config_name: mentions_early
31
+ data_files: yc_mentions_early.csv
 
 
32
  ---
33
 
34
  # YCbench
 
40
 
41
  ## Dataset Overview
42
 
43
+ YCbench provides structured public signals for Y Combinator startups (focused on the **W26** batch of 196 companies). It enables rapid evaluation of models that predict which startups will **outperform their batch peers** in the short term (until Demo Day).
44
 
45
+ Performance is measured using a **Pre-Demo Day Score** that combines traction signals and web visibility.
46
 
47
+ ### Available Configurations
48
 
49
+ | Config | File | Description |
50
+ |-----------------|-------------------------------|------------------------------------------|
51
+ | `startups` | `yc_w26_startups.csv` | Basic startup information |
52
+ | `traction` | `yc_w26_traction.csv` | Traction metrics |
53
+ | `scores` | `yc_w26_pre_demo_scores.csv` | Pre-demo day scores + velocity |
54
+ | `mentions` | `yc_mentions.csv` | Google/web mention counts |
55
+ | `mentions_early`| `yc_mentions_early.csv` | Early-stage mention data |
56
 
57
  ## Quick Load
58
 
59
  ```python
60
  from datasets import load_dataset
 
61
 
62
+ # Load specific parts
63
+ startups = load_dataset("benstaf/ycbench", "startups")
64
+ scores = load_dataset("benstaf/ycbench", "scores")
65
+ mentions = load_dataset("benstaf/ycbench", "mentions")
66
+ ```
67
 
68
+ Or with pandas (simple way):
69
+ ```
70
+ import pandas as pd
71
+ df = pd.read_csv("hf://datasets/benstaf/ycbench/yc_w26_pre_demo_scores.csv")
72
  ```
73
 
74
  ## Links
75
 
76
  - **Paper**: [arXiv 2604.02378](https://huggingface.co/papers/2604.02378)
77
  - **Live Benchmark**: [ycbench.com](https://ycbench.com/)
78
+ - **GitHub**: [benstaf/ycbench](https://github.com/benstaf/ycbench)