Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Vectors as labels #2047
Comments
|
See also #1522 and cited indirection layer. But probably this code it is far from the HEAD. |
grib0ed0v
commented
Mar 6, 2015
|
Hi, RawanMG. Currently I'm working on multivariate regression problem and I found that caffe does not support multivariate labels. Moreover, all data layers are designed to store label as integer. The possible solution to your problem is to create your own data layer or store training data directly to blobs. |
|
Use HDF5 input layer |
|
Duplicate of #1698 (vector / matrix, it's all the same). No, most Caffe layers support matrix and vector data and losses such as An example of multivariate regression / multi-label classification will be On Fri, Mar 6, 2015 at 2:23 AM, AlexGruzdev notifications@github.com
|
|
For modeling questions ask on the caffe-users group. |
RawanMG commentedMar 5, 2015
Hi,
I'm using Caffe for regression and I need to set the labels to be an N-dim vector instead of using a discrete set of labels. Is there a way of doing this without modifying the source code?
I understand that HDF5 Layer can be used to input that N-dim label vector, but I'm not so sure about vectorizing the image in that case.