"Python"
私はカフェでレイヤーを作成し、"myLayer"
それをネットで使用して、次のtrain_val.prototxt
ようにレイヤーを挿入します。
layer {
name: "my_py_layer"
type: "Python"
bottom: "in"
top: "out"
python_param {
module: "my_module_name"
layer: "myLayer"
}
include { phase: TRAIN } # THIS IS THE TRICKY PART!
}
今、私のレイヤーTRAIN
はネットの ing フェーズにのみ参加してい
ますが、私のレイヤーの機能でそれをどのように知ることができsetup
ますか??
class myLayer(caffe.Layer):
def setup(self, bottom, top):
# I want to know here what is the phase?!!
...
PS、
この質問を「Caffe Users」Google グループにも投稿しました。何かありましたら更新します。