fix broken train_network argument display_iters in the GUI#2865
fix broken train_network argument display_iters in the GUI#2865n-poulsen merged 1 commit intopytorch_dlcfrom
train_network argument display_iters in the GUI#2865Conversation
|
I have a error with this parameter. So, could you tell me which way is it? "displayiters" or "display_iters"? Using rc7 on MacOS. I had display_iters = 1000 parameter in my train_network() call, I started running my code without changing anything and I got error about "display_iters". I go to documentation and see that it is now "displayiters". Ok, but the example in the same help page uses "display_iters = 1000". Very confusing. So, I get rid of the parameter in the train_network() call and change pytorch_config.yaml to "displayiters: 1000". Get an error about Changed "displayiters" back to "display_iters" in the PyTorch_config.yaml. So, which way is it? |
|
Hello, Sorry this is indeed confusing, I agree with you. Basically:
To summarize:
Thanks for spotting the error in the |
|
Thank you for the thorough explanation! |
Fixes the
displayitersparameter whentrain_networkis called from the GUI.