Reppo-labs commited on
Commit
9ccd1af
·
verified ·
1 Parent(s): 8cda92d

Restructure into data/ subfolder, update README with SAHF methodology and dataset configs

Browse files

- Move data files into data/ subfolder
- Add configs block to README YAML to register votes and market_summary as separate viewer tabs
- Update dataset card with stake-assured human feedback framing, voting power stats, limitations section, and whitepaper link

Files changed (3) hide show
  1. DATA_DICTIONARY.md +14 -1
  2. README.md +132 -93
  3. dataset_schema.json +19 -48
DATA_DICTIONARY.md CHANGED
@@ -19,7 +19,7 @@ Row-level anonymized crowd feedback votes.
19
  | `vote` | `up_vote` or `down_vote` |
20
  | `up_vote` | Boolean vote direction |
21
  | `votes` | Numeric vote count from source system |
22
- | `voting_power` | Voting weight from source system |
23
  | `created_at` | Original creation timestamp |
24
  | `updated_at` | Original update timestamp |
25
  | `deleted` | Whether the source row was deleted |
@@ -48,6 +48,19 @@ One row per geopolitical question/market, aggregated from `data/train.jsonl`.
48
  | `last_seen_at` | Latest feedback timestamp |
49
  | `split` | Dataset split |
50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  ## Privacy changes
52
 
53
  The source CSV contained `voter_id` and `private_subnet_id`. Those fields are intentionally excluded from this public release.
 
19
  | `vote` | `up_vote` or `down_vote` |
20
  | `up_vote` | Boolean vote direction |
21
  | `votes` | Numeric vote count from source system |
22
+ | `voting_power` | Weight attached to the feedback vote |
23
  | `created_at` | Original creation timestamp |
24
  | `updated_at` | Original update timestamp |
25
  | `deleted` | Whether the source row was deleted |
 
48
  | `last_seen_at` | Latest feedback timestamp |
49
  | `split` | Dataset split |
50
 
51
+ ## Recommended training setup
52
+
53
+ For a simple supervised setup:
54
+
55
+ - Input: `question` + `feedback`
56
+ - Label: `up_vote` or `vote`
57
+ - Sample weight: `voting_power`
58
+
59
+ For market-level ranking or triage:
60
+
61
+ - Input: `question`
62
+ - Targets/features: `up_vote_share`, `num_feedback_votes`, `total_voting_power`, `top_feedback_tags`
63
+
64
  ## Privacy changes
65
 
66
  The source CSV contained `voter_id` and `private_subnet_id`. Those fields are intentionally excluded from this public release.
README.md CHANGED
@@ -1,3 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # MarketCrowd Geopolitics
2
 
3
  **The first open dataset produced via stake-assured human feedback (SAHF)** — preference signals crowdsourced through capital-at-risk voting on geopolitical AI reasoning.
@@ -6,11 +41,11 @@
6
 
7
  ## Overview
8
 
9
- MarketCrowd Geopolitics contains anonymized crowd feedback votes and market-level summaries derived from a geopolitical prediction-market workflow on the [Reppo protocol](https://reppo.xyz).
10
 
11
  Unlike standard annotation datasets where labelers are paid per task, every signal in this dataset was produced by voters who locked $REPPO tokens as economic collateral — meaning their judgments carry capital at risk, not just attention.
12
 
13
- This is an **initial seed release** covering ~6 weeks of activity across ~20 geopolitical markets (March–April 2026). The underlying dataset updates continuously as new epochs settle on the Reppo protocol.
14
 
15
  ---
16
 
@@ -26,85 +61,82 @@ This dataset was generated through a [Reppo Datanet](https://reppo.xyz/reppo-whi
26
 
27
  This mechanism is described in full in the [Reppo whitepaper](https://reppo.xyz/reppo-whitepaper.pdf).
28
 
29
- ### Why stake-assured feedback is different from standard annotation
30
 
31
  | Property | Paid annotation (e.g. Scale AI) | Reppo SAHF |
32
  |---|---|---|
33
  | Voter incentive | Payment per task | Emissions + locked capital at risk |
34
- | Sybil resistance | Identity verification | Capital requirement (can't split stake to gain power) |
35
  | Disagreement handling | Averaged out | Explicit signal via net-vote mechanism |
36
  | Quality metric | Inter-annotator agreement | Economic Value of Feedback (EVOF) |
37
  | Data staleness | Static snapshot | Continuously updated every 48 hours |
38
 
39
- ---
40
-
41
- ## What Is Included
42
 
43
- This release includes four data files:
44
 
45
- | File | Description |
46
- |---|---|
47
- | `train.jsonl` | Row-level anonymized crowd feedback votes |
48
- | `train.csv` | CSV version of the row-level data |
49
- | `market_summary.jsonl` | Aggregated summaries by geopolitical question/market |
50
- | `market_summary.csv` | CSV version of the market-level summary data |
51
 
52
- Additional documentation:
53
 
54
- | File | Description |
55
- |---|---|
56
- | `DATA_DICTIONARY.md` | Explains each field in the dataset |
57
- | `dataset_schema.json` | Machine-readable schema |
 
 
 
 
58
 
59
  ---
60
 
61
  ## Dataset Structure
62
 
63
- ### Row-level file: `train.jsonl`
64
 
65
  Each row is an anonymized feedback vote attached to a geopolitical prediction-market question.
66
 
67
- | Field | Description |
68
- |---|---|
69
- | `id` | Stable public row ID |
70
- | `source_record_id` | Original feedback record ID |
71
- | `record_type` | `crowd_feedback_vote` |
72
- | `question` | Geopolitical market/question title |
73
- | `category` | Topic category |
74
- | `market_id` | Original market/Pod ID |
75
- | `epoch` | 48-hour epoch in which the vote was cast (higher = more recent) |
76
- | `feedback` | Qualitative feedback label and/or freeform comment. Format: `"Label1, Label2 - optional comment"`. Note: this field mixes structured tags with open-ended text. |
77
- | `vote` | `up_vote` or `down_vote` |
78
- | `up_vote` | Boolean vote direction |
79
- | `votes` | Raw on-chain vote count from source system. Note: this is distinct from `voting_power` and will be 0 for many rows where voting power was allocated without a discrete on-chain vote count being recorded. |
80
- | `voting_power` | veREPPO weight applied to this vote derived from $REPPO locked × lock duration (non-linear). This is the economically meaningful signal. |
81
- | `created_at` | Feedback creation timestamp |
82
- | `updated_at` | Feedback update timestamp |
83
- | `deleted` | Source deletion flag |
84
- | `version` | Source version field |
85
- | `split` | Dataset split |
86
-
87
- ### Market-level file: `market_summary.jsonl`
88
-
89
- Each row summarizes all available feedback for one geopolitical question/market.
90
-
91
- | Field | Description |
92
- |---|---|
93
- | `id` | Stable public summary ID |
94
- | `record_type` | `market_feedback_summary` |
95
- | `question` | Geopolitical market/question title |
96
- | `category` | Topic category |
97
- | `market_id` | Original market/Pod ID |
98
- | `num_feedback_votes` | Number of feedback votes |
99
- | `up_votes` | Count of positive votes |
100
- | `down_votes` | Count of negative votes |
101
- | `up_vote_share` | Share of positive votes |
102
- | `total_voting_power` | Sum of voting power across all votes |
103
- | `median_voting_power` | Median voting power per vote |
104
- | `top_feedback_tags` | Most common feedback labels/comments |
105
- | `first_seen_at` | Earliest feedback timestamp |
106
- | `last_seen_at` | Latest feedback timestamp |
107
- | `split` | Dataset split |
108
 
109
  ---
110
 
@@ -113,12 +145,13 @@ Each row summarizes all available feedback for one geopolitical question/market.
113
  ```json
114
  {
115
  "id": "mcg_vote_000001",
 
116
  "record_type": "crowd_feedback_vote",
117
  "question": "Hormuz Updates",
118
  "category": "geopolitics",
119
  "market_id": "cmn9plf2k0001kz040cuuizdq",
120
  "epoch": 64,
121
- "feedback": "High quality - ",
122
  "vote": "up_vote",
123
  "up_vote": true,
124
  "votes": 0,
@@ -135,61 +168,61 @@ Each row summarizes all available feedback for one geopolitical question/market.
135
 
136
  ## Suggested Uses
137
 
138
- This dataset is best used as a **feedback-signal and question-quality dataset**. It should not be treated as a standalone source of resolved geopolitical ground truth.
139
 
140
- Suitable applications include:
141
 
142
- - Text classification of feedback labels
143
- - Question-quality scoring and market triage
144
- - Weak supervision from capital-weighted crowd votes
145
- - Market/question ranking by crowd-perceived usefulness
146
- - Crowd-signal summarization
147
- - Geopolitical forecasting prompt evaluation
148
- - Research into prediction-market-based and stake-assured data generation
149
- - Evaluation of agents that reason about market questions and crowd feedback
150
 
151
- ### Agent Training Use Cases
152
 
153
- | Agent task | Input | Training or evaluation signal |
154
  |---|---|---|
155
- | Question quality scoring | Geopolitical market question | Up-vote share, voting power, feedback labels |
156
- | Market triage | Market question + feedback | Aggregated market summary |
157
- | Feedback classification | Feedback text | Crowd feedback category or vote direction |
158
  | Signal summarization | Question + row-level votes | Market-level summary |
159
- | Forecasting workflow support | Proposed market/question | Crowd-perceived usefulness and clarity |
 
 
160
 
161
  ---
162
 
163
  ## Limitations
164
 
165
- - **Size**: This is a seed release of 160 rows across ~20 geopolitical markets from a single 6-week window (March–April 2026). It is not yet suitable as a standalone benchmark.
166
- - **Voting power concentration**: As with any token-weighted system, a small number of high-veREPPO wallets contribute a disproportionate share of voting power. The `voting_power` field reflects this directly. The Reppo protocol addresses this via square-root dampening in the EVOF metric, but downstream users should be aware of concentration when weighting signals.
167
- - **Feedback field structure**: The `feedback` field mixes structured tags (e.g. "High quality") with freeform comments. Preprocessing is recommended before using this field for classification tasks.
168
- - **Single domain**: All records are `category: geopolitics` from a single Datanet. Cross-domain generalization should not be assumed.
169
- - **No resolved outcomes**: This dataset captures crowd quality judgments, not forecasting accuracy or event resolution. It is a preference/feedback dataset, not a ground-truth geopolitical dataset.
170
 
171
  ---
172
 
173
- ## About Reppo
174
 
175
- Reppo is a protocol for tokenized, continuously curated data production for reinforcement learning. Datanets are on-chain data markets where publishers contribute content and veREPPO holders provide stake-assured quality assessments. The resulting datasets update every 48 hours and are available for subscription via [repo.exchange](https://repo.exchange).
176
 
177
- - Website: [reppo.xyz](https://reppo.xyz)
178
- - Whitepaper: [reppo.xyz/reppo-whitepaper.pdf](https://reppo.xyz/reppo-whitepaper.pdf)
179
 
180
  ---
181
 
182
- ## License
 
 
183
 
184
- [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
 
185
 
186
  ---
187
 
188
  ## Citation
189
 
190
- If you use this dataset, please cite:
191
-
192
- ```
193
  @dataset{reppo_marketcrowd_geopolitics_2026,
194
  author = {Reppo Labs},
195
  title = {MarketCrowd Geopolitics: Stake-Assured Human Feedback on Geopolitical AI Reasoning},
@@ -197,4 +230,10 @@ If you use this dataset, please cite:
197
  publisher = {Hugging Face},
198
  url = {https://huggingface.co/datasets/Reppo-labs/marketcrowd-geopolitics}
199
  }
200
- ```
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - prediction-markets
7
+ - crowdsourcing
8
+ - geopolitics
9
+ - forecasting
10
+ - reasoning
11
+ - ai-evaluation
12
+ - agents
13
+ - uncertainty
14
+ - calibration
15
+ - human-feedback
16
+ - stake-assured
17
+ - rlhf
18
+ task_categories:
19
+ - text-classification
20
+ - question-answering
21
+ - text-generation
22
+ pretty_name: MarketCrowd Geopolitics
23
+ size_categories:
24
+ - n<1K
25
+ configs:
26
+ - config_name: votes
27
+ data_files:
28
+ - split: train
29
+ path: data/train.jsonl
30
+ - config_name: market_summary
31
+ data_files:
32
+ - split: train
33
+ path: data/market_summary.jsonl
34
+ ---
35
+
36
  # MarketCrowd Geopolitics
37
 
38
  **The first open dataset produced via stake-assured human feedback (SAHF)** — preference signals crowdsourced through capital-at-risk voting on geopolitical AI reasoning.
 
41
 
42
  ## Overview
43
 
44
+ MarketCrowd Geopolitics contains anonymized crowd feedback votes and market-level summaries derived from a geopolitical prediction-market workflow on the [Reppo protocol](https://reppo.xyz).
45
 
46
  Unlike standard annotation datasets where labelers are paid per task, every signal in this dataset was produced by voters who locked $REPPO tokens as economic collateral — meaning their judgments carry capital at risk, not just attention.
47
 
48
+ This is an **initial seed release** covering ~6 weeks of activity across 51 geopolitical markets (March–April 2026). The underlying dataset updates continuously as new epochs settle on the Reppo protocol.
49
 
50
  ---
51
 
 
61
 
62
  This mechanism is described in full in the [Reppo whitepaper](https://reppo.xyz/reppo-whitepaper.pdf).
63
 
64
+ ### Why stake-assured feedback differs from standard annotation
65
 
66
  | Property | Paid annotation (e.g. Scale AI) | Reppo SAHF |
67
  |---|---|---|
68
  | Voter incentive | Payment per task | Emissions + locked capital at risk |
69
+ | Sybil resistance | Identity verification | Capital requirement (splitting stake doesn't increase power) |
70
  | Disagreement handling | Averaged out | Explicit signal via net-vote mechanism |
71
  | Quality metric | Inter-annotator agreement | Economic Value of Feedback (EVOF) |
72
  | Data staleness | Static snapshot | Continuously updated every 48 hours |
73
 
74
+ ### Voting power concentration
 
 
75
 
76
+ The `voting_power` field is derived from locked $REPPO × lock duration (non-linear). In this release, voting power ranges from 2,471 to 3,013,340 with a median of 64,110. The top 3 wallets account for ~13% of total voting power — relatively distributed for a token-weighted system. The Reppo protocol further mitigates concentration via square-root dampening in the EVOF metric.
77
 
78
+ ---
 
 
 
 
 
79
 
80
+ ## What Is Included
81
 
82
+ | File | Rows | Description |
83
+ |---|---:|---|
84
+ | `data/train.jsonl` | 160 | Row-level anonymized weighted crowd feedback votes |
85
+ | `data/train.csv` | 160 | CSV version of the row-level data |
86
+ | `data/market_summary.jsonl` | 51 | Aggregated summaries by geopolitical question/market |
87
+ | `data/market_summary.csv` | 51 | CSV version of the market-level summary data |
88
+ | `DATA_DICTIONARY.md` | — | Field-level documentation |
89
+ | `dataset_schema.json` | — | Machine-readable schema |
90
 
91
  ---
92
 
93
  ## Dataset Structure
94
 
95
+ ### `data/train.jsonl` — row-level votes
96
 
97
  Each row is an anonymized feedback vote attached to a geopolitical prediction-market question.
98
 
99
+ | Field | Type | Description |
100
+ |---|---|---|
101
+ | `id` | string | Stable public row ID |
102
+ | `source_record_id` | string | Original feedback record ID |
103
+ | `record_type` | string | Always `crowd_feedback_vote` |
104
+ | `question` | string | Geopolitical market/question title |
105
+ | `category` | string | Always `geopolitics` in this release |
106
+ | `market_id` | string | Original market/Pod ID |
107
+ | `epoch` | int | 48-hour epoch in which the vote was cast (higher = more recent) |
108
+ | `feedback` | string | Qualitative label and/or freeform comment. Format: `"Label1, Label2 - optional comment"` |
109
+ | `vote` | string | `up_vote` or `down_vote` |
110
+ | `up_vote` | bool | Boolean vote direction |
111
+ | `votes` | int | Raw on-chain vote count. Distinct from `voting_power` will be 0 for many rows |
112
+ | `voting_power` | int | veREPPO weight the economically meaningful signal. Derived from $REPPO locked × lock duration |
113
+ | `created_at` | string | Feedback creation timestamp |
114
+ | `updated_at` | string | Feedback update timestamp |
115
+ | `deleted` | bool | Source deletion flag |
116
+ | `version` | int | Source version field |
117
+ | `split` | string | Dataset split |
118
+
119
+ ### `data/market_summary.jsonl` — market-level aggregates
120
+
121
+ One row per geopolitical question, summarizing all votes for that market.
122
+
123
+ | Field | Type | Description |
124
+ |---|---|---|
125
+ | `id` | string | Stable public summary ID |
126
+ | `record_type` | string | Always `market_feedback_summary` |
127
+ | `question` | string | Geopolitical market/question title |
128
+ | `category` | string | Topic category |
129
+ | `market_id` | string | Original market/Pod ID |
130
+ | `num_feedback_votes` | int | Total number of feedback votes |
131
+ | `up_votes` | int | Count of positive votes |
132
+ | `down_votes` | int | Count of negative votes |
133
+ | `up_vote_share` | float | Fraction of votes that were positive |
134
+ | `total_voting_power` | int | Sum of voting power across all votes |
135
+ | `median_voting_power` | float | Median voting power per vote |
136
+ | `top_feedback_tags` | list | Most common feedback labels |
137
+ | `first_seen_at` | string | Earliest feedback timestamp |
138
+ | `last_seen_at` | string | Latest feedback timestamp |
139
+ | `split` | string | Dataset split |
140
 
141
  ---
142
 
 
145
  ```json
146
  {
147
  "id": "mcg_vote_000001",
148
+ "source_record_id": "cmndwvyey0001kz04mn8e5fmp",
149
  "record_type": "crowd_feedback_vote",
150
  "question": "Hormuz Updates",
151
  "category": "geopolitics",
152
  "market_id": "cmn9plf2k0001kz040cuuizdq",
153
  "epoch": 64,
154
+ "feedback": "High quality -",
155
  "vote": "up_vote",
156
  "up_vote": true,
157
  "votes": 0,
 
168
 
169
  ## Suggested Uses
170
 
171
+ This dataset is best treated as a **feedback-signal and question-quality dataset**. It should not be used as a source of resolved geopolitical ground truth.
172
 
173
+ **Recommended training setup:**
174
 
175
+ | Component | Field |
176
+ |---|---|
177
+ | Input | `question` + `feedback` |
178
+ | Label | `up_vote` or `vote` |
179
+ | Sample weight | `voting_power` |
 
 
 
180
 
181
+ **Agent training use cases:**
182
 
183
+ | Agent task | Input | Signal |
184
  |---|---|---|
185
+ | Question quality scoring | Market question | `up_vote_share`, `voting_power`, feedback labels |
186
+ | Market triage | Question + feedback | Aggregated market summary |
187
+ | Feedback classification | Feedback text | Vote direction or feedback category |
188
  | Signal summarization | Question + row-level votes | Market-level summary |
189
+ | Forecasting workflow support | Proposed market | Crowd-perceived usefulness and clarity |
190
+
191
+ **Other applications:** text classification, weak supervision, market ranking, crowd-signal summarization, geopolitical forecasting prompt evaluation, prediction-market-based data research.
192
 
193
  ---
194
 
195
  ## Limitations
196
 
197
+ - **Size**: 160 votes across 51 markets from a 6-week window. This is a seed release — not yet suitable as a standalone benchmark.
198
+ - **Single domain**: All records are `category: geopolitics` from one Datanet. Cross-domain generalization should not be assumed.
199
+ - **Feedback field**: Mixes structured tags with freeform comments. Preprocessing recommended before classification tasks.
200
+ - **No resolved outcomes**: This is a preference/feedback dataset, not a ground-truth geopolitical dataset. Event resolution is not included.
201
+ - **`votes` vs `voting_power`**: The `votes` field is 0 for most rows it reflects a raw on-chain count that was not recorded for all votes. Use `voting_power` as the primary signal.
202
 
203
  ---
204
 
205
+ ## Privacy
206
 
207
+ The source data contained direct voter and subnet identifiers. These were removed before this public release:
208
 
209
+ - `voter_id` — removed
210
+ - `private_subnet_id` — removed
211
 
212
  ---
213
 
214
+ ## About Reppo
215
+
216
+ Reppo is a protocol for tokenized, continuously curated data production for reinforcement learning. Datanets are on-chain data markets where publishers contribute content and veREPPO holders provide stake-assured quality assessments. Datasets update every 48 hours and are available for subscription via [repo.exchange](https://repo.exchange).
217
 
218
+ - Website: [reppo.xyz](https://reppo.xyz)
219
+ - Whitepaper: [reppo.xyz/reppo-whitepaper.pdf](https://reppo.xyz/reppo-whitepaper.pdf)
220
 
221
  ---
222
 
223
  ## Citation
224
 
225
+ ```bibtex
 
 
226
  @dataset{reppo_marketcrowd_geopolitics_2026,
227
  author = {Reppo Labs},
228
  title = {MarketCrowd Geopolitics: Stake-Assured Human Feedback on Geopolitical AI Reasoning},
 
230
  publisher = {Hugging Face},
231
  url = {https://huggingface.co/datasets/Reppo-labs/marketcrowd-geopolitics}
232
  }
233
+ ```
234
+
235
+ ---
236
+
237
+ ## License
238
+
239
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/) — attribution to Reppo Labs and the MarketCrowd Geopolitics dataset required.
dataset_schema.json CHANGED
@@ -1,52 +1,23 @@
1
  {
2
  "dataset_name": "MarketCrowd Geopolitics",
3
- "version": "0.1.0",
4
- "source_file": "geopolitics-dump (2).csv",
5
- "privacy_note": "voter_id and private_subnet_id were removed from the public export.",
6
- "tables": {
7
- "data/train.jsonl": {
8
- "description": "Anonymized row-level crowd feedback votes on geopolitics markets/questions.",
9
- "num_rows": 160,
10
- "fields": [
11
- "id",
12
- "source_record_id",
13
- "record_type",
14
- "question",
15
- "category",
16
- "market_id",
17
- "epoch",
18
- "feedback",
19
- "vote",
20
- "up_vote",
21
- "votes",
22
- "voting_power",
23
- "created_at",
24
- "updated_at",
25
- "deleted",
26
- "version",
27
- "split"
28
- ]
29
- },
30
- "data/market_summary.jsonl": {
31
- "description": "Aggregated market/question-level summaries computed from the row-level feedback votes.",
32
- "num_rows": 51,
33
- "fields": [
34
- "id",
35
- "record_type",
36
- "question",
37
- "category",
38
- "market_id",
39
- "num_feedback_votes",
40
- "up_votes",
41
- "down_votes",
42
- "up_vote_share",
43
- "total_voting_power",
44
- "median_voting_power",
45
- "top_feedback_tags",
46
- "first_seen_at",
47
- "last_seen_at",
48
- "split"
49
- ]
50
- }
51
  }
52
  }
 
1
  {
2
  "dataset_name": "MarketCrowd Geopolitics",
3
+ "version": "1.0.0",
4
+ "num_row_level_records": 160,
5
+ "num_market_summary_records": 51,
6
+ "license": "cc-by-4.0",
7
+ "privacy_note": "voter_id and private_subnet_id were removed from the public release.",
8
+ "recommended_training_setup": {
9
+ "input": "question + feedback",
10
+ "label": "up_vote or vote",
11
+ "sample_weight": "voting_power",
12
+ "market_level_weight_features": [
13
+ "total_voting_power",
14
+ "median_voting_power"
15
+ ]
16
+ },
17
+ "files": {
18
+ "data/train.jsonl": "Row-level anonymized weighted crowd feedback votes.",
19
+ "data/market_summary.jsonl": "Market/question-level summaries aggregated from train.jsonl.",
20
+ "data/train.csv": "CSV copy of row-level data.",
21
+ "data/market_summary.csv": "CSV copy of market-level summaries."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  }
23
  }