How can I include mahout 0.9 with hadoop 2.3 in my project?

2014-12-15 Thread Lee S
Hi all: I use gradle to management dependencies in my project. dependencies { compile 'org.apache.mahout:mahout-core:0.9' } When gradle build , mahout with hadoop 1.2.1 will be downloaded. Do I need to compile mahout with hadoop 2.3.0 and then include it into my project locally?

Re: How can I include mahout 0.9 with hadoop 2.3 in my project?

2014-12-15 Thread jyotiranjan panda
Hi, mahout-0.9 is compatible with hadoop-1.2.1 Regards Jyoti Ranjan Panda On Mon, Dec 15, 2014 at 2:33 PM, Lee S wrote: > > Hi all: > I use gradle to management dependencies in my project. > > dependencies { > compile 'org.apache.mahout:mahout-core:0.9' > } > > When gradle build , mahout w

Re: How can I include mahout 0.9 with hadoop 2.3 in my project?

2014-12-15 Thread Marko Dinic
Hello, Sorry for bumping like this, but I have a very similar question, can I use Mahout 0.9 with Hadoop 0.20.2? Thanks On Mon 15 Dec 2014 10:09:56 AM CET, jyotiranjan panda wrote: Hi, mahout-0.9 is compatible with hadoop-1.2.1 Regards Jyoti Ranjan Panda On Mon, Dec 15, 2014 at 2:33 PM, Le

Question about choice of a recommender

2014-12-15 Thread Pasmanik, Paul
Hi, I am trying to figure out what recommender or a combination of other techniques to use. I have a system where a user is presented with a list of pre-defined (max 50 products) when he/she is viewing a video clip from a finite (not huge) set. The relationship between video clip and what pro

回复: How can I include mahout 0.9 with hadoop 2.3 in my project?

2014-12-15 Thread 孙小超
Hi,you should do git clone first,and use maven command "mvn -DskipTests=true clean package‍". Then maven will download hadoop 2.2.0 jars and package the right mahout jar files which can run on hadoop 2.x . -- 原始邮件 -- 发件人: "Marko Dinic";; 发送时间: 2014年12月15日(星期一)

Re: How can I include mahout 0.9 with hadoop 2.3 in my project?

2014-12-15 Thread Lee S
I compiled mahout with hadop 2.3.0 as following: 1. get the trunck code git clone https://github.com/apache/mahout.git 2. mvn clean install -Dhadoop2 -Dhadoop2.version=2.3.0 -DskipTests=true and all build is successful. 3. find hadoop in code base but no hadoop-2.3.0 comes out, only hado