Net2Net icon indicating copy to clipboard operation
Net2Net copied to clipboard

Net2Net implementation on PyTorch for any possible vision layers.

Results 4 Net2Net issues
Sort by recently updated
recently updated
newest added

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,...