It seems from the code, the datasets have to be in a .tar.gz format for the train/validation/test to work. We need to pass the data as a datamodule as seen in main.py line 378 "result = trainer.test(network, datamodule=dm)". Is it possible to just load the .ckpt model from memory and perform a direct prediction on a new .wav file ? Or is the only way to test recording the files and preparing a .tar.gz evaluation shard?
It seems from the code, the datasets have to be in a .tar.gz format for the train/validation/test to work. We need to pass the data as a datamodule as seen in main.py line 378 "result = trainer.test(network, datamodule=dm)". Is it possible to just load the .ckpt model from memory and perform a direct prediction on a new .wav file ? Or is the only way to test recording the files and preparing a .tar.gz evaluation shard?