Skip to content

Commit 9bd673b

Browse files
committed
更新test()函数
1 parent 336c7c7 commit 9bd673b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CIFAR10_code/nets/DenseNet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,4 +155,4 @@ def test():
155155
net = net.to(device)
156156
summary(net,(1,3,32,32))
157157

158-
test()
158+
# test()

CIFAR10_code/nets/MobileNetv1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,4 @@ def test():
8484
net = net.to(device)
8585
summary(net,(2,3,32,32))
8686

87-
test()
87+
# test()

CIFAR10_code/nets/MobileNetv2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,4 @@ def test():
101101
net = net.to(device)
102102
summary(net,(2,3,32,32))
103103

104-
test()
104+
# test()

CIFAR10_code/nets/ResNet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,4 +171,4 @@ def test():
171171
net = net.to(device)
172172
summary(net,(2,3,32,32))
173173

174-
test()
174+
# test()

CIFAR10_code/nets/VGG.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ def test():
6262
net = net.to(device)
6363
summary(net,(2,3,32,32))
6464

65-
test()
65+
# test()

0 commit comments

Comments
 (0)