Closed KinWaiCheuk closed 4 years ago
I haven't seen those errors, but only similar ones when I load a model from pickled checkpoints. I suspect for some reasons Python is not loading the source code of pytorch (Sequential
and LSTM
) and onsets-and-frames (ConvStack
) from your file system.
It should be harmless though. Source code (accessed via inspect.getsourcefile
) is only used for safety check.
As for the training, we train on 500,000 iterations, and each iteration contains 8 spectrograms. Am I right?
On my system, it shows that 70 hours are required to finish 500,000 iterations. Is it a reasonable speed? Or is it too slow?
I am asking the warnings because I am not sure if the training time is affected by it or not.
The speed looks fine. It took about a week for me to train for 1M iterations on a single 1080 Ti.
During training, I get tons of warning for
Sequential
,ConvStack
,LSTM
and etc. The warning message is like thisIs it normal?
I created a new conda environment to run this code and installed all the dependencies via
requirements.txt
.