File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
tutorials/05 - Deep Residual Network Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1- # Implementation of https://arxiv.org/pdf/1512.03385.pdf
2- # See section 4.2 for model architecture on CIFAR-10
1+ # Implementation of https://arxiv.org/pdf/1512.03385.pdf/
2+ # See section 4.2 for model architecture on CIFAR-10.
3+ # Some part of the code was referenced below.
4+ # https://github.com/pytorch/vision/blob/master/torchvision/models/resnet.py
35import torch
46import torch .nn as nn
57import torchvision .datasets as dsets
Original file line number Diff line number Diff line change 1- # Implementation of https://arxiv.org/pdf/1512.03385.pdf
2- # See section 4.2 for model architecture on CIFAR-10
1+ # Implementation of https://arxiv.org/pdf/1512.03385.pdf.
2+ # See section 4.2 for model architecture on CIFAR-10.
3+ # Some part of the code was referenced below.
4+ # https://github.com/pytorch/vision/blob/master/torchvision/models/resnet.py
35import torch
46import torch .nn as nn
57import torchvision .datasets as dsets
You can’t perform that action at this time.
0 commit comments