We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fae81df commit 3b6a991Copy full SHA for 3b6a991
source/examples/rapids-sagemaker-higgs/Dockerfile
@@ -2,9 +2,11 @@ ARG RAPIDS_IMAGE
2
3
FROM $RAPIDS_IMAGE as rapids
4
5
-RUN apt-get update && apt-get install -y --no-install-recommends build-essential
6
-
7
-RUN source activate rapids && pip install sagemaker-training
+# add sagemaker-training-toolkit [ requires build tools ], flask [ serving ], and dask-ml
+RUN apt-get update && apt-get install -y --no-install-recommends build-essential \
+ && source activate rapids \
8
+ && pip3 install sagemaker-training cupy-cuda115 flask \
9
+ && pip3 install --upgrade protobuf
10
11
# Copies the training code inside the container
12
COPY rapids-higgs.py /opt/ml/code/rapids-higgs.py
0 commit comments