codewithsk commented on issue #11176: Failed to find any forward convolution algorithm. URL: https://github.com/apache/incubator-mxnet/issues/11176#issuecomment-403572646 Update: I've managed to find a rather bizarre workaround to this issue. I was facing this issue when I was trying to do a `model.save_checkpoint()`. However, if I caught the exception and saved it in the except block, it seemed to work flawlessly ```python try: mod.save_checkpoint(model_save_path, epoch) except Exception as excep: print("Exception caught: ", excep) mod.save_checkpoint(model_save_path, epoch) ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
