Few questions about Mahout code organization and javadoc

2013-06-13 Thread Abhinav M Kulkarni
Hi, I have recently started exploring codebase for Mahout and I have questions about the code organization and javadocs. Some of these questions might stem out of my ignorance about Mahout and code structure in maven-based projects. 1. Why isn't there single src/main/java directory? 2. I

Hadoop version for latest Mahout

2013-06-12 Thread Abhinav M Kulkarni
Hi, I downloaded Mahout on my laptop and wanted to know which version of Hadoop it is compatible with. In the past interface of Hadoop's Mapper and Reducer classes changed and now they have come up with new Hadoop architecture called YARN. Can somebody let me know what (latest) version of Hadoop

Release Notes for Previous Versions

2012-08-23 Thread Abhinav M Kulkarni
only find release notes for versions till 0.5. Thanks, Abhinav M Kulkarni

Re: Error in KMeansDriver

2012-08-05 Thread Abhinav M Kulkarni
In fact I just checked that there is no Vector class/Interface under org.apache.mahout.math. I don't understand this. On 08/04/2012 10:30 PM, Abhinav M Kulkarni wrote: I have added all the jars (including hadoop-core and mahout-math) to the Eclipse project. In fact I added all the jars

Re: Error in KMeansDriver

2012-08-05 Thread Abhinav M Kulkarni
Kulkarni abhinavkulka...@gmail.com wrote: I have added all the jars (including hadoop-core and mahout-math) to the Eclipse project. In fact I added all the jars in mahout installation directory. On 08/04/2012 09:54 PM, Abhinav M Kulkarni wrote: Hi, I have a small snippet of code which gives me error

Error in KMeansDriver

2012-08-04 Thread Abhinav M Kulkarni
Hi, I have a small snippet of code which gives me error. Points written in the input directory are of the type VectorWritable (value), key being LongWritable. Clusters written to part-0 file are of the type Kluster (value), key being Text. Both these files are of SequenceFile format.

Re: Error in KMeansDriver

2012-08-04 Thread Abhinav M Kulkarni
I have added all the jars (including hadoop-core and mahout-math) to the Eclipse project. In fact I added all the jars in mahout installation directory. On 08/04/2012 09:54 PM, Abhinav M Kulkarni wrote: Hi, I have a small snippet of code which gives me error. Points written in the input

Unable to find KMeans Cluster class

2012-08-01 Thread Abhinav M Kulkarni
Cluster is defined as an interface and not as a class. Is there any version mismatch or something? Or I need to import Cluster class from some other package that I am not aware of? Thanks, Abhinav M Kulkarni

Re: Unable to find KMeans Cluster class

2012-08-01 Thread Abhinav M Kulkarni
the replacement code is if so but someone else here likely does. On Wed, Aug 1, 2012 at 9:20 PM, Abhinav M Kulkarni abhinavkulka...@gmail.com wrote: Hi, I have following code snippet from the book 'Hadoop in Action': Vector vec = vectors.get(i); Cluster cluster = new Cluster(vec, i, new