Skip to content

Commit

Permalink
demo.sh now runs the python evaluate by defualt.
Browse files Browse the repository at this point in the history
  • Loading branch information
Russell committed Sep 2, 2015
1 parent 8b9bb2b commit 38183ca
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion demo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ if [[ $? -eq 0 ]]
$BUILDDIR/glove -save-file $SAVE_FILE -threads $NUM_THREADS -input-file $COOCCURRENCE_SHUF_FILE -x-max $X_MAX -iter $MAX_ITER -vector-size $VECTOR_SIZE -binary $BINARY -vocab-file $VOCAB_FILE -verbose $VERBOSE
if [[ $? -eq 0 ]]
then
matlab -nodisplay -nodesktop -nojvm -nosplash < ./eval/read_and_evaluate.m 1>&2
if [ "$1" = 'matlab' ]; then
matlab -nodisplay -nodesktop -nojvm -nosplash < ./eval/matlab/read_and_evaluate.m 1>&2
else
python eval/python/evaluate.py
fi
fi
fi
fi
Expand Down

0 comments on commit 38183ca

Please sign in to comment.