Spaces:
Running
Running
Add files using upload-large-folder tool
Browse files- Dockerfile +3 -4
Dockerfile
CHANGED
|
@@ -55,9 +55,8 @@ COPY training/ ./training/
|
|
| 55 |
# PIXI.js frontend
|
| 56 |
COPY third_party/CityFlow/frontend/ ./third_party/CityFlow/frontend/
|
| 57 |
|
| 58 |
-
# City data
|
| 59 |
-
COPY data/
|
| 60 |
-
COPY data/generated/city_0002/ ./data/generated/city_0002/
|
| 61 |
|
| 62 |
# Artifacts
|
| 63 |
COPY artifacts/dqn_shared/best_validation.pt \
|
|
@@ -67,7 +66,7 @@ COPY artifacts/district_llm_adapter_v3/main_run/adapter/ \
|
|
| 67 |
|
| 68 |
RUN mkdir -p /app/results/replays
|
| 69 |
|
| 70 |
-
ENV DATA_DIR=/app/data/
|
| 71 |
ENV REPLAY_ROOT=/app/results/replays
|
| 72 |
ENV CHECKPOINT_PATH=/app/artifacts/dqn_shared/best_validation.pt
|
| 73 |
ENV DISTRICT_LLM_ADAPTER_PATH=/app/artifacts/district_llm_adapter_v3/main_run/adapter
|
|
|
|
| 55 |
# PIXI.js frontend
|
| 56 |
COPY third_party/CityFlow/frontend/ ./third_party/CityFlow/frontend/
|
| 57 |
|
| 58 |
+
# City data (all bundled cities)
|
| 59 |
+
COPY data/bundled/ ./data/bundled/
|
|
|
|
| 60 |
|
| 61 |
# Artifacts
|
| 62 |
COPY artifacts/dqn_shared/best_validation.pt \
|
|
|
|
| 66 |
|
| 67 |
RUN mkdir -p /app/results/replays
|
| 68 |
|
| 69 |
+
ENV DATA_DIR=/app/data/bundled
|
| 70 |
ENV REPLAY_ROOT=/app/results/replays
|
| 71 |
ENV CHECKPOINT_PATH=/app/artifacts/dqn_shared/best_validation.pt
|
| 72 |
ENV DISTRICT_LLM_ADAPTER_PATH=/app/artifacts/district_llm_adapter_v3/main_run/adapter
|