Closed loretoparisi closed 6 years ago
@loretoparisi Hi, this seems to be an issue with split in your operation system. Check if the solution in the following page helps: https://apple.stackexchange.com/questions/138785/d-option-for-split-is-illegal-on-os-x-10-9
@ledw yes it was! I had to change split
to default POSIX
options:
split -l 1500 ${TEMP_FILE} ${OUTPUT_FILE}
mv "${DATADIR}/${DATASET}/user_artistsaa" "${DATADIR}/${DATASET}/user_artists.train"
mv "${DATADIR}/${DATASET}/user_artistsab" "${DATADIR}/${DATASET}/user_artists.test"
I'm using the example
recomm_user_artists.sh
. I get two errorsInput file cannot be opened!
andModel file cannot be opened for loading!
.The temporary directory contents
So it seems the
.train
and.test
files are missing. The error was due to the errorsplit: illegal option -- d
:The whole console logging: