Skip to content
Snippets Groups Projects
Commit 3263b17d authored by Franck Dary's avatar Franck Dary
Browse files

prepareExperiment.sh no longer delete expPath if its already exists, allowing...

prepareExperiment.sh no longer delete expPath if its already exists, allowing to resume previous training
parent 2e385498
No related branches found
No related tags found
No related merge requests found
......@@ -36,8 +36,11 @@ if [ ! -d "$TEMPLATENAME" ]; then
fi
mkdir -p bin
rm -rf bin/$EXPNAME
if [ ! -d "bin/$EXPNAME" ]; then
cp -r $TEMPLATENAME bin/$EXPNAME
cp -r "data" bin/$EXPNAME/.
echo "CORPUS="$UD_ROOT"/"$LANG > bin/$EXPNAME/config
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment