forked from mlcommons/training
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[single_stage_detector] evaluation, warmup and lr decay on epoch boun…
…daries (mlcommons#322) * [single_stage_detector] Dockerfile copy sources after pip install * [single_stage_detector] epoch based evaluation, warmup and lr decay resolves issues mlcommons#290 and mlperf/training_policies/mlcommons#210
- Loading branch information
Showing
4 changed files
with
62 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
FROM pytorch/pytorch:1.0.1-cuda10.0-cudnn7-runtime | ||
|
||
# Set working directory | ||
WORKDIR /mlperf | ||
WORKDIR /mlperf/ssd | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y python3-tk python-pip && \ | ||
apt-get install -y numactl | ||
|
||
RUN pip install --upgrade pip | ||
|
||
# Copy SSD code | ||
WORKDIR /mlperf | ||
COPY . . | ||
# Necessary pip packages | ||
COPY requirements.txt requirements.txt | ||
RUN pip install -r requirements.txt | ||
RUN python3 -m pip install pycocotools==2.0.0 | ||
|
||
WORKDIR /mlperf/ssd | ||
# Copy SSD code | ||
COPY ssd . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters