Re: Mahout fpg

2013-11-29 Thread Isabel Drost-Fromm
On Fri, 22 Nov 2013 17:55:13 +0800 Jason Lee wua...@gmail.com wrote: I noticed lots of algorithms implementations has deprecated in Mahout 0.8 and removed in 0.9, but no reasons or comments been marked. Can i ask why? As Suneel mentioned earlier: Before removing these algorithms we asked on

Re: Mahout fpg

2013-11-23 Thread Jason Lee
: Thu, 21 Nov 2013 17:51:12 +0100 From: ssc.o...@googlemail.com To: user@mahout.apache.org Subject: Re: Mahout fpg ItemSimilarityJob does not handle alphanumeric identifiers. You have to preprocess your data before running that job. --sebastian On 21.11.2013 00:28

Re: Mahout fpg

2013-11-22 Thread Jason Lee
to the java file they created. On Fri, Nov 22, 2013 at 3:09 AM, Sameer Tilak ssti...@live.com wrote: Sebastian,Thanks for the clarification. Date: Thu, 21 Nov 2013 17:51:12 +0100 From: ssc.o...@googlemail.com To: user@mahout.apache.org Subject: Re: Mahout fpg ItemSimilarityJob does

Re: Mahout fpg

2013-11-22 Thread Suneel Marthi
could definitely use some help in prepping up the Javadocs. On Fri, Nov 22, 2013 at 3:09 AM, Sameer Tilak ssti...@live.com wrote: Sebastian,Thanks for the clarification. Date: Thu, 21 Nov 2013 17:51:12 +0100 From: ssc.o...@googlemail.com To: user@mahout.apache.org Subject: Re: Mahout fpg

RE: Mahout fpg

2013-11-21 Thread Sameer Tilak
Sebastian,Thanks for the clarification. Date: Thu, 21 Nov 2013 17:51:12 +0100 From: ssc.o...@googlemail.com To: user@mahout.apache.org Subject: Re: Mahout fpg ItemSimilarityJob does not handle alphanumeric identifiers. You have to preprocess your data before running that job

Re: Mahout fpg

2013-11-21 Thread Sebastian Schelter
: suneel_mar...@yahoo.com Subject: Re: Mahout fpg To: user@mahout.apache.org From the stacktrace: FAILEDjava.lang.NumberFormatException: For input string: A1234567 at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) Obviously, the input's incorrect

RE: Mahout fpg

2013-11-20 Thread Sameer Tilak
To: user@mahout.apache.org Subject: Re: Mahout fpg You can use ItemSimilarityJob to find sets of items that cooccur together in your users interactions. --sebastian On 20.11.2013 08:11, Sameer Tilak wrote: Hi Sunil, Thanks for your reply. We can benefit a lot from

Re: Mahout fpg

2013-11-20 Thread Suneel Marthi
Subject: Re: Mahout fpg You can use ItemSimilarityJob to find sets of items that cooccur together in your users interactions. --sebastian On 20.11.2013 08:11, Sameer Tilak wrote: Hi Sunil, Thanks for your reply. We can benefit a lot from the parallel frequent pattern

RE: Mahout fpg

2013-11-20 Thread Sameer Tilak
, itemocde)(userid, itemocde)(userid, itemocde)(userid, itemocde)…. Date: Wed, 20 Nov 2013 15:11:49 -0800 From: suneel_mar...@yahoo.com Subject: Re: Mahout fpg To: user@mahout.apache.org From the stacktrace: FAILEDjava.lang.NumberFormatException: For input string: A1234567

Re: Mahout fpg

2013-11-19 Thread Suneel Marthi
Fpg has been removed from the codebase as it will not be supported. On Tuesday, November 19, 2013 8:56 PM, Sameer Tilak ssti...@live.com wrote: Hi everyone,I downloaded the latest version of Mahout and did mvn install. When I try to run fog, I get the following errors. Do I need to

RE: Mahout fpg

2013-11-19 Thread Sameer Tilak
...@yahoo.com Subject: Re: Mahout fpg To: user@mahout.apache.org Fpg has been removed from the codebase as it will not be supported. On Tuesday, November 19, 2013 8:56 PM, Sameer Tilak ssti...@live.com wrote: Hi everyone,I downloaded the latest version of Mahout and did mvn install. When

Re: Mahout fpg

2013-11-19 Thread Sebastian Schelter
alternative in future releases? I guess, we can use older versions of Mahout if we need that. Date: Tue, 19 Nov 2013 19:25:54 -0800 From: suneel_mar...@yahoo.com Subject: Re: Mahout fpg To: user@mahout.apache.org Fpg has been removed from the codebase as it will not be supported

Re: Mahout fpg missing patterns

2011-12-19 Thread Tom Pierce
One possible explanation is that Mahout's FPG avoids reporting patterns that are subsumed by others. For example, if you have pattern [a, b, c] with support 3, you clearly must also have [a, b], [b, c] and [a, c] with support = 3. Mahout will not report any of those unless the support is

Re: Mahout fpg missing patterns

2011-12-19 Thread gaurav singh
That seems to make sense. What do you mean by Mahout will not report any of those unless the support is strictly greater than 3. Is there a way for me to get all the patterns with support strictly greater then a particular value? Thanks Gaurav On Mon, Dec 19, 2011 at 4:58 PM, Tom Pierce

Re: Mahout fpg missing patterns

2011-12-19 Thread Tom Pierce
Maybe it's easiest to give an example. If you have input: a b c a b c d ac d a b c You should expect Mahout to output (say, for support 2): [a, b, c],3 [a, c, d],2 [a, c],4 You might also expect to see [a],4 or [a, b],3 but these are implied by the other patterns. Note that [a, b] and

Re: Mahout fpg missing patterns

2011-12-19 Thread gaurav singh
You were a real help Tom! Thanks Gaurav On Mon, Dec 19, 2011 at 5:33 PM, Tom Pierce t...@cloudera.com wrote: Maybe it's easiest to give an example. If you have input: a b c a b c d ac d a b c You should expect Mahout to output (say, for support 2): [a, b, c],3 [a, c, d],2 [a,