File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
cmd/suggestion/skopt/v1beta1
examples/v1beta1/trial-images/mxnet-mnist Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
grpcio == 1.41.1
2
2
cloudpickle == 0.5.6
3
- numpy >= 1.20.0
3
+ # This is a workaround to avoid the following error.
4
+ # AttributeError: module 'numpy' has no attribute 'int'
5
+ # See more: https://github.com/numpy/numpy/pull/22607
6
+ numpy == 1.23.5
4
7
scikit-learn >= 0.24.0
5
8
scipy >= 1.5.4
6
9
forestci == 0.3
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ RUN apt-get -y update \
20
20
RUN if [ "${TARGETARCH}" = "arm64" ]; then \
21
21
/opt/mxnet-mnist/install-arm-performance-libraries.sh; \
22
22
fi
23
- RUN pip install mxnet==1.9.1
23
+ RUN pip install -r requirements.txt
24
24
RUN chgrp -R 0 /opt/mxnet-mnist \
25
25
&& chmod -R g+rwX /opt/mxnet-mnist
26
26
Original file line number Diff line number Diff line change
1
+ mxnet == 1.9.1
2
+ # This is a workaround to avoid the following error.
3
+ # AttributeError: module 'numpy' has no attribute 'bool'
4
+ # See more: https://github.com/numpy/numpy/pull/22607
5
+ numpy == 1.23.5
You can’t perform that action at this time.
0 commit comments