Skip to content

Commit be20911

Browse files
committed
reference added"
1 parent 3afd026 commit be20911

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

tutorials/05 - Deep Residual Network/main-gpu.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
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
35
import torch
46
import torch.nn as nn
57
import torchvision.datasets as dsets

tutorials/05 - Deep Residual Network/main.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
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
35
import torch
46
import torch.nn as nn
57
import torchvision.datasets as dsets

0 commit comments

Comments
 (0)