Open MohammedMehdiTBER opened 2 years ago
It's very likely training. You can easily check if it's training by calling tf.get_logger().setLevel('DEBUG')
before the tf.estimator.train_and_evaluate(estimator, train_spec, evaluation_spec)
call.
You can try adding the --verbose parameter when using the training command, for example: spleeter train -p configs/musdb_config.json -d E:\AI_Study\spleeter --verbose. This will give you detailed information about the training process. I got stuck because the train_max_steps parameter in musdb_config.json was too large, and since I’m using a CPU, the steps are increasing very slowly. Try reducing the train_max_steps to see if it resolves the issue.
Description
Spleeter Training stucks but spleeter separating works.
Step to reproduce
Installed FFmpeg using PATH variable Installed Spleeter using python3.9 pip Downloaded MuseDB uncompressed version Set 22Khz (F=2048) in the config files. Downloaded CSV files from this respository and put them in their proper places. Extracted MuseDB to a folder named configs containing the two CSVs and musedb.config file Started the action using the spleeter train command
Output
Continued to load the musedb like a loop until It stucks at: INFO:spleeter:Audio data loaded successfully
Environment
Additional context