Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions examples/cifar10/cifar10_full_solver.prototxt
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# reduce learning rate after 120 epochs (60000 iters) by factor 0f 10
# then another factor of 10 after 10 more epochs (5000 iters)

# The training protocol buffer definition
train_net: "cifar10_full_train.prototxt"
# The testing protocol buffer definition
test_net: "cifar10_full_test.prototxt"
# The train/test net protocol buffer definition
net: "cifar10_full_train_test.prototxt"
# test_iter specifies how many forward passes the test should carry out.
# In the case of CIFAR10, we have test batch size 100 and 100 test iterations,
# covering the full 10,000 testing images.
Expand Down
6 changes: 2 additions & 4 deletions examples/cifar10/cifar10_full_solver_lr1.prototxt
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# reduce learning rate after 120 epochs (60000 iters) by factor 0f 10
# then another factor of 10 after 10 more epochs (5000 iters)

# The training protocol buffer definition
train_net: "cifar10_full_train.prototxt"
# The testing protocol buffer definition
test_net: "cifar10_full_test.prototxt"
# The train/test net protocol buffer definition
net: "cifar10_full_train_test.prototxt"
# test_iter specifies how many forward passes the test should carry out.
# In the case of CIFAR10, we have test batch size 100 and 100 test iterations,
# covering the full 10,000 testing images.
Expand Down
6 changes: 2 additions & 4 deletions examples/cifar10/cifar10_full_solver_lr2.prototxt
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# reduce learning rate after 120 epochs (60000 iters) by factor 0f 10
# then another factor of 10 after 10 more epochs (5000 iters)

# The training protocol buffer definition
train_net: "cifar10_full_train.prototxt"
# The testing protocol buffer definition
test_net: "cifar10_full_test.prototxt"
# The train/test net protocol buffer definition
net: "cifar10_full_train_test.prototxt"
# test_iter specifies how many forward passes the test should carry out.
# In the case of CIFAR10, we have test batch size 100 and 100 test iterations,
# covering the full 10,000 testing images.
Expand Down
174 changes: 0 additions & 174 deletions examples/cifar10/cifar10_full_train.prototxt

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
name: "CIFAR10_full_test"
name: "CIFAR10_full"
layers {
name: "cifar"
type: DATA
top: "data"
top: "label"
data_param {
source: "cifar10-leveldb/cifar-train-leveldb"
mean_file: "mean.binaryproto"
batch_size: 100
}
include: { phase: TRAIN }
}
layers {
name: "cifar"
type: DATA
Expand All @@ -9,6 +21,7 @@ layers {
mean_file: "mean.binaryproto"
batch_size: 100
}
include: { phase: TEST }
}
layers {
name: "conv1"
Expand Down Expand Up @@ -172,6 +185,7 @@ layers {
bottom: "ip1"
bottom: "label"
top: "accuracy"
include: { phase: TEST }
}
layers {
name: "loss"
Expand Down
6 changes: 2 additions & 4 deletions examples/cifar10/cifar10_quick_solver.prototxt
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
# reduce the learning rate after 8 epochs (4000 iters) by a factor of 10

# The training protocol buffer definition
train_net: "cifar10_quick_train.prototxt"
# The testing protocol buffer definition
test_net: "cifar10_quick_test.prototxt"
# The train/test net protocol buffer definition
net: "cifar10_quick_train_test.prototxt"
# test_iter specifies how many forward passes the test should carry out.
# In the case of MNIST, we have test batch size 100 and 100 test iterations,
# covering the full 10,000 testing images.
Expand Down
6 changes: 2 additions & 4 deletions examples/cifar10/cifar10_quick_solver_lr1.prototxt
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
# reduce the learning rate after 8 epochs (4000 iters) by a factor of 10

# The training protocol buffer definition
train_net: "cifar10_quick_train.prototxt"
# The testing protocol buffer definition
test_net: "cifar10_quick_test.prototxt"
# The train/test net protocol buffer definition
net: "cifar10_quick_train_test.prototxt"
# test_iter specifies how many forward passes the test should carry out.
# In the case of MNIST, we have test batch size 100 and 100 test iterations,
# covering the full 10,000 testing images.
Expand Down
Loading