Skip to content

Commit

Permalink
Switched order of two layers for simpler diff with untuned file
Browse files Browse the repository at this point in the history
Untuned file is in models/bvlc_reference_caffenet/train_val.prototxt.
  • Loading branch information
panmari committed Nov 9, 2015
1 parent e050f36 commit 50a44b0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions models/finetune_flickr_style/train_val.prototxt
Original file line number Diff line number Diff line change
Expand Up @@ -369,13 +369,6 @@ layer {
}
}
}
layer {
name: "loss"
type: "SoftmaxWithLoss"
bottom: "fc8_flickr"
bottom: "label"
top: "loss"
}
layer {
name: "accuracy"
type: "Accuracy"
Expand All @@ -386,3 +379,10 @@ layer {
phase: TEST
}
}
layer {
name: "loss"
type: "SoftmaxWithLoss"
bottom: "fc8_flickr"
bottom: "label"
top: "loss"
}

0 comments on commit 50a44b0

Please sign in to comment.