I'm trying to convert a Caffe model to tensorflow. In Caffe my convolutions are initialized like this:
weight_filler {
type: "gaussian"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
How can I get the same initialization in Tensorflow?