Spaces:
Running
Running
Bump openmhc pin to 92925ac (Track-1 live substrate reducer)
Browse files- Dockerfile +8 -8
Dockerfile
CHANGED
|
@@ -14,15 +14,15 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 14 |
RUN apt-get update && apt-get install -y --no-install-recommends git \
|
| 15 |
&& rm -rf /var/lib/apt/lists/*
|
| 16 |
|
| 17 |
-
# Canonical point-flow reducers (skill / rank / fair skill) for
|
| 18 |
-
#
|
| 19 |
-
# deps so the heavy base deps (torch, xgboost, ...) are skipped — only the
|
| 20 |
-
# runtime set in requirements.txt is used. Pinned to a commit
|
| 21 |
-
#
|
| 22 |
-
#
|
| 23 |
-
#
|
| 24 |
RUN pip install --no-cache-dir --no-deps \
|
| 25 |
-
"openmhc @ git+https://github.com/AshleyLab/myheartcounts-dataset@
|
| 26 |
|
| 27 |
COPY app.py leaderboard_compute.py logo.png ./
|
| 28 |
|
|
|
|
| 14 |
RUN apt-get update && apt-get install -y --no-install-recommends git \
|
| 15 |
&& rm -rf /var/lib/apt/lists/*
|
| 16 |
|
| 17 |
+
# Canonical point-flow reducers (skill / rank / fair skill) for the imputation
|
| 18 |
+
# (Track 2), forecasting (Track 3), and predictive (Track 1) leaderboards. Installed
|
| 19 |
+
# WITHOUT deps so the heavy base deps (torch, xgboost, ...) are skipped — only the
|
| 20 |
+
# slim runtime set in requirements.txt is used. Pinned to a commit for reproducibility
|
| 21 |
+
# + reliable Docker-layer cache busting; bump this when the reducers change. @92925ac
|
| 22 |
+
# adds the Track-1 live substrate reducer (reduce_substrate_to_point); it is on branch
|
| 23 |
+
# fix/leaderboard-point-estimate — repin to main once merged.
|
| 24 |
RUN pip install --no-cache-dir --no-deps \
|
| 25 |
+
"openmhc @ git+https://github.com/AshleyLab/myheartcounts-dataset@92925ac1220f0edda98a56cf0651a5d92219c43b"
|
| 26 |
|
| 27 |
COPY app.py leaderboard_compute.py logo.png ./
|
| 28 |
|