Datasets:
Upload 2 files
Browse files
FOM.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
FOM.json
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "economic_entity_strategy_simulation_reinforcement_optimized",
|
3 |
+
"description": "A robust simulation dataset of 10,000 economic entities representing two competing strategies: Infinite Growth Model (IGM) and Fulfillment Optimization Model (FOM). Over 200 time steps, entities experience dynamic economic shocks, policy changes, investment events, and competitive pressures. Derived metrics\u2014including RollingVolatility, WeightedRiskExposure, ReinforcementSignal, RiskManagementScore, AdaptationIndex, RelativeAdaptationIndex, and ResourceVolatilityIndex\u2014provide reinforcement signals for models to learn the trade-offs between aggressive expansion and long-term sustainability.",
|
4 |
+
"license": "CC-BY-4.0",
|
5 |
+
"simulation_parameters": {
|
6 |
+
"num_entities": 10000,
|
7 |
+
"num_time_steps": 200,
|
8 |
+
"shock_time_steps": [
|
9 |
+
27,
|
10 |
+
64,
|
11 |
+
85,
|
12 |
+
117,
|
13 |
+
145,
|
14 |
+
190
|
15 |
+
],
|
16 |
+
"policy_change_probability": 0.1,
|
17 |
+
"investment_event_probability": 0.05,
|
18 |
+
"collapse_threshold": 1
|
19 |
+
},
|
20 |
+
"features": {
|
21 |
+
"EntityID": "string, unique identifier for the economic entity",
|
22 |
+
"ModelType": "string, 'IGM' or 'FOM'",
|
23 |
+
"StartingResources": "integer, initial resource pool",
|
24 |
+
"GrowthRate": "float, base growth rate per time step",
|
25 |
+
"Efficiency": "float, resource efficiency factor",
|
26 |
+
"InnovationFactor": "float, entity's ability to innovate [0.0, 1.0]",
|
27 |
+
"MarketAdaptability": "float, entity's adaptability to market conditions [0.5, 1.0]",
|
28 |
+
"CompetitivePressure": "float, competitive pressure factor affecting growth [0.5, 1.5]",
|
29 |
+
"SurvivalTime": "integer, time step at collapse (200 if survived full simulation)",
|
30 |
+
"ShocksExperienced": "integer, count of economic shock events experienced",
|
31 |
+
"FinalResourceBalance": "float, remaining resource balance at simulation end",
|
32 |
+
"InvestmentReturn": "float, cumulative bonus resources from investment events",
|
33 |
+
"PolicyImpact": "float, cumulative resource impact from policy changes",
|
34 |
+
"RollingVolatility": "float, standard deviation of resource levels normalized by mean (over simulation steps)",
|
35 |
+
"BaseRiskExposure": "float, calculated as GrowthRate*(1 - Efficiency)",
|
36 |
+
"WeightedRiskExposure": "float, BaseRiskExposure weighted by (1 + RollingVolatility)",
|
37 |
+
"SustainabilityScore": "float, calculated as (SurvivalTime/num_time_steps)*Efficiency",
|
38 |
+
"ReinforcementSignal": "float, SustainabilityScore minus WeightedRiskExposure",
|
39 |
+
"RiskManagementScore": "float, (SurvivalTime/(ShocksExperienced+1))*Efficiency",
|
40 |
+
"AdaptationIndex": "float, product of InnovationFactor and MarketAdaptability",
|
41 |
+
"RelativeAdaptationIndex": "float, for FOM: AdaptationIndex divided by global average IGM AdaptationIndex; for IGM: AdaptationIndex divided by global average FOM AdaptationIndex",
|
42 |
+
"ResourceVolatilityIndex": "float, absolute difference between StartingResources and FinalResourceBalance divided by StartingResources"
|
43 |
+
},
|
44 |
+
"intended_use": "Designed for reinforcement learning and economic forecasting, this dataset enables models to perform autonomous calculations on the trade-offs between aggressive expansion and sustainable operations. The derived metrics act as reinforcement signals, helping AI models recognize stability via lower volatility and superior adaptation relative to competitive benchmarks."
|
45 |
+
}
|