I'm running my first job and am having issues with my script loading the mounted data.
The data is visible when I run floyd data status from the data directory where I mounted the data from.
My floyd run command is as follows:
floyd run --env tensorflow-2.1 --data matsuobasho/datasets/jazz_collection/1:data --follow "python lstm.py 2000"
In the lstm.py file, I've specified the path of the data to be:
for file in glob.glob("floyd/input/data/*.mid"):
I was following the mounting tutorial, which states that all the mounted files are stored under floyd/input. I must be specifying something incorrectly since the data is not being uploaded.