Re: delay of engines

2016-09-27 Thread Pat Ferrel
>> >> Georg, are you talking about updating an existing model in different ways, >> evaluate them, and select one within a time constraint, say every 1 second? >> >> On Mon, Sep 26, 2016 at 4:11 PM, Pat Ferrel > <mailto:p...@occamsmachete.com>> wrote: &

Re: How to score the model? (lift)

2016-09-26 Thread Pat Ferrel
A/B testing it the typical way to compare the performance of 2 or more versions of an app. You should make sure that the versions only vary in 1 way to isolate what you are comparing. So channel some traffic to a page “without recommendations” and some amount of traffic to a page “with recommend

Re: delay of engines

2016-09-26 Thread Pat Ferrel
is this possible for prediction.io <http://prediction.io/>? Regards, Georg Pat Ferrel mailto:p...@occamsmachete.com>> schrieb am So. 25. Sep. 2016 um 18:19: Gustavo it correct. To put another way both Oryx and PredictionIO are based on what is called a Lambda Architecture. Loosely spea

Re: delay of engines

2016-09-25 Thread Pat Ferrel
Gustavo it correct. To put another way both Oryx and PredictionIO are based on what is called a Lambda Architecture. Loosely speaking this means a potentially slow background task computes the predictive “model” but this does not interfere with serving queries. Then when the model is ready (sto

Re: spark-itemsimilarity slower than itemsimilarity

2016-09-25 Thread Pat Ferrel
AWS EMR is usually not very well suited for Spark. Spark get’s most of it’s speed from in-memory calculations. So to see speed gains you have to have enough memory. Also partitioning will help in many cases. If you read in data from a single file—that partitioning will usually follow the calcula

Re: [VOTE]: Apache PredictionIO (incubating) 0.10.0 Release (RC4)

2016-09-24 Thread Pat Ferrel
+1 binding On Sep 23, 2016, at 12:28 PM, Alex Merritt wrote: +1 (Binding) Extracted, built, installed manually (with HBase / ElasticSearch / local fs configured in pio-env.sh), start script works, status works, sbt tests pass. Had low system entropy which caused fail on `pio app new X`, but pe

Re: Remove engine registration

2016-09-21 Thread Pat Ferrel
on related models/algorithms. So you would register an engine - as > a code once and run training for some domain specific data (app) and > algorithm parameters, what would result in a different identifier, that > would be later used for deployment. > > Regards, > Marcin > >

Re: Remove engine registration

2016-09-21 Thread Pat Ferrel
on related models/algorithms. So you would register an engine - as > a code once and run training for some domain specific data (app) and > algorithm parameters, what would result in a different identifier, that > would be later used for deployment. > > Regards, > Marcin > >

Re: Batch import, Java

2016-09-20 Thread Pat Ferrel
, Sep 16, 2016 at 2:25 PM, Pat Ferrel wrote: > Which brings up the next set of issues: What do we do for Salesforce owned > SDKs? Can the SDKs be donated? > > In any case I suggest we add to the “gallery” so it might be better > categorized to include SDKs, Templates, other extras lik

Re: Batch import, Java

2016-09-20 Thread Pat Ferrel
, Sep 16, 2016 at 2:25 PM, Pat Ferrel wrote: > Which brings up the next set of issues: What do we do for Salesforce owned > SDKs? Can the SDKs be donated? > > In any case I suggest we add to the “gallery” so it might be better > categorized to include SDKs, Templates, other extras lik

Re: [VOTE]: Apache PredictionIO (incubating) 0.10.0 Release

2016-09-20 Thread Pat Ferrel
> >>>> I have prepared a RC2. The artifacts can be downloaded here: >>>> https://dist.apache.org/repos/dist/dev/incubator/ > predictionio/0.10.0- >>>> incubating-rc2/ >>>> or from the Maven staging repo here: >>>> https://repository.a

Re: PIO 0.9.5 and UR 0.2.3 : Search event filtering

2016-09-18 Thread Pat Ferrel
The UR is supported here: https://groups.google.com/forum/#!forum/actionml-user First 0.2.3 has a bug in how it weights biased items so you’ll want to get 0.3.0, or 0.4.0 coming next week. This will require you to upgrade the ActionML ve

Re: Remove engine registration

2016-09-18 Thread Pat Ferrel
This sounds like a good case for Donald’s suggestion. What I was trying to add to the discussion is a way to make all commands rely on state in the megastore, rather than any file on any machine in a cluster or on ordering of execution or execution from a location in a directory structure. All

Re: Remove engine registration

2016-09-18 Thread Pat Ferrel
This sounds like a good case for Donald’s suggestion. What I was trying to add to the discussion is a way to make all commands rely on state in the megastore, rather than any file on any machine in a cluster or on ordering of execution or execution from a location in a directory structure. All

Recommenders and MABs

2016-09-17 Thread Pat Ferrel
I’ve been thinking about how one would implement an application that only shows recommendations. This is partly because people want to build such things. There are many problems with this including cold start and overfit. However these problems also face MABs and are solved with sampling schemes

Recommenders and MABs

2016-09-17 Thread Pat Ferrel
I’ve been thinking about how one would implement an application that only shows recommendations. This is partly because people want to build such things. There are many problems with this including cold start and overfit. However these problems also face MABs and are solved with sampling schemes

Re: [VOTE]: Apache PredictionIO (incubating) 0.10.0 Release

2016-09-17 Thread Pat Ferrel
> >>>> >>>> >>>>> On Thu, Sep 15, 2016 at 2:11 PM, Robert Lu > >>> wrote: >>>>> >>>>> +1 >>>>> >>>>>> On Sep 15, 2016, at 01:13, Matthew Tovbin > wrote: >>>>

Re: Remove engine registration

2016-09-17 Thread Pat Ferrel
ceId some-REST-compatible-resource-id` ? Currently PIO also has a concept of engineInstanceId, which is output of train. I think you are referring to different thing, right? Kenneth On Fri, Sep 16, 2016 at 12:58 PM, Pat Ferrel mailto:p...@occamsmachete.com>> wrote: This is a great disc

Re: Remove engine registration

2016-09-17 Thread Pat Ferrel
ceId some-REST-compatible-resource-id` ? Currently PIO also has a concept of engineInstanceId, which is output of train. I think you are referring to different thing, right? Kenneth On Fri, Sep 16, 2016 at 12:58 PM, Pat Ferrel mailto:p...@occamsmachete.com>> wrote: This is a great disc

Re: Remove engine registration

2016-09-16 Thread Pat Ferrel
This is a great discussion topic and a great idea. However the cons must also be addressed, we will need to do this before multi-tenant deploys can happen and the benefits are just as large as removing `pio build` It would be great to get rid of manifest.json and put all metadata in the store

Re: Remove engine registration

2016-09-16 Thread Pat Ferrel
This is a great discussion topic and a great idea. However the cons must also be addressed, we will need to do this before multi-tenant deploys can happen and the benefits are just as large as removing `pio build` It would be great to get rid of manifest.json and put all metadata in the store

Re: Batch import, Java

2016-09-16 Thread Pat Ferrel
thub.com/PredictionIO/PredictionIO-Java-SDK/commit/6691144ebf1382aa1d060770a4fb7c0268f849d3> On Fri, Sep 9, 2016 at 7:59 AM, Pat Ferrel mailto:p...@occamsmachete.com>> wrote: The page is now live On Sep 8, 2016, at 11:49 AM, Gustavo Frederico mailto:gustavo.freder...@thinkwrap.com>&

Re: Batch import, Java

2016-09-16 Thread Pat Ferrel
thub.com/PredictionIO/PredictionIO-Java-SDK/commit/6691144ebf1382aa1d060770a4fb7c0268f849d3> On Fri, Sep 9, 2016 at 7:59 AM, Pat Ferrel mailto:p...@occamsmachete.com>> wrote: The page is now live On Sep 8, 2016, at 11:49 AM, Gustavo Frederico mailto:gustavo.freder...@thinkwrap.com>&

Re: Download PredictionIO

2016-09-16 Thread Pat Ferrel
The Apache version is not released yet. If you can’t wait for a week or so, try instructions here for the fork I maintain which works with old non-apache templates: actionml.com/docs/install On Sep 11, 2016, at 5:10 AM, babak hosseinzadeh wrote: Hi, I can't figure out where to download and

Re: [VOTE]: Apache PredictionIO (incubating) 0.10.0 Release

2016-09-15 Thread Pat Ferrel
cify "+1 Binding" if u r a PMC member. Its >> only the PMC votes that count for a release to pass. >> >> >> >>> On Thu, Sep 15, 2016 at 2:11 PM, Robert Lu wrote: >>> >>> +1 >>> >>>> On Sep 15, 201

Re: [VOTE]: Apache PredictionIO (incubating) 0.10.0 Release

2016-09-15 Thread Pat Ferrel
Donald, you get a vote too. We need 3 (assuming no one is -1) to graduate this. Everyone please vote! On Sep 14, 2016, at 10:13 AM, Matthew Tovbin wrote: +1 On Wed, Sep 14, 2016 at 10:12 AM, Pat Ferrel wrote: > +1 > > > On Sep 13, 2016, at 11:55 AM, Donald Szeto wrote: >

Re: [VOTE]: Apache PredictionIO (incubating) 0.10.0 Release

2016-09-14 Thread Pat Ferrel
+1 On Sep 13, 2016, at 11:55 AM, Donald Szeto wrote: This is the vote for 0.10.0 of Apache PredictionIO (incubating). The vote will run for at least 72 hours and will close on Sept 16th, 2016. The artifacts can be downloaded here: https://dist.apache.org/repos/dist/dev/incubator/predictionio/

[jira] [Commented] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-09-12 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15485845#comment-15485845 ] Pat Ferrel commented on PIO-27: --- wow that was a big roundabout to nowhere. LICENSE.txt was

[jira] [Resolved] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-09-12 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pat Ferrel resolved PIO-27. --- Resolution: Fixed Assignee: Pat Ferrel minimal files per ASF rules created for source release. > Ch

Re: Incubation sponsor

2016-09-12 Thread Pat Ferrel
bunch of docs and tests. I'm going to publish rc artifacts for us to vote on today. Quick install instructions have been removed from docs. The onboarding experience should be "production quality" now. On Mon, Sep 12, 2016 at 10:56 AM, Pat Ferrel wrote: > We seem to be ha

Re: Incubation sponsor

2016-09-12 Thread Pat Ferrel
We seem to be having problems with install.sh. I suggest we move it to the docs branch so we can continue to work on it post release. Donald, can you give us a count down or expected freeze date? On Sep 11, 2016, at 11:15 PM, Donald Szeto wrote: Thanks Andrew! On Sunday, September 11, 2016,

Re: Multitenancy on the Universal Product Recommender

2016-09-09 Thread Pat Ferrel
lightweight Actors one per tenant. On Thu, Sep 8, 2016 at 7:52 PM, Pat Ferrel mailto:p...@occamsmachete.com>> wrote: I’m the maintainer of the Universal Recommender. We have OSS support at https://groups.google.com/forum/#!forum/actionml-user <https://groups.google.com/forum/#!forum/actionml-

Re: pio build & train - server available?

2016-09-09 Thread Pat Ferrel
Think of PIO as 2 or more servers: 1) EventServer, which may run continuously, taking events from outside and queries during pio build or from the second server 2) PredictionServer, there is one of these per engine. It serves query results. Some templates allow these to run continuously (like th

Re: Batch import, Java

2016-09-09 Thread Pat Ferrel
The page is now live On Sep 8, 2016, at 11:49 AM, Gustavo Frederico wrote: The page at http://predictionio.incubator.apache.org/datacollection/batchimport/ displays "(coming soon)" for the Java SDK. Any ideas about when t

[jira] [Commented] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-09-08 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15475396#comment-15475396 ] Pat Ferrel commented on PIO-27: --- Since we are doing a source-only release the PR is update

Re: Multitenancy on the Universal Product Recommender

2016-09-08 Thread Pat Ferrel
I’m the maintainer of the Universal Recommender. We have OSS support at https://groups.google.com/forum/#!forum/actionml-user Do you wish to take advantage of the same user being in multiple datasets/tenants? The answer below is assuming n

NOTICE TO ALL USERS

2016-09-08 Thread Pat Ferrel
There have been multiple reports of memory problems, performance problems (that may be memory related), and OOM errors. I have been telling everyone to use: pio train -- --driver-memory 14g --executor-memory 14g --master spark://master-address:7077 To increase the memory for Spark and this

Re: Release Manager

2016-09-08 Thread Pat Ferrel
Thanks Donald! We still need to cleanup 2 things, 1) the LICENSE.txt and NOTICE.txt now has to reflect only sources included. I’ll update the license Jira and will do the editing (easy now). 2) the install.sh *needs testing*, please anyone who can try it, on different distros (Mac, Red Hat-base

Re: Setup PredictionIO for large events

2016-09-06 Thread Pat Ferrel
t; mailto:digambarbha...@gmail.com>> wrote: Update please.. On 30-Aug-2016 8:06 pm, "Digambar Bhat" mailto:digambarbha...@gmail.com>> wrote: I am using Universal Recommender. On 30-Aug-2016 8:05 pm, "Pat Ferrel" mailto:p...@occamsmachete.com>> wrote: Trainin

Re: Binary or Source release

2016-09-06 Thread Pat Ferrel
the install.sh can be made to point to it. Not sure what the ASF rules are regarding this so maybe the mentors can comment—specifically do we have to use the Apache mirror system? On Sep 5, 2016, at 4:34 PM, Pat Ferrel wrote: On Sep 5, 2016, at 1:25 PM, Alex Merritt wrote: Agree we should

Re: Binary or Source release

2016-09-05 Thread Pat Ferrel
pressure of hurrying for release. What do others think? On Sep 5, 2016, at 10:45 AM, Pat Ferrel wrote: Thanks Andy. RE “Only need to include one entry with the complete text of a license, everything else can just name the license.” So the copyright notice in the license is not important, only

Re: Binary or Source release

2016-09-05 Thread Pat Ferrel
o I hope you'll take my advice and evidence based assertion it can be done. Caveat: we use maven not SBT as build framework. > > On Sep 5, 2016, at 9:43 AM, Pat Ferrel wrote: > > This weekend I tracked down all out deps, which required a few scripts to > process sbt outpu

Binary or Source release

2016-09-05 Thread Pat Ferrel
This weekend I tracked down all out deps, which required a few scripts to process sbt output. This yielded 166 deps, so this implies we need to include 166 licenses and copyright notices in LICENSE.txt. As I read the Apache guidelines this should be the license that goes with the version we incl

[jira] [Updated] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-09-04 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pat Ferrel updated PIO-27: -- Attachment: ud.txt after lots of futzing here are the unique non-evicted deps including transitives > Ch

[jira] [Commented] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-09-04 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15463227#comment-15463227 ] Pat Ferrel commented on PIO-27: --- unique non-evicted list of all deps including transit

[jira] [Commented] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-09-04 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15463124#comment-15463124 ] Pat Ferrel commented on PIO-27: --- could be but I'm talking about https://github.com/jru

[jira] [Comment Edited] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-09-04 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15463084#comment-15463084 ] Pat Ferrel edited comment on PIO-27 at 9/4/16 3:55 PM: --- Thanks

[jira] [Comment Edited] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-09-04 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15463084#comment-15463084 ] Pat Ferrel edited comment on PIO-27 at 9/4/16 3:53 PM: --- Thanks

[jira] [Commented] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-09-04 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15463084#comment-15463084 ] Pat Ferrel commented on PIO-27: --- Thanks for reminding me [~smarthi] we use an sbt plugin

[jira] [Commented] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-09-03 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15461979#comment-15461979 ] Pat Ferrel commented on PIO-27: --- The current install script does a build from source. The

[jira] [Commented] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-09-03 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15461706#comment-15461706 ] Pat Ferrel commented on PIO-27: --- just to document for the next person that does it,

[jira] [Commented] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-09-03 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15461664#comment-15461664 ] Pat Ferrel commented on PIO-27: --- This seems to require us to go back to the source of

[jira] [Commented] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-09-03 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15461623#comment-15461623 ] Pat Ferrel commented on PIO-27: --- After reading the Apache guidelines, it sounds like if we

Re: Sep 2016 Podling report

2016-09-02 Thread Pat Ferrel
Thanks Suneel On Sep 2, 2016, at 12:35 PM, Suneel Marthi wrote: Filed the podling report for Sep 2016. On Fri, Sep 2, 2016 at 2:44 PM, Donald Szeto wrote: > Looks good to me. Thanks Suneel and Pat! > > On Thu, Sep 1, 2016 at 9:41 PM, Suneel Marthi wrote: > >> Please find below the proposed

Re: Apache PIO v0.10.0 release

2016-09-01 Thread Pat Ferrel
BTW the Jira for license checking is https://issues.apache.org/jira/browse/PIO-27 On Sep 1, 2016, at 12:23 PM, Pat Ferrel wrote: 100% agree! I’ll work on the text license verification tomorrow. Oops back to the Jira. Ship it! On Aug 30, 2016, at 1:47 PM, Donald Szeto wrote: I am aware

[jira] [Commented] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-09-01 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15456370#comment-15456370 ] Pat Ferrel commented on PIO-27: --- [~dszeto] Will start work on the text license part of

Re: Apache PIO v0.10.0 release

2016-09-01 Thread Pat Ferrel
start the release candidate process in the 1st week of September. The community has been asking and we'd like to ship it to them. On Tue, Aug 30, 2016 at 10:05 AM, Pat Ferrel wrote: > It’s been over a week waiting for the template donation paperwork, which I > imagine will take a few

Re: Regarding PredictionIO templates

2016-09-01 Thread Pat Ferrel
o release v0.10 of PredictionIO in September, and we >>>> would need voluntary updates to the org namespace in all templates. As >>>> Pat mentioned, the best way to do this is via pull request to the template >>>> gallery. Below are the links to template gallery

[jira] [Commented] (PIO-28) Extract logic from functions handling console commands in tools package.

2016-08-30 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-28?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15449760#comment-15449760 ] Pat Ferrel commented on PIO-28: --- Completely agree. One step at a time. > Extract log

[jira] [Comment Edited] (PIO-32) create component upgrade releases

2016-08-30 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-32?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15449604#comment-15449604 ] Pat Ferrel edited comment on PIO-32 at 8/30/16 6:24 PM: may be o

[jira] [Updated] (PIO-32) create component upgrade releases

2016-08-30 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-32?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pat Ferrel updated PIO-32: -- Description: Create a method for component upgrades that break binary compatibility like Spark 2.x, Scala 2.11

[jira] [Updated] (PIO-32) create component upgrade releases

2016-08-30 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-32?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pat Ferrel updated PIO-32: -- Summary: create component upgrade releases (was: Create component upgrade release branch) > create compon

[jira] [Comment Edited] (PIO-30) Cross build for different versions of scala and spark

2016-08-30 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-30?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15449714#comment-15449714 ] Pat Ferrel edited comment on PIO-30 at 8/30/16 6:18 PM: How

[jira] [Comment Edited] (PIO-30) Cross build for different versions of scala and spark

2016-08-30 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-30?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15449714#comment-15449714 ] Pat Ferrel edited comment on PIO-30 at 8/30/16 6:16 PM: How

[jira] [Commented] (PIO-30) Cross build for different versions of scala and spark

2016-08-30 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-30?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15449714#comment-15449714 ] Pat Ferrel commented on PIO-30: --- How does Spark do their multiple version support? They

[jira] [Comment Edited] (PIO-30) Cross build for different versions of scala and spark

2016-08-30 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-30?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15449705#comment-15449705 ] Pat Ferrel edited comment on PIO-30 at 8/30/16 6:11 PM: Fine wit

[jira] [Commented] (PIO-30) Cross build for different versions of scala and spark

2016-08-30 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-30?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15449705#comment-15449705 ] Pat Ferrel commented on PIO-30: --- Fine with me if we can do with cross-build but it's

[jira] [Commented] (PIO-32) Create component upgrade release branch

2016-08-30 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-32?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15449615#comment-15449615 ] Pat Ferrel commented on PIO-32: --- Might as well add new ES 2.x compatibility since we will b

[jira] [Created] (PIO-33) Add support for Elasticsearch 2.x to upgrade release branch

2016-08-30 Thread Pat Ferrel (JIRA)
Pat Ferrel created PIO-33: - Summary: Add support for Elasticsearch 2.x to upgrade release branch Key: PIO-33 URL: https://issues.apache.org/jira/browse/PIO-33 Project: PredictionIO Issue Type: New

[jira] [Commented] (PIO-32) Create component upgrade release branch

2016-08-30 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-32?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15449604#comment-15449604 ] Pat Ferrel commented on PIO-32: --- may be other things to add to this upgrade release br

[jira] [Created] (PIO-32) Create component upgrade release branch

2016-08-30 Thread Pat Ferrel (JIRA)
Pat Ferrel created PIO-32: - Summary: Create component upgrade release branch Key: PIO-32 URL: https://issues.apache.org/jira/browse/PIO-32 Project: PredictionIO Issue Type: New Feature Affects

[jira] [Commented] (PIO-30) Cross build for different versions of scala and spark

2016-08-30 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-30?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15449583#comment-15449583 ] Pat Ferrel commented on PIO-30: --- BTW I have code to add ES 2.x compatibility to PIO. The

[jira] [Commented] (PIO-30) Cross build for different versions of scala and spark

2016-08-30 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-30?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15449574#comment-15449574 ] Pat Ferrel commented on PIO-30: --- This means maintaining 2 release branches, master for S

[jira] [Commented] (PIO-31) Move from spray to akka-http in servers

2016-08-30 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-31?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15449546#comment-15449546 ] Pat Ferrel commented on PIO-31: --- +1 to this upgrade. It has merit on it's own

Apache PIO v0.10.0 release

2016-08-30 Thread Pat Ferrel
It’s been over a week waiting for the template donation paperwork, which I imagine will take a few weeks to go through repo creation, license validation and PR merging before they can be released. Since they can be on a separate release schedules I’d like to remove them from being blocking relea

Re: Regarding PredictionIO templates

2016-08-30 Thread Pat Ferrel
templates in apache version of predicitonIO ? We are highly using predictionIO for our MachineLearninig platform so please update me for any changes or feature addition in predictionIO. My github ID : bansarishah Thank you Regards, Bansari Shah On Tue, Aug 30, 2016 at 2:21 AM, Pat Ferrel wrote

Re: Setup PredictionIO for large events

2016-08-30 Thread Pat Ferrel
Training time is also template dependent, what template are you using? On Aug 30, 2016, at 12:21 AM, Digambar Bhat wrote: Hello, I am using PredictionIO since last one year. It's working fine for me. Earlier importing, training was working flawlessly. But now training is very slow as events

Re: Regarding PredictionIO templates

2016-08-29 Thread Pat Ferrel
Hi Bansari, Chan Lee has done this too, and added tests from the new integration test framework. We are awaiting a donation from Saleforce and new repo creation before anything can be pushed. If you would like to help check work being done on this here: https://issues.apache.org/jira/browse/P

[jira] [Commented] (PIO-28) Extract logic from functions handling console commands in tools package.

2016-08-25 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-28?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15438298#comment-15438298 ] Pat Ferrel commented on PIO-28: --- I like the idea of this. Regarding an admin server, it w

[jira] [Commented] (PIO-24) move templates to apache git repos

2016-08-22 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-24?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15431865#comment-15431865 ] Pat Ferrel commented on PIO-24: --- Sorry [~chanlee514] my mistake. you don't need an I

Re: Concern for PIO user community

2016-08-22 Thread Pat Ferrel
on, Aug 22, 2016 at 11:33 AM, Pat Ferrel mailto:p...@occamsmachete.com>> wrote: We shut off all posts to the Goggle Group for PIO. This seems to have resulted in loosing virtually all users. We are getting comments on github issues asking if the project is defunct. Notice almost no user@ ema

Re: Concern for PIO user community

2016-08-22 Thread Pat Ferrel
on, Aug 22, 2016 at 11:33 AM, Pat Ferrel mailto:p...@occamsmachete.com>> wrote: We shut off all posts to the Goggle Group for PIO. This seems to have resulted in loosing virtually all users. We are getting comments on github issues asking if the project is defunct. Notice almost no user@ ema

Concern for PIO user community

2016-08-22 Thread Pat Ferrel
We shut off all posts to the Goggle Group for PIO. This seems to have resulted in loosing virtually all users. We are getting comments on github issues asking if the project is defunct. Notice almost no user@ emails when there were several a day on the Google Group—why? At the time of the last

Concern for PIO user community

2016-08-22 Thread Pat Ferrel
We shut off all posts to the Goggle Group for PIO. This seems to have resulted in loosing virtually all users. We are getting comments on github issues asking if the project is defunct. Notice almost no user@ emails when there were several a day on the Google Group—why? At the time of the last

Re: Apache PIO v0.10.0 release

2016-08-22 Thread Pat Ferrel
Release? 1) template donation and mods. Chan Lee has done work on this. Chan, can you make the repo public so we can review? If we get a donation in reasonable time, we will look at merging Chan’s changes. Chan have you signed the ICLA? https://www.apache.org/licenses/icla.txt 2) The one-line u

[jira] [Commented] (PIO-24) move templates to apache git repos

2016-08-22 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-24?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15431326#comment-15431326 ] Pat Ferrel commented on PIO-24: --- The ones we need most correspond to these of the old

[jira] [Commented] (PIO-24) move templates to apache git repos

2016-08-22 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-24?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15431316#comment-15431316 ] Pat Ferrel commented on PIO-24: --- [~chanlee514] can you make your repos with code public s

[jira] [Commented] (PIO-22) Install.sh issues

2016-08-22 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-22?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15431309#comment-15431309 ] Pat Ferrel commented on PIO-22: --- To get this resolved I suggest we release with the build-

[jira] [Commented] (PIO-25) Don't attempt to start PostgreSQL when it's not being used

2016-08-22 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-25?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15431258#comment-15431258 ] Pat Ferrel commented on PIO-25: --- A pull request or patch is welcome. > Don't atte

Re: Apache PIO v0.10.0 release

2016-08-21 Thread Pat Ferrel
the release artifacts now > and validates the License and Notices as opposed to pushing a release and > getting -1 vote from IPMC. > > > >> On Sat, Aug 20, 2016 at 2:21 PM, Pat Ferrel wrote: >> >> Sound good. Is this a hand thing or can we automate it like PIO-26 R

Re: templates

2016-08-21 Thread Pat Ferrel
the best outcome. On Aug 21, 2016, at 11:25 AM, Chan Lee wrote: Hi Pat, I must've misunderstood. I thought we were pushing for release before template grant is approved. This sounds much better. Thanks. On Sun, Aug 21, 2016 at 9:47 AM, Pat Ferrel mailto:p...@occamsmachete.com>>

[jira] [Commented] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-08-21 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15429799#comment-15429799 ] Pat Ferrel commented on PIO-27: --- I don't have time to do this and so this is u

[jira] [Updated] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-08-21 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pat Ferrel updated PIO-27: -- Assignee: (was: Pat Ferrel) > Check release artifacts for licenses and the LICENSE.txt f

[jira] [Commented] (PIO-27) Check release artifacts for licenses and the LICENSE.txt file

2016-08-21 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/PIO-27?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15429798#comment-15429798 ] Pat Ferrel commented on PIO-27: --- Further @dev comments It took Gearpump six release candid

Re: templates

2016-08-21 Thread Pat Ferrel
problem at all. I would like you all to be successful. > >> On Aug 20, 2016, at 10:16 AM, Pat Ferrel wrote: >> >> Thanks Andy. Very good to hear. I think Donald is taking lead in SF last > I heard. As I said not trying to dump work on you :-) >> >> >&

[jira] [Commented] (MAHOUT-1878) implement quartile type thresholds for indicator matrix downsampling

2016-08-20 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/MAHOUT-1878?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15429553#comment-15429553 ] Pat Ferrel commented on MAHOUT-1878: see discussion here https://issues.apache

[jira] [Issue Comment Deleted] (MAHOUT-1679) example script run-item-sim should work on hdfs as well as local

2016-08-20 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/MAHOUT-1679?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pat Ferrel updated MAHOUT-1679: --- Comment: was deleted (was: see discussion https://issues.apache.org/jira/browse/MAHOUT-1853

[jira] [Commented] (MAHOUT-1679) example script run-item-sim should work on hdfs as well as local

2016-08-20 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/MAHOUT-1679?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15429552#comment-15429552 ] Pat Ferrel commented on MAHOUT-1679: see discussion https://issues.apache.org/

[jira] [Created] (MAHOUT-1878) implement quartile type thresholds for indicator matrix downsampling

2016-08-20 Thread Pat Ferrel (JIRA)
Pat Ferrel created MAHOUT-1878: -- Summary: implement quartile type thresholds for indicator matrix downsampling Key: MAHOUT-1878 URL: https://issues.apache.org/jira/browse/MAHOUT-1878 Project: Mahout

[jira] [Commented] (MAHOUT-1853) Improvements to CCO (Correlated Cross-Occurrence)

2016-08-20 Thread Pat Ferrel (JIRA)
[ https://issues.apache.org/jira/browse/MAHOUT-1853?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15429550#comment-15429550 ] Pat Ferrel commented on MAHOUT-1853: ok first part implemented. Not sure T

<    4   5   6   7   8   9   10   11   12   13   >