Skip to content

Commit

Permalink
fcn-8s: fix deploy def
Browse files Browse the repository at this point in the history
master edition of `Crop` requires parameters (as defined by coord_map)
in net spec
  • Loading branch information
shelhamer committed Apr 22, 2016
1 parent b5f0584 commit 11be628
Showing 1 changed file with 12 additions and 18 deletions.
30 changes: 12 additions & 18 deletions voc-fcn8s/deploy.prototxt
Original file line number Diff line number Diff line change
Expand Up @@ -428,15 +428,6 @@ layer {
bottom: "fc6"
top: "fc6"
}
layer {
name: "drop6"
type: "Dropout"
bottom: "fc6"
top: "fc6"
dropout_param {
dropout_ratio: 0.5
}
}
layer {
name: "fc7"
type: "Convolution"
Expand All @@ -463,15 +454,6 @@ layer {
bottom: "fc7"
top: "fc7"
}
layer {
name: "drop7"
type: "Dropout"
bottom: "fc7"
top: "fc7"
dropout_param {
dropout_ratio: 0.5
}
}
layer {
name: "score_fr"
type: "Convolution"
Expand Down Expand Up @@ -531,6 +513,10 @@ layer {
bottom: "score_pool4"
bottom: "upscore2"
top: "score_pool4c"
crop_param {
axis: 2
offset: 5
}
}
layer {
name: "fuse_pool4"
Expand Down Expand Up @@ -582,6 +568,10 @@ layer {
bottom: "score_pool3"
bottom: "upscore_pool4"
top: "score_pool3c"
crop_param {
axis: 2
offset: 9
}
}
layer {
name: "fuse_pool3"
Expand Down Expand Up @@ -614,4 +604,8 @@ layer {
bottom: "upscore8"
bottom: "data"
top: "score"
crop_param {
axis: 2
offset: 31
}
}

0 comments on commit 11be628

Please sign in to comment.