-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert accidental changes from previous revert
- Loading branch information
Showing
101 changed files
with
8,247 additions
and
1,036 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
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
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
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
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,41 @@ | ||
# Copyright 2018 The Kubeflow Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
FROM ubuntu:16.04 | ||
|
||
RUN apt-get update -y && apt-get install --no-install-recommends -y -q ca-certificates python-dev python-setuptools wget unzip | ||
|
||
RUN easy_install pip | ||
|
||
RUN pip install google-api-python-client==1.6.2 | ||
RUN pip install pandas==0.18.1 | ||
RUN pip install scikit-learn==0.19.1 | ||
RUN pip install scipy==1.0.0 | ||
RUN pip install tensorflow==1.5 | ||
|
||
RUN wget -nv https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.zip && \ | ||
unzip -qq google-cloud-sdk.zip -d tools && \ | ||
rm google-cloud-sdk.zip && \ | ||
tools/google-cloud-sdk/install.sh --usage-reporting=false \ | ||
--path-update=false --bash-completion=false \ | ||
--disable-installation-options && \ | ||
tools/google-cloud-sdk/bin/gcloud -q components update \ | ||
gcloud core gsutil && \ | ||
tools/google-cloud-sdk/bin/gcloud config set component_manager/disable_update_check true && \ | ||
touch /tools/google-cloud-sdk/lib/third_party/google.py | ||
|
||
ADD build /ml | ||
|
||
ENV PATH $PATH:/tools/node/bin:/tools/google-cloud-sdk/bin |
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,25 @@ | ||
#!/bin/bash -e | ||
# Copyright 2018 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
mkdir -p ./build | ||
rsync -arvp "../confusion_matrix/src"/ ./build/ | ||
rsync -arvp "../roc/src"/ ./build/ | ||
|
||
cp ../../license.sh ./build | ||
cp ../../third_party_licenses.csv ./build | ||
|
||
docker build -t ml-pipeline-local-base . | ||
rm -rf ./build |
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,20 @@ | ||
# Copyright 2018 The Kubeflow Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
FROM ml-pipeline-local-base | ||
|
||
RUN mkdir /usr/licenses && \ | ||
/ml/license.sh /ml/third_party_licenses.csv /usr/licenses | ||
|
||
ENTRYPOINT ["python", "/ml/confusion_matrix.py"] |
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,57 @@ | ||
#!/bin/bash -e | ||
# Copyright 2018 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
while getopts ":hp:t:i:" opt; do | ||
case "${opt}" in | ||
h) echo "-p: project name" | ||
echo "-t: tag name" | ||
echo "-i: image name. If provided, project name and tag name are not necessary" | ||
exit | ||
;; | ||
p) PROJECT_ID=${OPTARG} | ||
;; | ||
t) TAG_NAME=${OPTARG} | ||
;; | ||
i) IMAGE_NAME=${OPTARG} | ||
;; | ||
\? ) echo "Usage: cmd [-p] project [-t] tag [-i] image" | ||
exit | ||
;; | ||
esac | ||
done | ||
|
||
LOCAL_IMAGE_NAME=ml-pipeline-local-confusion-matrix | ||
|
||
if [ -z "${PROJECT_ID}" ]; then | ||
PROJECT_ID=$(gcloud config config-helper --format "value(configuration.properties.core.project)") | ||
fi | ||
|
||
if [ -z "${TAG_NAME}" ]; then | ||
TAG_NAME=$(date +v%Y%m%d)-$(git describe --tags --always --dirty)-$(git diff | shasum -a256 | cut -c -6) | ||
fi | ||
|
||
# build base image | ||
pushd ../base | ||
./build_image.sh | ||
popd | ||
|
||
docker build -t ${LOCAL_IMAGE_NAME} . | ||
if [ -z "${IMAGE_NAME}" ]; then | ||
docker tag ${LOCAL_IMAGE_NAME} gcr.io/${PROJECT_ID}/${LOCAL_IMAGE_NAME}:${TAG_NAME} | ||
docker push gcr.io/${PROJECT_ID}/${LOCAL_IMAGE_NAME}:${TAG_NAME} | ||
else | ||
docker tag ${LOCAL_IMAGE_NAME} "${IMAGE_NAME}" | ||
docker push "${IMAGE_NAME}" | ||
fi |
Oops, something went wrong.