sidharth manohar
2016-06-04 10:41:59 UTC
Hi all,
I've been trying to assemble the FCN32s network(*this one
<http://people.eecs.berkeley.edu/%7Ejonlong/long_shelhamer_fcn.pdf>*) by J
Long et al. in Theano . I downloaded the caffe model from *here
<https://github.com/shelhamer/fcn.berkeleyvision.org>*. I exported the
weights of all the layers from caffe to theano. It is possible to replicate
the same results till the 'score_fr' layer. What I cannot implement is the
Deconvolution Layer. From the prototext file of the Caffe Model, the
deconvolution layer is:
layer {
name: "upscore"
type: "Deconvolution"
bottom: "score_fr"
top: "upscore"
param {
lr_mult: 0
}
convolution_param {
num_output: 21
bias_term: false
kernel_size: 64
stride: 32
}
}
.
So, I have the filter corresponding to this layer( of size (21,21,64,64) ).
Is there a way to implement this layer in Theano?
I've been trying to assemble the FCN32s network(*this one
<http://people.eecs.berkeley.edu/%7Ejonlong/long_shelhamer_fcn.pdf>*) by J
Long et al. in Theano . I downloaded the caffe model from *here
<https://github.com/shelhamer/fcn.berkeleyvision.org>*. I exported the
weights of all the layers from caffe to theano. It is possible to replicate
the same results till the 'score_fr' layer. What I cannot implement is the
Deconvolution Layer. From the prototext file of the Caffe Model, the
deconvolution layer is:
layer {
name: "upscore"
type: "Deconvolution"
bottom: "score_fr"
top: "upscore"
param {
lr_mult: 0
}
convolution_param {
num_output: 21
bias_term: false
kernel_size: 64
stride: 32
}
}
.
So, I have the filter corresponding to this layer( of size (21,21,64,64) ).
Is there a way to implement this layer in Theano?
--
---
You received this message because you are subscribed to the Google Groups "theano-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to theano-users+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
---
You received this message because you are subscribed to the Google Groups "theano-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to theano-users+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.