Net2Net
Net2Net copied to clipboard
Net2Net implementation on PyTorch for any possible vision layers.
the colon (:) needs to be removed
In line 199 of net2net.py, c = m.kernel_size[0] // 2 + 1 This is one error. It should be c = m.kernel_size[0] // 2
Hi Eren! I'm trying to run your train_mnist.py example, and found that the loss isn't decreasing during training for the wider student net. PS Initially the code didn't run on...
Hi Eren! When trying to run your train_mnist.py script, I ran into the follwoing error: ``` > Wider Student training ... Traceback (most recent call last): File "train_mnist.py", line 159,...