Patrickspf commited on
Commit
59f52f4
·
verified ·
1 Parent(s): 83b0996

Publish CC-BY-4.0 License and Use section per Terms §13

Browse files
Files changed (1) hide show
  1. README.md +30 -101
README.md CHANGED
@@ -1,115 +1,44 @@
1
  ---
2
- license: mit
3
- task_categories:
4
- - question-answering
5
- - text-generation
6
  language:
7
- - en
 
8
  tags:
9
- - prediction-markets
10
- - world-model
11
- - real-time-data
12
- - ai-agents
13
- - geopolitics
14
- - economics
15
- - calibrated-probabilities
16
- - kalshi
17
- - polymarket
18
- size_categories:
19
- - n<1K
20
- pretty_name: World State Daily Snapshots
21
  ---
22
 
23
- # World State Daily Snapshots
24
 
25
- Daily snapshots of the world's state as measured by prediction markets. Each snapshot contains calibrated probabilities for geopolitics, economy, energy, elections, crypto, and tech derived from 9,706 contracts on Kalshi (CFTC-regulated) and Polymarket.
26
 
27
- ## Why This Dataset Exists
28
 
29
- LLMs have a knowledge cutoff. This dataset provides ground truth for what the world looked like on any given day — not from news (narratives) or surveys (opinions), but from prediction markets where participants risk real money. Get it wrong, lose money.
 
 
 
 
 
30
 
31
- Use cases:
32
- - **Agent evaluation**: Test whether your agent can accurately answer "what's the recession probability?" on a given date
33
- - **Training data**: Fine-tune models with calibrated world state data
34
- - **Research**: Analyze how prediction market probabilities evolve over time
35
- - **Backtesting**: Validate agent decisions against historical world state
36
 
37
- ## Schema
38
 
39
- Each daily JSON file contains:
40
 
41
- ```json
42
- {
43
- "date": "2026-04-02",
44
- "timestamp": "2026-04-02T20:56:00Z",
45
- "index": {
46
- "uncertainty": 22,
47
- "geopolitical": 62,
48
- "momentum": 0.06
49
- },
50
- "traditional": [
51
- {"symbol": "SPY", "price": 655.13, "changePct": 0.81}
52
- ],
53
- "topics": [
54
- {
55
- "name": "Geopolitical",
56
- "movers": [
57
- {"title": "Iran invasion probability", "price": 53, "delta": 5, "volume": 225000, "venue": "kalshi"}
58
- ]
59
- }
60
- ],
61
- "topEdges": [
62
- {"title": "Market X", "edge": 15, "direction": "yes", "price": 35}
63
- ],
64
- "divergences": [
65
- {"description": "Stocks and gold both up — unusual risk-on + haven bid"}
66
- ],
67
- "markdown": "# World State — ...",
68
- "markdownTokenEstimate": 667
69
- }
70
- ```
71
 
72
- ## Fields
73
 
74
- | Field | Description |
75
- |-------|-------------|
76
- | `index.uncertainty` | Market uncertainty (0-100), derived from orderbook spreads |
77
- | `index.geopolitical` | Geopolitical risk (0-100), from geo-related market velocity |
78
- | `index.momentum` | Directional market bias (-1 to +1) |
79
- | `traditional` | SPY, VIX, TLT, GLD, USO prices and daily change |
80
- | `topics` | 6 categories with anchor contracts and significant movers |
81
- | `topEdges` | Largest mispricings detected by thesis models |
82
- | `divergences` | Cross-market anomalies (e.g., stocks and gold both rising) |
83
- | `markdown` | Raw markdown output (~800 tokens, ready for LLM injection) |
84
-
85
- ## Data Source
86
-
87
- [SimpleFunctions](https://simplefunctions.dev/world) — aggregates 9,706 prediction market contracts from Kalshi (CFTC-regulated) and Polymarket. Updated every 15 minutes. The daily snapshot captures the final state of each day.
88
-
89
- ## Live API
90
-
91
- For real-time data (not just daily snapshots):
92
-
93
- ```python
94
- pip install simplefunctions-ai
95
-
96
- from simplefunctions import world, delta
97
- print(world()) # current state (~800 tokens)
98
- print(delta(since="1h")) # what changed (~30-50 tokens)
99
- ```
100
-
101
- ## Citation
102
-
103
- ```bibtex
104
- @dataset{simplefunctions_world_state_2026,
105
- title={World State Daily Snapshots: Calibrated Probabilities from Prediction Markets},
106
- author={SimpleFunctions},
107
- year={2026},
108
- url={https://huggingface.co/datasets/SimpleFunctions/world-state-daily},
109
- note={Daily snapshots from 9,706 prediction markets on Kalshi and Polymarket}
110
- }
111
- ```
112
-
113
- ## License
114
-
115
- MIT
 
1
  ---
2
+ license: cc-by-4.0
 
 
 
3
  language:
4
+ - en
5
+ pretty_name: World State Daily
6
  tags:
7
+ - prediction-markets
8
+ - kalshi
9
+ - polymarket
10
+ - finance
11
+ - world-state
12
+ - time-series
13
+ source_datasets:
14
+ - original
 
 
 
 
15
  ---
16
 
17
+ # World State Daily
18
 
19
+ Daily end-of-day world state snapshots from Kalshi + Polymarket. Each JSON file captures consensus probabilities across tens of thousands of prediction markets, the SF Index (disagreement, geo-risk, breadth, activity), top edges, divergences, and a markdown summary.
20
 
21
+ ## License and Use
22
 
23
+ This dataset is released under Creative Commons Attribution 4.0 International
24
+ (CC-BY-4.0; https://creativecommons.org/licenses/by/4.0/). You may use it
25
+ freely for personal, research, educational, and commercial purposes — including
26
+ training, evaluating, and fine-tuning machine-learning models. Attribution is
27
+ required when the dataset is redistributed in substantially its original form
28
+ or cited in published work; credit as "SimpleFunctions (simplefunctions.dev)".
29
 
30
+ Additional terms apply: you may not re-host this dataset, in whole or in
31
+ substantial part, as an API or service that functionally substitutes for a
32
+ SimpleFunctions endpoint. See Terms §13.2 at https://simplefunctions.dev/terms.
 
 
33
 
34
+ Provenance, update cadence, and schema are documented below.
35
 
36
+ ## Update cadence
37
 
38
+ Daily at 23:50 UTC.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
 
40
+ ## Provenance
41
 
42
+ Source: https://simplefunctions.dev
43
+ Generator: SimpleFunctions public data pipeline
44
+ Contact: patrick@simplefunctions.dev