Spaces:
Sleeping
Sleeping
Upload .dockerignore with huggingface_hub
Browse files- .dockerignore +5 -2
.dockerignore
CHANGED
|
@@ -14,7 +14,8 @@ docs/*.png
|
|
| 14 |
.hf_private/
|
| 15 |
.DS_Store
|
| 16 |
artifacts/
|
| 17 |
-
*.zip
|
|
|
|
| 18 |
*.json
|
| 19 |
**/*.json
|
| 20 |
*.txt
|
|
@@ -25,4 +26,6 @@ README_archived.md
|
|
| 25 |
llm_stderr.log
|
| 26 |
pre_validation.sh
|
| 27 |
test_docker_step.sh
|
| 28 |
-
trained_models/
|
|
|
|
|
|
|
|
|
| 14 |
.hf_private/
|
| 15 |
.DS_Store
|
| 16 |
artifacts/
|
| 17 |
+
# Root-only: do not use *.zip — that excludes trained_models/ppo_hard_multi_100k.zip from the HF Space image.
|
| 18 |
+
/*.zip
|
| 19 |
*.json
|
| 20 |
**/*.json
|
| 21 |
*.txt
|
|
|
|
| 26 |
llm_stderr.log
|
| 27 |
pre_validation.sh
|
| 28 |
test_docker_step.sh
|
| 29 |
+
# Exclude heavy local checkpoints under trained_models/, but keep the bundled SB3 zip for Gradio PPO.
|
| 30 |
+
trained_models/**
|
| 31 |
+
!trained_models/ppo_hard_multi_100k.zip
|