Fix issue generating split on Windows
#2
by
xacer
- opened
The separator used by glob.glob
is os.path.sep
, which is usually /
but sometimes \
(Windows). This contribution changes the expected separator from /
to os.path.sep
and fixes a bug on Windows where the script fails to generate the train and test splits.
Ok thanks!
HugoLaurencon
changed pull request status to
merged