├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── config └── config.yaml ├── main.py ├── pyproject.toml └── uv.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArturTanona/grpo_unsloth_docker/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArturTanona/grpo_unsloth_docker/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArturTanona/grpo_unsloth_docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArturTanona/grpo_unsloth_docker/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArturTanona/grpo_unsloth_docker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArturTanona/grpo_unsloth_docker/HEAD/README.md -------------------------------------------------------------------------------- /config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArturTanona/grpo_unsloth_docker/HEAD/config/config.yaml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArturTanona/grpo_unsloth_docker/HEAD/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArturTanona/grpo_unsloth_docker/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArturTanona/grpo_unsloth_docker/HEAD/uv.lock --------------------------------------------------------------------------------