-
Notifications
You must be signed in to change notification settings - Fork 18.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vectors as labels #2047
Comments
See also #1522 and cited indirection layer. But probably this code it is far from the HEAD. |
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. |
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.
The text was updated successfully, but these errors were encountered: