Publish StockForge optimizer configuration
Browse files- README.md +43 -0
- config.json +29 -0
README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- inventory-optimization
|
| 5 |
+
- predict-then-optimize
|
| 6 |
+
- operations-research
|
| 7 |
+
- chronos-2
|
| 8 |
+
library_name: stockforge
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# StockForge Optimizer Config
|
| 12 |
+
|
| 13 |
+
Configuration manifest for the StockForge retail decision intelligence engine.
|
| 14 |
+
|
| 15 |
+
## Forecast Model
|
| 16 |
+
|
| 17 |
+
- **Base model:** [amazon/chronos-2](https://huggingface.co/amazon/chronos-2)
|
| 18 |
+
- **Quantile levels:** P10, P50, P90
|
| 19 |
+
- **Horizon:** 14 days
|
| 20 |
+
|
| 21 |
+
## Optimizers
|
| 22 |
+
|
| 23 |
+
| Optimizer | Description |
|
| 24 |
+
|-----------|-------------|
|
| 25 |
+
| `deterministic_inventory_milp` | Point forecast (P50) → reorder/safety stock MILP |
|
| 26 |
+
| `stochastic_quantile_milp` | Expected cost over quantile scenarios |
|
| 27 |
+
| `robust_quantile_milp` | Worst-case cost minimization |
|
| 28 |
+
|
| 29 |
+
## Solvers
|
| 30 |
+
|
| 31 |
+
Pyomo + HiGHS, scipy.stats fallback
|
| 32 |
+
|
| 33 |
+
## Simulation
|
| 34 |
+
|
| 35 |
+
SimPy discrete-event inventory validation
|
| 36 |
+
|
| 37 |
+
## No Training Required
|
| 38 |
+
|
| 39 |
+
This repository contains optimizer configuration and benchmark metadata only. Forecasting uses the pretrained Chronos-2 foundation model.
|
| 40 |
+
|
| 41 |
+
## License
|
| 42 |
+
|
| 43 |
+
MIT
|
config.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "optimizer_config",
|
| 3 |
+
"version": "1.0.0",
|
| 4 |
+
"product": "StockForge",
|
| 5 |
+
"forecast_model": "amazon/chronos-2",
|
| 6 |
+
"forecast_model_url": "https://huggingface.co/amazon/chronos-2",
|
| 7 |
+
"source_dataset": "t4tiana/store-sales-time-series-forecasting",
|
| 8 |
+
"supplement_dataset": "Jacoblian/RetailOpt-190",
|
| 9 |
+
"no_training_required": true,
|
| 10 |
+
"optimizers": [
|
| 11 |
+
"deterministic_inventory_milp",
|
| 12 |
+
"stochastic_quantile_milp",
|
| 13 |
+
"robust_quantile_milp"
|
| 14 |
+
],
|
| 15 |
+
"solvers": [
|
| 16 |
+
"Pyomo",
|
| 17 |
+
"HiGHS",
|
| 18 |
+
"scipy.stats"
|
| 19 |
+
],
|
| 20 |
+
"simulation": "SimPy",
|
| 21 |
+
"quantile_levels": [
|
| 22 |
+
0.1,
|
| 23 |
+
0.5,
|
| 24 |
+
0.9
|
| 25 |
+
],
|
| 26 |
+
"decision_horizon_days": 14,
|
| 27 |
+
"best_decision_policy": "deterministic_p50",
|
| 28 |
+
"forecast_decoupling_rate": 0.6
|
| 29 |
+
}
|