-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
46 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,6 @@ multigpu-trained | |
*-b*.prototxt | ||
*tmp* | ||
*Models* | ||
*.caffemodel | ||
*.solverstate | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# The train/test net protocol buffer definition | ||
net: "alexnet-bBATCHSIZE.prototxt" | ||
base_lr: 0.001 | ||
|
||
lr_policy: "fixed" | ||
max_iter: MAXITER | ||
display: 1 | ||
solver_mode: DEVICE | ||
net: "train_val.prototxt" | ||
test_iter: 1000 | ||
test_interval: 1000 | ||
base_lr: 0.01 | ||
lr_policy: "step" | ||
gamma: 0.1 | ||
stepsize: 100000 | ||
display: 20 | ||
max_iter: 450000 | ||
momentum: 0.9 | ||
|
||
# covering the full 10,000 testing images. | ||
test_iter: 100 | ||
# Carry out testing every 2 training epochs. | ||
test_interval: TESTINTERVAL | ||
weight_decay: 0.0005 | ||
snapshot: 10000 | ||
snapshot_prefix: "caffe_alexnet_train" | ||
solver_mode: GPU |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
mpirun -np 16 -machinefile cluster16 cntk configFile=alexnet_imagenet2.cntk deviceId=auto minibatchSize=256 maxEpochs=40 parallelTrain=true command=Train | ||
#mpirun -np 16 -machinefile cluster16 cntk configFile=alexnet_imagenet2.cntk deviceId=auto minibatchSize=256 maxEpochs=40 parallelTrain=true command=Train | ||
#cntk configFile=alexnet_imagenet2.cntk deviceId=auto minibatchSize=256 command=Test |