Michael Rabinovich commited on
Commit ·
aa1e886
1
Parent(s): a80542f
Dockerfile: bump CADGENBENCH_SHA to 36ac6b4 (Hub-aware paths.py)
Browse filescadgenbench commit 36ac6b4 adds the Hub-dataset resolution branch to
common/paths.py (snapshot_download from $CADGENBENCH_DATA_REPO /
$CADGENBENCH_DATA_GT_REPO when set, falling back to the existing
local/bundled chain otherwise).
The Space's Settings variables CADGENBENCH_DATA_REPO and
CADGENBENCH_DATA_GT_REPO are set in lockstep with this bump
(HuggingAI4Engineering/cadgenbench-data and
HuggingAI4Engineering/cadgenbench-data-gt respectively), so the
runtime now resolves fixtures from the Hub dataset repos instead of
the wheel-bundled fallback.
GT dataset is private; the existing HF_TOKEN Space secret provides
read access (already set during Step 5 for the submissions dataset).
No new secret required.
- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -44,7 +44,7 @@ RUN pip install --no-cache-dir playwright \
|
|
| 44 |
|
| 45 |
# cadgenbench from the Public GitHub repo, pinned to a commit. Bumping
|
| 46 |
# CADGENBENCH_SHA is the one-line path to picking up a new cadgenbench.
|
| 47 |
-
ARG CADGENBENCH_SHA=
|
| 48 |
RUN pip install --no-cache-dir \
|
| 49 |
"cadgenbench @ git+https://github.com/huggingface/cadgenbench.git@${CADGENBENCH_SHA}"
|
| 50 |
|
|
|
|
| 44 |
|
| 45 |
# cadgenbench from the Public GitHub repo, pinned to a commit. Bumping
|
| 46 |
# CADGENBENCH_SHA is the one-line path to picking up a new cadgenbench.
|
| 47 |
+
ARG CADGENBENCH_SHA=36ac6b4
|
| 48 |
RUN pip install --no-cache-dir \
|
| 49 |
"cadgenbench @ git+https://github.com/huggingface/cadgenbench.git@${CADGENBENCH_SHA}"
|
| 50 |
|