From 4a213cc806f3c9f931dc368ba6d4db916ada8b1f Mon Sep 17 00:00:00 2001 From: Tasko Olevski <tasko.olevski@sdsc.ethz.ch> Date: Mon, 31 May 2021 10:27:30 +0200 Subject: [PATCH] move instuctions to another readme so that original readme can be used for submission status --- INSTRUCTIONS.md | 16 ++++++++++++++++ README.md | 16 ---------------- 2 files changed, 16 insertions(+), 16 deletions(-) create mode 100644 INSTRUCTIONS.md diff --git a/INSTRUCTIONS.md b/INSTRUCTIONS.md new file mode 100644 index 000000000..9f4915d0b --- /dev/null +++ b/INSTRUCTIONS.md @@ -0,0 +1,16 @@ +# S2S AI Competition Scoring Image + +Image used to calculate the scores for the S2S AI Competition + +## Testing + +```bash +pipenv install +pipenv run python scoring/scoring_script.py ML_prediction_2020.nc +``` + +Alternatively you can use the docker image itself +```bash +docker build -t scoring-image . +docker run -ti --rm -v $PWD:/work scoring-image pipenv run python scoring/scoring_script.py /work/ML_prediction_2020.nc +``` diff --git a/README.md b/README.md index 9f4915d0b..e69de29bb 100644 --- a/README.md +++ b/README.md @@ -1,16 +0,0 @@ -# S2S AI Competition Scoring Image - -Image used to calculate the scores for the S2S AI Competition - -## Testing - -```bash -pipenv install -pipenv run python scoring/scoring_script.py ML_prediction_2020.nc -``` - -Alternatively you can use the docker image itself -```bash -docker build -t scoring-image . -docker run -ti --rm -v $PWD:/work scoring-image pipenv run python scoring/scoring_script.py /work/ML_prediction_2020.nc -``` -- GitLab