caffe-yolo icon indicating copy to clipboard operation
caffe-yolo copied to clipboard

why add multi_label_ in Batch?

Open argman opened this issue 9 years ago • 2 comments

Hi, thanks for the code. I have two questions 1. in code

template <typename Dtype>
class Batch {
 public:
  Blob<Dtype> data_, label_;
  // vector<Blob<Dtype> > multi_label_;
  vector<shared_ptr<Blob<Dtype> > > multi_label_;
};

what does multi_label_ for ?

  1. you have
vector<int> sides_;

in BoxDataLayer, and in yolo,should it be only one side (7) ?

argman avatar Nov 18 '16 09:11 argman

As i want to merge your code, I find there are many changes to the base class..

argman avatar Nov 18 '16 11:11 argman

@argman I designed the code to make it compatible with several output feature maps, which are of different size(e.g. 14, 7). But I only use single side which is default 7 in my experiments.

Harick1 avatar Nov 18 '16 16:11 Harick1