YuzeBai commited on
Commit
eccc4ee
·
verified ·
1 Parent(s): 59c00a9

Bump openmhc pin to 92925ac (Track-1 live substrate reducer)

Browse files
Files changed (1) hide show
  1. 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 both the
18
- # imputation (Track 2) and forecasting (Track 3) leaderboards. Installed WITHOUT
19
- # deps so the heavy base deps (torch, xgboost, ...) are skipped — only the slim
20
- # runtime set in requirements.txt is used. Pinned to a commit (current main
21
- # HEAD) for reproducibility + reliable Docker-layer cache busting; bump this
22
- # when the reducers change. main@991caf5 adds the unified forecasting per-user
23
- # substrate reducers (PR #35).
24
  RUN pip install --no-cache-dir --no-deps \
25
- "openmhc @ git+https://github.com/AshleyLab/myheartcounts-dataset@991caf54fc728b8f0b53873f3bc589ac3cb3c1bd"
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