You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running python main_preprocess.py fma, the following error occurs:
FileNotFoundError: File b'dataset_download/fma/fma_metadata/tracks.csv' does not exist
Following is the full error message.
Traceback (most recent call last):
File "main_preprocess.py", line 95, in <module>
main(sys.argv[1])
File "main_preprocess.py", line 77, in main
prep_fma_small()
File "main_preprocess.py", line 46, in prep_fma_small
tracks = pd.read_csv(os.path.join(DIR_FMA_CSV, 'tracks.csv'), index_col=0, header=[0, 1])
File "/home/kehops/dl4mir/venv/lib/python3.5/site-packages/pandas/io/parsers.py", line 705, in parser_f
return _read(filepath_or_buffer, kwds)
File "/home/kehops/dl4mir/venv/lib/python3.5/site-packages/pandas/io/parsers.py", line 445, in _read
parser = TextFileReader(filepath_or_buffer, **kwds)
File "/home/kehops/dl4mir/venv/lib/python3.5/site-packages/pandas/io/parsers.py", line 814, in __init__
self._make_engine(self.engine)
File "/home/kehops/dl4mir/venv/lib/python3.5/site-packages/pandas/io/parsers.py", line 1045, in _make_engine
self._engine = CParserWrapper(self.f, **self.options)
File "/home/kehops/dl4mir/venv/lib/python3.5/site-packages/pandas/io/parsers.py", line 1684, in __init__
self._reader = parsers.TextReader(src, **kwds)
File "pandas/_libs/parsers.pyx", line 391, in pandas._libs.parsers.TextReader.__cinit__
File "pandas/_libs/parsers.pyx", line 710, in pandas._libs.parsers.TextReader._setup_parser_source
FileNotFoundError: File b'dataset_download/fma/fma_metadata/tracks.csv' does not exist
Should I download tracks.csv from separate source?
The text was updated successfully, but these errors were encountered:
When running
python main_preprocess.py fma
, the following error occurs:FileNotFoundError: File b'dataset_download/fma/fma_metadata/tracks.csv' does not exist
Following is the full error message.
Should I download
tracks.csv
from separate source?The text was updated successfully, but these errors were encountered: