-
Notifications
You must be signed in to change notification settings - Fork 18.6k
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
Support Word2Vec tasks #1361
Comments
I'm trying to use caffe to modeling sentence, do you have any suggestion? |
@zyfnhct That's great. I do the same thing. |
@pl8787 I'm going to implement the model introduced in A Convolutional Neural Network for Modelling Sentences. I want to combine the model in the paper and the skip-gram model. But I don't know any other open project can do it easy, I want to try caffe . If you know other better project ,please tell me , thanks. |
@zyfnhct I don't know too. But I think implement some layer in caffe is the easest way to do. |
I think that there is possible to use Caffe for tasks other than vision (as it is stated in the Caffe paper). You just need to find a way to represent your data as a blob. I have not worked on such tasks, but there might be others who have done something like that, so have a look at the Caffe users mailing list. Also, the Caffe Tutorial might be useful if you try to do that by yourself. If you manage to define a network for word tasks, maybe you would like to update the information on the tutorial (or make an example) on how to use Caffe for these kind of tasks. |
That's the key. There are speech and haptics projects that encode their data as blobs and run Caffe networks. |
I wouldn't use a blob, cause it's a 10-100x overhead, so you won't be able to learn on large amounts of data. |
See the |
@shelhamer , Thanks, looks like it. |
Does caffe support Work2Vec tasks or some tasks on text?
The text was updated successfully, but these errors were encountered: