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

When searching for .w2v file don't exclude symlinks

parent bae2ef9c
No related branches found
No related tags found
No related merge requests found
...@@ -48,7 +48,7 @@ fi ...@@ -48,7 +48,7 @@ fi
TRAIN=$(find $CORPUS -type f -name '*train*.conllu') TRAIN=$(find $CORPUS -type f -name '*train*.conllu')
DEV=$(find $CORPUS -type f -name '*dev*.conllu') DEV=$(find $CORPUS -type f -name '*dev*.conllu')
TEST=$(find $CORPUS -type f -name '*test*.conllu') TEST=$(find $CORPUS -type f -name '*test*.conllu')
W2V=$(find $CORPUS -type f -name '*.w2v') W2V=$(find $CORPUS -name '*.w2v')
if has_space "$TRAIN" || has_space "$DEV" || has_space "$TEST"; if has_space "$TRAIN" || has_space "$DEV" || has_space "$TEST";
then then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment