Skip to content

Commit

Permalink
Upgrade torch(1.0.* -> 1.1.*) and torchvision(0.2.* -> 0.3.*) (#726)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sungjun.Kim authored and rkooo567 committed Jun 9, 2019
1 parent ddea39d commit b78bbdb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/ClipperDevDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN pip install -q cloudpickle==0.5.* pyzmq==17.0.* requests==2.20.0 subprocess3
xgboost==0.7.* jsonschema==2.6.* psutil==5.4.* prometheus_client keras==2.2.*

# Install PyTorch
RUN pip install -q torch==1.0.* torchvision==0.2.*
RUN pip install -q torch==1.1.* torchvision==0.3.*

# Install kubectl
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/ClipperPy35DevDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN pip3 install cloudpickle==0.5.* pyzmq==17.0.* requests==2.20.0 scikit-learn=
xgboost==0.7.* urllib3==1.24.* keras==2.2.* # CI is broken when urllib3's version is 1.25.1. Delete urllib3==1.24.* later once version compatibility is stabilized
# Install PyTorch
RUN pip3 install torch==1.0.* torchvision==0.2.*
RUN pip3 install torch==1.1.* torchvision==0.3.*
# Install kubectl
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/PyTorchContainerDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM ${REGISTRY}/${RPC_VERSION}-rpc:${CODE_VERSION}

LABEL maintainer="Dan Crankshaw <dscrankshaw@gmail.com>"

RUN pip install -q torch==1.0.* torchvision==0.2.*
RUN pip install -q torch==1.1.* torchvision==0.3.*

COPY containers/python/pytorch_container.py containers/python/container_entry.sh /container/

Expand Down

0 comments on commit b78bbdb

Please sign in to comment.