Multi label regression in Caffe

后端 未结 1 1548
眼角桃花
眼角桃花 2020-12-29 10:53

i am extracting 30 facial keypoints (x,y) from an input image as per kaggle facialkeypoints competition.

How do i setup caffe to run a regression and produce 30 dime

相关标签:
1条回答
  • 2020-12-29 11:43

    i found it :)

    I replaced the SOFTLAYER to EUCLIDEAN_LOSS function and changed the number of outputs. It worked.

    layers {
      name: "loss"
      type: EUCLIDEAN_LOSS
      bottom: "ip1"
      bottom: "label"
      top: "loss"
    }
    

    HINGE_LOSS is also another option.

    0 讨论(0)
提交回复
热议问题