pathnet-pytorch
pathnet-pytorch copied to clipboard
PyTorch implementation of PathNet: Evolution Channels Gradient Descent in Super Neural Networks
Hi! I'm trying to run the program but always have an error: Traceback (most recent call last): File "main.py", line 258, in main() File "main.py", line 190, in main visualizer.set_fixed(best_path,...
First of all, thank you for the implementation. But I have this error with '--no-graph --cifar-svhn' > THCudaCheck FAIL file=/opt/conda/conda-bld/pytorch_1512378360668/work/torch/lib/THC/generic/THCTensorMath.cu line=26 error=59 : device-side assert triggered Traceback (most recent call...
@kimhc6028 , Thanks for your well programmed repo. I think following line of code should be modified. It just seems a typo. https://github.com/kimhc6028/pathnet-pytorch/blob/master/pathnet.py#L94 ```y = F.relu(self.fc3[path[1][0]](x)) --> y = F.relu(self.fc3[path[2][0]](x))...