twangodev commited on
Commit
3cb29f1
·
verified ·
1 Parent(s): 270e588

Initial dataset upload: 9 hackathons, 2222 projects

Browse files
README.md ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Devpost Hackathon Projects
3
+ license: other
4
+ language:
5
+ - en
6
+ size_categories:
7
+ - 1K<n<10K
8
+ task_categories:
9
+ - text-classification
10
+ - text-generation
11
+ - summarization
12
+ tags:
13
+ - hackathon
14
+ - devpost
15
+ - github
16
+ - projects
17
+ configs:
18
+ - config_name: all
19
+ default: true
20
+ data_files:
21
+ - split: train
22
+ path: data/all/train.parquet
23
+ - config_name: cal-hacks-12-0
24
+ data_files:
25
+ - split: train
26
+ path: data/cal-hacks-12-0/train.parquet
27
+ - config_name: hackgt-12
28
+ data_files:
29
+ - split: train
30
+ path: data/hackgt-12/train.parquet
31
+ - config_name: hacktech-by-caltech-2026
32
+ data_files:
33
+ - split: train
34
+ path: data/hacktech-by-caltech-2026/train.parquet
35
+ - config_name: madhacks
36
+ data_files:
37
+ - split: train
38
+ path: data/madhacks/train.parquet
39
+ - config_name: madhacks-fall-2025
40
+ data_files:
41
+ - split: train
42
+ path: data/madhacks-fall-2025/train.parquet
43
+ - config_name: pennapps-xxv
44
+ data_files:
45
+ - split: train
46
+ path: data/pennapps-xxv/train.parquet
47
+ - config_name: treehacks-2024
48
+ data_files:
49
+ - split: train
50
+ path: data/treehacks-2024/train.parquet
51
+ - config_name: treehacks-2025
52
+ data_files:
53
+ - split: train
54
+ path: data/treehacks-2025/train.parquet
55
+ - config_name: treehacks-2026
56
+ data_files:
57
+ - split: train
58
+ path: data/treehacks-2026/train.parquet
59
+ ---
60
+
61
+ # devpost-hacks
62
+
63
+ A collection of hackathon project submissions scraped from [Devpost](https://devpost.com),
64
+ enriched with the README files of any GitHub repos linked from each project.
65
+
66
+ Intended for **research use only** (e.g. evaluating LLM judges, training project-summarization
67
+ models, studying what wins hackathons.)
68
+
69
+ ## Configurations
70
+
71
+ | Config | Rows | Winners | With READMEs |
72
+ |---|---:|---:|---:|
73
+ | `all` (default) | 2222 | 363 | 1358 |
74
+ | `cal-hacks-12-0` | 694 | 100 | 352 |
75
+ | `hackgt-12` | 272 | 25 | 171 |
76
+ | `hacktech-by-caltech-2026` | 61 | 0 | 46 |
77
+ | `madhacks` | 55 | 10 | 32 |
78
+ | `madhacks-fall-2025` | 111 | 13 | 77 |
79
+ | `pennapps-xxv` | 98 | 25 | 63 |
80
+ | `treehacks-2024` | 319 | 58 | 192 |
81
+ | `treehacks-2025` | 248 | 70 | 185 |
82
+ | `treehacks-2026` | 364 | 62 | 240 |
83
+
84
+ `hacktech-by-caltech-2026` has zero winners because results were not yet announced
85
+ on Devpost at scrape time.
86
+
87
+ ## Schema
88
+
89
+ | Field | Type | Notes |
90
+ |---|---|---|
91
+ | `project_id` | string | First 12 hex chars of `sha1(url)` |
92
+ | `hackathon` | string | Hackathon slug (matches the config name) |
93
+ | `url` | string | Devpost project URL |
94
+ | `title` | string | |
95
+ | `tagline` | string | One-line summary on Devpost |
96
+ | `description` | string | Full Devpost project write-up |
97
+ | `built_with` | list&lt;string&gt; | Tags the team used (`react`, `python`, ...) |
98
+ | `video_link` | string | Demo video URL if any |
99
+ | `other_links` | list&lt;string&gt; | All non-video links from the project page |
100
+ | `results` | string | Award label (`Winner`, `Did Not Place`, etc.) or `null` |
101
+ | `is_winner` | bool | True iff Devpost flagged any award as a "winner" |
102
+ | `readmes` | list&lt;struct&gt; | GitHub READMEs for repos linked under `other_links` |
103
+
104
+ The `readmes` struct fields:
105
+
106
+ - `repo` — `owner/repo`
107
+ - `content` — README markdown, truncated to 6000 chars (with `[... truncated]` marker)
108
+ - `truncated` — bool
109
+
110
+ ## Loading
111
+
112
+ ```python
113
+ from datasets import load_dataset
114
+
115
+ ds = load_dataset("twangodev/devpost-hacks") # all hackathons
116
+ ds = load_dataset("twangodev/devpost-hacks", "treehacks-2026") # one hackathon
117
+ ```
118
+
119
+ ## Sources & licensing
120
+
121
+ This dataset aggregates content from two upstream sources, neither of which has a
122
+ single uniform license:
123
+
124
+ 1. Devpost project pages - Project text (title, tagline, description, links, results)
125
+ is authored by the participating teams. We include this content here under
126
+ a fair-use / research-use rationale.
127
+ 2. README files: Each README inherits the license of its repository.
128
+
129
+ Because of (2) in particular, we cannot apply a uniform open license to this
130
+ dataset.
131
+
132
+ ## Takedown & Removal Requests
133
+
134
+ If you are the author of a project (or a maintainer of a linked repo) and would
135
+ like your content removed from this dataset, email **contact@twango.dev** with
136
+ the project URL or repo slug. We will remove it from the next release.
data/all/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd4e1e564333c305f6faa029dbbe6ca99dfa99f32b8e9c8e45c88ea8d6d9a565
3
+ size 6064862
data/cal-hacks-12-0/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30b67f16a134d2fa663dd9db2eb745a3d2f39e3f445b60094c84714c92514b14
3
+ size 1775873
data/hackgt-12/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd99b328609f97d192735874285ee80459a10034ce9e7edae5303686c34a182a
3
+ size 718123
data/hacktech-by-caltech-2026/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d8f8bf987d0205486966a637339159f178f2849970cefa667e2b61aea4419f9
3
+ size 216843
data/madhacks-fall-2025/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dce0ffc13d169b7764619cecb26a1cb8d0d96edbdd734321ed068a056cb2da77
3
+ size 273006
data/madhacks/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4098b2354acafc71ae1608767761336c0138d6723a35d656890c9adb7422884c
3
+ size 109367
data/pennapps-xxv/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6032532aa7b174066b53915b3d22b9d40ad5dc270a7c5ae4873a56d49e616993
3
+ size 231137
data/treehacks-2024/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c37d1f94a19fc43653d2d3cec9c9a4bb8bc6e769b33e6da0a9e67a516ef6d46
3
+ size 771504
data/treehacks-2025/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12946fb30a0c5212bb97c8f8cb3293341c24bf3499b6b56b62b3e583032fc323
3
+ size 727187
data/treehacks-2026/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2675510ae7c7ecce68627cab88f27ce649bf8fcfc4f36451c31dff041325889
3
+ size 1347142