Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump art version #1062

Merged
merged 1 commit into from
May 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added docker/.build.sh.swp
Binary file not shown.
2 changes: 1 addition & 1 deletion docker/pytorch-deepspeech/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ RUN /opt/conda/bin/pip install hydra-core==1.0.6 \
soundfile \
sox \
warpctc-pytorch==0.2.1+torch16.cuda102 \
adversarial-robustness-toolbox==1.6.0 --no-cache-dir
adversarial-robustness-toolbox==1.6.1 --no-cache-dir


########## PyTorch 1 Deep Speech Dev #################
Expand Down
2 changes: 1 addition & 1 deletion docker/pytorch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ RUN /opt/conda/bin/conda install pytorch==1.7 \
/opt/conda/bin/conda clean --all
RUN /opt/conda/bin/pip install --no-cache-dir \
tensorflow-gpu==2.4.1 \
adversarial-robustness-toolbox==1.6.0
adversarial-robustness-toolbox==1.6.1

########## PyTorch 1 Dev #################

Expand Down
2 changes: 1 addition & 1 deletion docker/tf1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ WORKDIR /tmp/models/research
RUN protoc object_detection/protos/*.proto --python_out=.
RUN cp object_detection/packages/tf1/setup.py .
RUN /opt/conda/bin/pip install .
RUN /opt/conda/bin/pip install --no-cache-dir adversarial-robustness-toolbox==1.6.0
RUN /opt/conda/bin/pip install --no-cache-dir adversarial-robustness-toolbox==1.6.1

# Note: this is necessary until the following TF issue is resolved: https://github.com/tensorflow/models/issues/9706
RUN /opt/conda/bin/pip install --no-cache-dir numpy==1.19.2
Expand Down
2 changes: 1 addition & 1 deletion docker/tf2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ WORKDIR /tmp/models/research
RUN protoc object_detection/protos/*.proto --python_out=.
RUN cp object_detection/packages/tf2/setup.py .
RUN /opt/conda/bin/pip install .
RUN /opt/conda/bin/pip install --no-cache-dir adversarial-robustness-toolbox==1.6.0
RUN /opt/conda/bin/pip install --no-cache-dir adversarial-robustness-toolbox==1.6.1

WORKDIR /workspace

Expand Down