NIPS26Repo commited on
Commit
6a79197
·
verified ·
1 Parent(s): 149513d

Fix Croissant FileObject checksums for validation

Browse files
Files changed (1) hide show
  1. croissant.json +42 -8
croissant.json CHANGED
@@ -7,11 +7,13 @@
7
  "conformsTo": "dct:conformsTo",
8
  "cr": "http://mlcommons.org/croissant/",
9
  "rai": "http://mlcommons.org/croissant/RAI/",
 
10
  "dataType": {
11
  "@id": "cr:dataType",
12
  "@type": "@vocab"
13
  },
14
  "dct": "http://purl.org/dc/terms/",
 
15
  "examples": {
16
  "@id": "cr:examples",
17
  "@type": "@json"
@@ -29,19 +31,22 @@
29
  "md5": "cr:md5",
30
  "parentField": "cr:parentField",
31
  "path": "cr:path",
 
32
  "recordSet": "cr:recordSet",
33
  "references": "cr:references",
34
  "regex": "cr:regex",
35
  "repeated": "cr:repeated",
36
  "replace": "cr:replace",
37
  "sc": "https://schema.org/",
 
38
  "separator": "cr:separator",
 
39
  "source": "cr:source",
40
  "subField": "cr:subField",
41
  "transform": "cr:transform"
42
  },
43
  "@type": "sc:Dataset",
44
- "conformsTo": "http://mlcommons.org/croissant/1.0",
45
  "name": "QuantArena Artifact Bundle",
46
  "description": "Reproducibility artifacts for QuantArena, a controlled live-market evaluation protocol that fixes the LLM backend, market data stream, analyst workflow, and execution harness while varying only the investment doctrine (policy module) across five operational paradigms: Fundamental Value, Macro Tactical, Behavioral Momentum, Low-Volatility (Smart Beta), and a rule-based Equal-Weight baseline. The bundle contains 28 individual backtest runs across four paper-cited experiments spanning US and CN A-share equities, plus comparison aggregates, universe definitions, and provenance documentation.",
47
  "license": "https://creativecommons.org/licenses/by-nc/4.0/",
@@ -76,7 +81,9 @@
76
  "name": "manifest.json",
77
  "description": "Top-level run inventory (machine-readable)",
78
  "encodingFormat": "application/json",
79
- "contentUrl": "manifest.json"
 
 
80
  },
81
  {
82
  "@type": "cr:FileObject",
@@ -84,7 +91,9 @@
84
  "name": "all_metrics.csv",
85
  "description": "Long-format flat table of summary metrics across all 28 runs",
86
  "encodingFormat": "text/csv",
87
- "contentUrl": "derived/all_metrics.csv"
 
 
88
  },
89
  {
90
  "@type": "cr:FileObject",
@@ -92,7 +101,9 @@
92
  "name": "all_trades.csv",
93
  "description": "Concatenated per-trade log across all 28 runs",
94
  "encodingFormat": "text/csv",
95
- "contentUrl": "derived/all_trades.csv"
 
 
96
  },
97
  {
98
  "@type": "cr:FileObject",
@@ -100,7 +111,9 @@
100
  "name": "sector_style_universe.csv",
101
  "description": "5x4 sector/style universe (20 US + 20 CN tickers)",
102
  "encodingFormat": "text/csv",
103
- "contentUrl": "universe/sector_style_universe.csv"
 
 
104
  },
105
  {
106
  "@type": "cr:FileSet",
@@ -380,8 +393,29 @@
380
  "Methodological research on controlled-intervention evaluation in finance."
381
  ],
382
  "rai:dataBiases": "Universe is restricted to 20 liquid US tickers and 20 liquid CN A-share tickers (5 sectors x 4 size-style cells per market); micro-cap, illiquid, or non-equity assets are excluded by design. Performance patterns observed here may not transfer to broader universes. Single-seed case-study runs (with one paired re-run for the US window) imply LLM-sampling stochasticity is bounded but not fully characterized; see the Reproducibility table in the paper.",
383
- "rai:dataLimitations": "Trading frictions (transaction costs, market impact, short-selling, borrowing constraints) are not modeled. The 6M live-market window is much shorter than typical institutional evaluation horizons. The GPT-5.4 backend identifier reflects the API gateway label exposed at run time and not a vendor build hash; exact backend reproducibility depends on the gateway's routing decisions at run time. The bundle redistributes only the derived decision-level data, not the raw third-party feeds.",
384
  "rai:dataReleaseMaintenancePlan": "v1.0 corresponds to the NeurIPS 2026 E&D Track submission. Future versions will add longer windows, additional asset classes, and trading-friction modeling. Bundle versioning is tracked in CHANGELOG.md.",
385
  "rai:personalSensitiveInformation": "Not applicable — bundle contains no personally identifiable or sensitive information.",
386
- "rai:dataSocialImpact": "The bundle supports academic study of LLM-driven trading agents under controlled conditions. Deploying such agents to real markets without additional safeguards (frictions, risk controls, auditing) carries substantial risk, including financial loss and potential amplification of herd behavior. The bundle is explicitly scoped for research and evaluation; it is not financial advice and should not be interpreted as evidence of safe or profitable real-world deployment."
387
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  "conformsTo": "dct:conformsTo",
8
  "cr": "http://mlcommons.org/croissant/",
9
  "rai": "http://mlcommons.org/croissant/RAI/",
10
+ "data": "cr:data",
11
  "dataType": {
12
  "@id": "cr:dataType",
13
  "@type": "@vocab"
14
  },
15
  "dct": "http://purl.org/dc/terms/",
16
+ "equivalentProperty": "cr:equivalentProperty",
17
  "examples": {
18
  "@id": "cr:examples",
19
  "@type": "@json"
 
31
  "md5": "cr:md5",
32
  "parentField": "cr:parentField",
33
  "path": "cr:path",
34
+ "prov": "http://www.w3.org/ns/prov#",
35
  "recordSet": "cr:recordSet",
36
  "references": "cr:references",
37
  "regex": "cr:regex",
38
  "repeated": "cr:repeated",
39
  "replace": "cr:replace",
40
  "sc": "https://schema.org/",
41
+ "samplingRate": "cr:samplingRate",
42
  "separator": "cr:separator",
43
+ "sha256": "sc:sha256",
44
  "source": "cr:source",
45
  "subField": "cr:subField",
46
  "transform": "cr:transform"
47
  },
48
  "@type": "sc:Dataset",
49
+ "conformsTo": "http://mlcommons.org/croissant/1.1",
50
  "name": "QuantArena Artifact Bundle",
51
  "description": "Reproducibility artifacts for QuantArena, a controlled live-market evaluation protocol that fixes the LLM backend, market data stream, analyst workflow, and execution harness while varying only the investment doctrine (policy module) across five operational paradigms: Fundamental Value, Macro Tactical, Behavioral Momentum, Low-Volatility (Smart Beta), and a rule-based Equal-Weight baseline. The bundle contains 28 individual backtest runs across four paper-cited experiments spanning US and CN A-share equities, plus comparison aggregates, universe definitions, and provenance documentation.",
52
  "license": "https://creativecommons.org/licenses/by-nc/4.0/",
 
81
  "name": "manifest.json",
82
  "description": "Top-level run inventory (machine-readable)",
83
  "encodingFormat": "application/json",
84
+ "contentUrl": "manifest.json",
85
+ "md5": "bb42335a24b28e7d795775435cf0478a",
86
+ "sha256": "5e2f3e8a12ba31e4352ae03c0a73ab5f940f09fdb1df87aa5aeb7bb213d748e1"
87
  },
88
  {
89
  "@type": "cr:FileObject",
 
91
  "name": "all_metrics.csv",
92
  "description": "Long-format flat table of summary metrics across all 28 runs",
93
  "encodingFormat": "text/csv",
94
+ "contentUrl": "derived/all_metrics.csv",
95
+ "md5": "415bf46376615cffec260d32fb00189e",
96
+ "sha256": "45a65ac0d1a973614c7d66d4fcb31617c9e2c40dcc55f55a1d334177ab6cbd5e"
97
  },
98
  {
99
  "@type": "cr:FileObject",
 
101
  "name": "all_trades.csv",
102
  "description": "Concatenated per-trade log across all 28 runs",
103
  "encodingFormat": "text/csv",
104
+ "contentUrl": "derived/all_trades.csv",
105
+ "md5": "265efdd77a81a00460e533415cf78ee6",
106
+ "sha256": "ca0df264b0453e4f96d51e420d569f3c253df4961fe421d5facee24e3be2129c"
107
  },
108
  {
109
  "@type": "cr:FileObject",
 
111
  "name": "sector_style_universe.csv",
112
  "description": "5x4 sector/style universe (20 US + 20 CN tickers)",
113
  "encodingFormat": "text/csv",
114
+ "contentUrl": "universe/sector_style_universe.csv",
115
+ "md5": "674bb2aed2a6fcba83255453fcb349ce",
116
+ "sha256": "8d834d3365c56f5967cf916fb7b810f8da799b09ee8d7f1b1c262eee4f63039a"
117
  },
118
  {
119
  "@type": "cr:FileSet",
 
393
  "Methodological research on controlled-intervention evaluation in finance."
394
  ],
395
  "rai:dataBiases": "Universe is restricted to 20 liquid US tickers and 20 liquid CN A-share tickers (5 sectors x 4 size-style cells per market); micro-cap, illiquid, or non-equity assets are excluded by design. Performance patterns observed here may not transfer to broader universes. Single-seed case-study runs (with one paired re-run for the US window) imply LLM-sampling stochasticity is bounded but not fully characterized; see the Reproducibility table in the paper.",
396
+ "rai:dataLimitations": "Trading frictions (transaction costs, market impact, short-selling, borrowing constraints) are not modeled in the primary runs; the paper reports a deterministic post-hoc transaction-cost sensitivity sweep over the released trade logs. The 6M live-market window is much shorter than typical institutional evaluation horizons. The GPT-5.4 backend identifier reflects the API gateway label exposed at run time and not a vendor build hash; exact backend reproducibility depends on the gateway's routing decisions at run time. The bundle redistributes only the derived decision-level data, not the raw third-party feeds.",
397
  "rai:dataReleaseMaintenancePlan": "v1.0 corresponds to the NeurIPS 2026 E&D Track submission. Future versions will add longer windows, additional asset classes, and trading-friction modeling. Bundle versioning is tracked in CHANGELOG.md.",
398
  "rai:personalSensitiveInformation": "Not applicable — bundle contains no personally identifiable or sensitive information.",
399
+ "rai:dataSocialImpact": "The bundle supports academic study of LLM-driven trading agents under controlled conditions. Deploying such agents to real markets without additional safeguards (frictions, risk controls, auditing) carries substantial risk, including financial loss and potential amplification of herd behavior. The bundle is explicitly scoped for research and evaluation; it is not financial advice and should not be interpreted as evidence of safe or profitable real-world deployment.",
400
+ "rai:hasSyntheticData": false,
401
+ "prov:wasDerivedFrom": [
402
+ "Yahoo Finance / yfinance US equity price and corporate-action data",
403
+ "Tushare China A-share price, fundamental, and news data",
404
+ "Financial Modeling Prep US fundamentals and news data",
405
+ "AKShare China macro and policy indicators",
406
+ "Tavily search-API news retrieval metadata",
407
+ "LLM backend decision outputs from the controlled QuantArena execution harness"
408
+ ],
409
+ "prov:wasGeneratedBy": [
410
+ {
411
+ "@type": "prov:Activity",
412
+ "name": "Controlled backtest execution",
413
+ "description": "The QuantArena harness executed daily decisions from 2025-09-01 to 2026-02-28 for matched US and CN 20-ticker universes, fixing backend, analyst workflow, initial capital, portfolio accounting, and execution rules while varying only the mandate module."
414
+ },
415
+ {
416
+ "@type": "prov:Activity",
417
+ "name": "Artifact derivation and anonymized release packaging",
418
+ "description": "Raw run directories were filtered into decision-level artifacts: per-run metrics.json, trades.csv, equity_curve.csv, comparison aggregates, universe definitions, audit manifests, and flattened all_metrics/all_trades tables. Raw third-party OHLCV/news bodies, private credentials, author-identifying repository metadata, and live LLM response logs are excluded."
419
+ }
420
+ ]
421
+ }