Datasets:
EventX
A multimodal benchmark linking 9M Twitter/X posts to 11,952 Polymarket prediction markets (2021--2026).
Dataset Description
EventX connects social media posts on Twitter/X to prediction market dynamics on Polymarket. It provides seven tasks spanning two tiers:
- Resolution tier (human-annotated): Post-to-Market Linking (T2), Evidence Grading (T3)
- Forecast tier (deterministic labels): Market Volume Prediction (T1), Market Movement Prediction (T4), Impact Persistence (T5), Cross-Market Propagation (T6)
Supported Tasks
| Config | Task | Description |
|---|---|---|
t1 |
Market Volume Prediction | Predict eventual trading volume from pre-market tweets |
t2 |
Post-to-Market Linking | Match a tweet to the correct prediction market |
t3 |
Evidence Grading | Grade tweet relevance to a market (0-5) |
t4 |
Market Movement Prediction | Predict price direction and magnitude at 2h horizon |
t5 |
Volume & Price Impact | Predict price_impact and volume_multiplier (continuous) |
t6 |
Cross-Market Propagation | Predict spillover to sibling markets |
t7 |
Impact Persistence (Decay) | Classify decay: transient/sustained/reversal |
posts |
Tweet Metadata | Tweet IDs (text stripped for privacy) |
markets |
Market Metadata | Market questions, categories, resolution info |
ohlcv |
Market OHLCV | Price/volume time series |
Usage
from datasets import load_dataset
# Load a task split
ds = load_dataset("mlsys-io/EventXBench", "t1")
train_df = ds["train"].to_pandas()
test_df = ds["test"].to_pandas()
# Load market metadata
markets = load_dataset("mlsys-io/EventXBench", "markets")
# Load OHLCV time series
ohlcv = load_dataset("mlsys-io/EventXBench", "ohlcv")
Data Fields
T1: Market Volume Prediction
event_group_id(str): Cluster ID for the event groupcondition_id(str): Polymarket market condition IDquestion(str): Market question textcategory(str): Market categorytweet_count(int): Number of tweets in the event clusterunique_user_count(int): Distinct authorsburst_duration_hours(float): Duration of tweet burstmax_author_followers(int): Max follower count in clusterinterest_label(str): Target label --high(>80th pctl),moderate(40th--80th),low(<40th)- ... (see full schema in the dataset viewer)
T2: Post-to-Market Linking
tweet_id(int): Twitter post IDtweet_text(str): Tweet text contentmarket_id(str): Polymarket condition IDmarket_question(str): Market question textembedding_score(float): Semantic similarity score
T3: Evidence Grading
tweet_id(int): Twitter post IDcondition_id(str): Polymarket condition IDtweet(str): Tweet textmarket(str): Market metadataquestion(str): Market questionfinal_grade(int): Evidence grade 0-5llm_grade(int): LLM-assigned gradellm_confidence(float): LLM confidence score
T4: Market Movement Prediction
tweet_id(int): Twitter post IDcondition_id(str): Polymarket condition IDprice_t0(float): Price at tweet publication timedelta_2h(float): Absolute price change at 2h horizondirection_label(str):up,down, orflatmagnitude_bucket(str):small,medium, orlargeconfound_flag(bool): Whether confounding events were detected
T5: Volume and Price Impact
tweet_id(int): Twitter post IDcondition_id(str): Polymarket condition IDprice_impact_json(dict): Max absolute deviation from p0 at horizons (15m, 30m, 1h, 2h, 6h)volume_multiplier_json(dict): Total volume / 24h baseline at multiple horizonsdecay_class(str):transient,sustained, orreversalconfound_flag(bool): Whether confounding events were detected- Metrics: Spearman rho for price_impact and volume_multiplier, decay macro-F1
T6: Cross-Market Propagation
tweet_id(int): Twitter post IDprimary_condition_id(str): Primary market condition IDlabel(str):no_effect,primary_mover,propagated_signalsibling_count(int): Number of sibling marketsmoved_sibling_count(int): Number of siblings that movedprimary_delta_h(float): Primary market price changeconfound_flag(bool): Whether confounding events were detected
Posts (Tweet Metadata)
tweet_id(int): Twitter post IDtext(null): Set to NULL for privacy -- use Twitter API for rehydration- Additional metadata fields (timestamps, user IDs, etc.)
Privacy and Ethics
- Tweet text: Stripped from the public release per Twitter/X ToS. Tweet IDs are provided for authorized rehydration.
- Market data: Polymarket data is publicly available on-chain and included under fair use for research.
- No PII: User-level features are aggregated; no individual user profiles are released.
License
CC BY-NC 4.0
- Downloads last month
- 75