File size: 2,137 Bytes
b35bfcd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a809ed3
 
b35bfcd
 
a809ed3
 
b35bfcd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b42f6f5
 
 
 
 
 
 
b35bfcd
 
 
 
 
 
 
 
 
 
 
 
08db87b
b35bfcd
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---

license: mit
task_categories:
- reinforcement-learning
tags:
- inventory-management
- supply-chain
- reinforcement-learning
- operations-research
- gymnasium
pretty_name: gym-invmgmt trained agent weights
---


# gym-invmgmt trained agent weights

This dataset repository hosts the trained agent checkpoints and normalization statistics for the `gym-invmgmt` benchmark release.

Contents are stored under `data/models/` and are intended to be downloaded into the same path in the GitHub repository.

## Related repositories

- Paper: [arXiv:2605.11355](https://arxiv.org/abs/2605.11355)
- PyPI package: [gym-invmgmt](https://pypi.org/project/gym-invmgmt/)
- Final paper/code repository: [r2barati/gym-invmgmt-paper](https://github.com/r2barati/gym-invmgmt-paper)
- Standalone Gymnasium environment package: [r2barati/gym-invmgmt](https://github.com/r2barati/gym-invmgmt)

## Included

- Stable-Baselines3 PPO/SAC checkpoints (`.zip`)
- Imitation-learning / DAgger / GNN-IL checkpoints (`.zip`)
- Matching VecNormalize statistics (`.pkl`)
- `models_manifest.json` with SHA-256 checksums

## Not included

- Third-party Qwen GGUF LLM weights are not re-hosted here. Use the original model source or place the expected file at `data/models/qwen2.5-1.5b-instruct-q4_k_m.gguf` for optional LLM reruns.
- Public retail datasets are not re-hosted here. Use the repository download script and source-specific licenses.

## Download

From the GitHub repository root:

```bash

bash download_weights.sh

```

or with Python:

```python

from huggingface_hub import snapshot_download

snapshot_download(
    repo_id='rezabarati/gym-invmgmt-weights',
    repo_type='dataset',
    local_dir='.',
    allow_patterns=['data/models/*', 'models_manifest.json'],
)
```

## Citation

If you use these trained checkpoints, please cite:

```bibtex
@misc{barati2026gyminvmgmt,
  title = {gym-invmgmt: An Open Benchmarking Framework for Inventory Management Methods},
  author = {Barati, Reza and Hu, Qinmin Vivian},
  year = {2026},
  eprint = {2605.11355},
  archivePrefix = {arXiv},
  primaryClass = {cs.LG}
}
```