-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix v0.2.0 bug and update released note
- Loading branch information
1 parent
a1a14f6
commit cada54c
Showing
5 changed files
with
45 additions
and
6 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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
ARG BASE_CONTAINER=jupyter/scipy-notebook:ubuntu-18.04 | ||
FROM $BASE_CONTAINER | ||
|
||
LABEL MAINTAINER="TinyMS Authors" | ||
|
||
# Set the default jupyter token with "tinyms" | ||
RUN sh -c '/bin/echo -e "tinyms\ntinyms\n" | jupyter notebook password' | ||
|
||
# Install TinyMS cpu whl package | ||
RUN pip install --no-cache-dir numpy==1.17.5 tinyms==0.2.1 && \ | ||
fix-permissions "${CONDA_DIR}" |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
ARG BASE_CONTAINER=swr.cn-south-1.myhuaweicloud.com/mindspore/mindspore-cpu:1.2.0 | ||
FROM $BASE_CONTAINER | ||
|
||
LABEL MAINTAINER="TinyMS Authors" | ||
|
||
# Install base tools | ||
RUN apt-get update | ||
|
||
# Install TinyMS cpu whl package | ||
RUN pip install --no-cache-dir tinyms==0.2.1 |
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