elasticsearch-taste
elasticsearch-taste copied to clipboard
Mahout Taste-based recommendation on Elasticsearch
I was using elasticsearch 7.3. Firstly when installing from zip file it was showing error in plugin descriptor. and when I fixed it and tried requesting by `{index_name}/_taste/` it is...
Is it possible to override old preference if user_id and item_id matches by a new inserted preference automatically?
Would it be possible to give a query instead of index name alone when generating the recommendations? For example, in the code below: curl -XPOST localhost:9200/_river/movielens_items_from_user/_meta -d '{ "type": "taste",...
Hello, Using your exemple of a multiple insert ([here](https://github.com/codelibs/elasticsearch-taste#insert-preference-value)) does not work. Only the first element is inserted in ES. I'm trying either ` curl -XPOST localhost:9200/sample/_taste/event -d "@dataSample.txt" `...
I've installed elasticsearch-taste(1.6.0-SNAPSHOT) with elasticsearch(1.6.1) When I run first step it's failed to create index cat u.data | awk '{system("curl -XPOST localhost:9200/movielens/_taste/event?pretty -d \"{\"user\":{\"id\":" $1 "},\"item\":{\"id\":" $2 "},\"value\":" $3 ",\"timestamp\":"...
Thanks for the great plugin. I have questions. 1. When will similarity calculations run? - Having read the docs, it seems to be at the same time as create record...
I tried to install the plugin on ES 1.6, but I'm getting "java.lang.UnsupportedClassVersionError: org/codelibs/elasticsearch/taste/TastePlugin : Unsupported major.minor version 52.0"
@marevol I have installed elasticsearch-taste(0.4.0) with elasticsearch(1.4.2) I run first three step successfully 1. curl -o u.data http://files.grouplens.org/datasets/movielens/ml-100k/u.data 2. cat u.data | awk '{system("curl -XPOST localhost:9200/movielens/_taste/event?pretty -d \"{\\"user\\":{\\"id\\":" $1 "},\\"item\\":{\\"id\\":"...
Hello, I'm trying out the taste-plugin using Elasticsearch 1.1.1 and thus the version 0.1 of the plugin. Using the sample code in home README.md file after download the u.data file....