Re: LDATopic

2011-11-27 Thread jun li
I had encounter the same situation, only topic 0, no ohter topics. bug? On Mon, Nov 28, 2011 at 11:28 AM, bish maten wrote: > LDATopic is only giving topic 0. What about other topics? and how to get > those? I have used the following command > > mahout ldatopics -i mahout-work/abc/abc-lda/state-2

Re: mahout command problems

2011-11-27 Thread Lance Norskog
Independent of maven: you are using an old version of Mahout. You may find that some of the programs work better in the trunk than in the 0.5 release. Also, the wiki documentation generally moves forward with the current trunk and so it may be confusing.

LDATopic

2011-11-27 Thread bish maten
LDATopic is only giving topic 0. What about other topics? and how to get those? I have used the following command mahout ldatopics -i mahout-work/abc/abc-lda/state-20 -d mahout-work/abc/abc-out-seqdir-sparse-lda/dictionary.file-0 -dt sequencefile (there were no errors reported and command worke

Re: Sequential Pattern Mining

2011-11-27 Thread Ted Dunning
There are several good ways to deal with this. The idea of super-products which are composite features that are derived from history is a good one. I would recommend that you limit the number of such super features by first finding which products cooccur within a reasonable time window more than

Re: mahout command problems

2011-11-27 Thread Grant Ingersoll
mvn install is the better command for this stuff. "mvn install -DskipTests" On Nov 27, 2011, at 11:59 AM, Isabel Drost wrote: > On 27.11.2011 bish maten wrote: >> mvn compile done under subdirectory of mahout-distribution. > > Did you also run a mvn package from the mahout root directory? > >

Re: ItemSimilarity example

2011-11-27 Thread Sean Owen
There's no magic here, it's just suggesting you create a bunch of those ItemItemSimilarity objects, one for each item-item similarity that you know about. Collection correlations = new ArrayList(); correlations.add(new GenericItemSimilarity.ItemItemSimilarity(1, 2, 0.5)); ... On Sun, Nov 27, 2011

Re: org.apache.maven.plugins:maven-antrun-plugin:1.6:run grief, copy-dependencies and unpack goals not supported by m2e, importing mahout into Eclipse

2011-11-27 Thread Sean Owen
Agree, this is all specific to Eclipse. The Maven build works from the command line. I don't use Eclipse and don't like it much, myself; IntelliJ seems to have no trouble with Maven integration. I always use the command line tools though. On Sun, Nov 27, 2011 at 4:38 PM, Isabel Drost wrote: > On

Re: mahout command problems

2011-11-27 Thread Isabel Drost
On 27.11.2011 bish maten wrote: > mvn compile done under subdirectory of mahout-distribution. Did you also run a mvn package from the mahout root directory? Isabel signature.asc Description: This is a digitally signed message part.

Re: ItemSimilarity example

2011-11-27 Thread Isabel Drost
On 27.11.2011 bish maten wrote: > https://cwiki.apache.org/MAHOUT/recommender-documentation.html has > following example > > // Construct the list of pre-computed correlations > Collection correlations = ...; > > how is actual construction done in above line ( correlations = ... ; ) If I un

Re: Sequential Pattern Mining

2011-11-27 Thread Isabel Drost
On 27.11.2011 Nishant Chandra wrote: > I want to identify rules such as: after acquiring product 1 and then > product 3, customers have an increased likelihood > (75%) of purchasing product 4 next. What is your goal with discovering these rules? Assuming what you want is implementing a feature th

Re: Scalable graph clustering implementation

2011-11-27 Thread Isabel Drost
First of all, your findings sound very interesting - thanks for sharing. On 26.11.2011 Bae, Jae Hyeon wrote: > I want to contribute my implementation to Mahout if it is available and > allowed. Please let me know how I can follow up. The easiest starting point would be our how to contribute wi

Re: org.apache.maven.plugins:maven-antrun-plugin:1.6:run grief, copy-dependencies and unpack goals not supported by m2e, importing mahout into Eclipse

2011-11-27 Thread Isabel Drost
On 27.11.2011 Mike Spreitzer wrote: > I presume you are speaking to the issue of the goals not supported. Note > that I also have another problem, "No marketplace entries found to handle > maven-antrun-plugin:1.6:run in Eclipse". Any clues about that one? To me that sounds like an Eclipse proble

Re: output of Recommender

2011-11-27 Thread Sebastian Schelter
The evaluation randomly splits the dataset into training and test set. You see different results for different splits. --sebastian On 27.11.2011 15:30, bish maten wrote: > the Evaluation Result is changing each time it is run with mvn exec command. > Why is the result changing each time it run? E

Re: output of Recommender

2011-11-27 Thread bish maten
the Evaluation Result is changing each time it is run with mvn exec command. Why is the result changing each time it run? Evaluation result varies from 1.0, 0.66, 1.2, ... INFO: Unable to recommend in 2 cases Nov 27, 2011 6:22:43 AM org.slf4j.impl.JCLLoggerAdapter info INFO: Evaluation result:

Re: mahout command problems

2011-11-27 Thread bish maten
> > now gives following error > > no HADOOP_HOME set, running locally > SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". > SLF4J: Defaulting to no-operation (NOP) logger implementation > SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further > details. > Exception

output of Recommender

2011-11-27 Thread bish maten
the output from GroupLensRecommenderEvaluatorRunner gives following output (given a input rating file) Evaluation Result 1.09 and Unable to recommend in two cases

Re: mahout command problems

2011-11-27 Thread Sean Owen
Yes I said 'mvn package' not compile On Nov 27, 2011 12:36 PM, "bish maten" wrote: > mvn compile done Build was successful (see below). > > Same problem (mahout-distribution-0.5$ bin/mahout > no HADOOP_HOME set, running locally > Exception in thread "main" java.lang.NoClassDefFoundError: > org/ap

Re: mahout command problems

2011-11-27 Thread bish maten
mvn compile done Build was successful (see below). Same problem (mahout-distribution-0.5$ bin/mahout no HADOOP_HOME set, running locally Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/mahout/driver/MahoutDriver Caused by: java.lang.ClassNotFoundException: org.apache.mahout.d

Re: mahout command problems

2011-11-27 Thread Sean Owen
I think you need mvn package to create artifacts but that is just a first simple guess. On Nov 27, 2011 12:14 PM, "bish maten" wrote: > mvn compile done under subdirectory of mahout-distribution. >

Re: mahout command problems

2011-11-27 Thread bish maten
mvn compile done under subdirectory of mahout-distribution.

Re: mahout command problems

2011-11-27 Thread Sean Owen
Did you build Mahout? On Nov 27, 2011 12:03 PM, "bish maten" wrote: > I can run the examples under the mahout-distribution directory fine. > However cannot run the bin/mahout command, gives following errors. > > mvn exec runs ok fine with mainClass (standard syntax) given (ran few > example class

mahout command problems

2011-11-27 Thread bish maten
I can run the examples under the mahout-distribution directory fine. However cannot run the bin/mahout command, gives following errors. mvn exec runs ok fine with mainClass (standard syntax) given (ran few example classes from cf.taste and they run fine) Following is command that gives error mah

ItemSimilarity example

2011-11-27 Thread bish maten
https://cwiki.apache.org/MAHOUT/recommender-documentation.html has following example // Construct the list of pre-computed correlations Collection correlations = ...; how is actual construction done in above line ( correlations = ... ; )

Re: Sequential Pattern Mining

2011-11-27 Thread Lee Carroll
I don't want to go off topic but perhaps its possible to use cf by creating super product id's of combined purchases 101 1 101 2 > implies 101 3 where 3 is a product which represents the purchase of 1 and 2 > in a time frame. users / items associated with 3 have a pref for item / users > ... How

Re: Sequential Pattern Mining

2011-11-27 Thread Paritosh Ranjan
I am talking about the implementations available in Mahout where you can find similarity between users by analyzing some datamodel and then recommend items based on that. If this can solve your problem. I see this implemented in Mahout. And its very easy to use. On 27-11-2011 15:47, Nishant

Re: Sequential Pattern Mining

2011-11-27 Thread Nishant Chandra
Are you talking about CF? Can you please explain a bit? To be clear, for my use case, temporal sequence is important. Nishant On Sun, Nov 27, 2011 at 3:44 PM, Paritosh Ranjan wrote: > Have you checked out the recommendation algorithms? I think this can be > easily done using them. > > Paritosh

Re: Sequential Pattern Mining

2011-11-27 Thread Paritosh Ranjan
Have you checked out the recommendation algorithms? I think this can be easily done using them. Paritosh On 27-11-2011 15:39, Nishant Chandra wrote: Use case is related to purchase transactions. Sample data set: Customer ID Acquisition time Products 101 30 June 2007 Product 1 101 12 August 20

Re: Sequential Pattern Mining

2011-11-27 Thread Nishant Chandra
Use case is related to purchase transactions. Sample data set: Customer ID Acquisition time Products 101 30 June 2007 Product 1 101 12 August 2007 Product 3 101 20 December 2008 Product 4 102 10 September 2008 Product 3 102 12 September 2008 Product 5 102 20 January 2009 Product 5. Sample rul

Re: Sequential Pattern Mining

2011-11-27 Thread Paritosh Ranjan
Can you tell something about your use case? Paritosh On 27-11-2011 15:14, Nishant Chandra wrote: Hi, Is there any implementation for Sequential Pattern Mining in Mahout? I see there is an implementation of Sequential Pattern Mining but I am unsure if it can be used for my use case. Thanks, Ni

Sequential Pattern Mining

2011-11-27 Thread Nishant Chandra
Hi, Is there any implementation for Sequential Pattern Mining in Mahout? I see there is an implementation of Sequential Pattern Mining but I am unsure if it can be used for my use case. Thanks, Nishant