Skip to content

Commit

Permalink
Support local non-containerized execution. closes JDACS4C-IMPROVE/Sin…
Browse files Browse the repository at this point in the history
  • Loading branch information
j-woz committed Sep 15, 2023
1 parent f0d6c73 commit 1aa31bf
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Pilot1/Uno/train.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@ set -eu
# arg 3 CANDLE_CONFIG

### Path to your CANDLEized model's main Python script###
CANDLE_MODEL=/usr/local/Benchmarks/Pilot1/Uno/uno_baseline_keras2.py
CANDLE_MODEL=uno_baseline_keras2.py
IMPROVE_MODEL_DIR=${IMPROVE_MODEL_DIR:-$( dirname -- "$0" )}
CANDLE_MODEL=${IMPROVE_MODEL_DIR}/${CANDLE_MODEL}

if [ ! -f ${CANDLE_MODEL} ] ; then
echo No such file ${CANDLE_MODEL}
exit 404
fi

# Make copy of $# before shifts
ARGC=$#
Expand Down

0 comments on commit 1aa31bf

Please sign in to comment.