Skip to content
Snippets Groups Projects
tensorboard.sh 199 B
Newer Older
Daniel Ecer's avatar
Daniel Ecer committed
#!/bin/bash

source prepare-shell.sh

if [ $USE_CLOUD == true ]; then
  PORT=6007
else
  PORT=6006
fi

Daniel Ecer's avatar
Daniel Ecer committed
LOGDIR=$TRAIN_MODEL_PATH/
echo "log dir: $LOGDIR"
tensorboard --logdir="${LOGDIR}" --port=$PORT