File size: 2,606 Bytes
c6004a7
a30ef07
 
 
 
 
c6004a7
a30ef07
 
 
 
 
 
 
 
 
 
 
 
 
 
c6004a7
 
 
 
 
 
 
 
 
 
a30ef07
 
5d1d1a9
 
a30ef07
5d1d1a9
a30ef07
 
5d1d1a9
 
 
c6004a7
5d1d1a9
c6004a7
5d1d1a9
c6004a7
5d1d1a9
c6004a7
 
 
 
 
 
 
5d1d1a9
a30ef07
5d1d1a9
 
 
 
c6004a7
 
 
 
 
5d1d1a9
c6004a7
 
 
 
67a0704
5d1d1a9
a30ef07
5d1d1a9
a30ef07
 
c6004a7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79

---
pretty_name: YCbench
dataset_name: ycbench
language:
  - en
license: mit
tags:
  - finance
  - startups
  - ycombinator
  - benchmarking
  - tabular
  - prediction
  - venture-capital
task_categories:
  - tabular-classification
  - text-classification
size_categories:
  - n<1K
configs:
  - config_name: startups
    data_files: yc_w26_startups.csv
  - config_name: traction
    data_files: yc_w26_traction.csv
  - config_name: scores
    data_files: yc_w26_pre_demo_scores.csv
  - config_name: mentions
    data_files: yc_mentions.csv
  - config_name: mentions_early
    data_files: yc_mentions_early.csv
---

# YCbench

**A live benchmark dataset for forecasting startup outperformance in Y Combinator batches.**

This dataset was introduced in the paper:  
**["YC Bench: a Live Benchmark for Forecasting Startup Outperformance in Y Combinator Batches"](https://huggingface.co/papers/2604.02378)** by Mostapha Benhenda.

## Dataset Overview

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).

Performance is measured using a **Pre-Demo Day Score** that combines traction signals and web visibility.

### Available Configurations

| Config          | File                          | Description                              |
|-----------------|-------------------------------|------------------------------------------|
| `startups`      | `yc_w26_startups.csv`         | Basic startup information                |
| `traction`      | `yc_w26_traction.csv`         | Traction metrics                         |
| `scores`        | `yc_w26_pre_demo_scores.csv`  | Pre-demo day scores + velocity           |
| `mentions`      | `yc_mentions.csv`             | Google/web mention counts                |
| `mentions_early`| `yc_mentions_early.csv`       | Early-stage mention data                 |

## Quick Load

```python
from datasets import load_dataset

# Load specific parts
startups = load_dataset("benstaf/ycbench", "startups")
scores   = load_dataset("benstaf/ycbench", "scores")
mentions = load_dataset("benstaf/ycbench", "mentions")
```

Or with pandas (simple way):
```
import pandas as pd
df = pd.read_csv("hf://datasets/benstaf/ycbench/yc_w26_pre_demo_scores.csv")
```

## Links

- **Paper**: [arXiv 2604.02378](https://huggingface.co/papers/2604.02378)
- **Live Benchmark**: [ycbench.com](https://ycbench.com/)
- **GitHub**: [benstaf/ycbench](https://github.com/benstaf/ycbench)