├── .env.example ├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── pyproject.toml ├── run_train.py └── uv.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajansagarwal/compression/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .venv/ 3 | __pycache__/ -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajansagarwal/compression/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajansagarwal/compression/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajansagarwal/compression/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajansagarwal/compression/HEAD/run_train.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajansagarwal/compression/HEAD/uv.lock --------------------------------------------------------------------------------