Re: [scikit-learn] Jeff Levesque: profit functionality

2018-06-11 Thread Alexandre Gramfort
no only logit with LogisticRegression estimator. Alex ___ scikit-learn mailing list scikit-learn@python.org https://mail.python.org/mailman/listinfo/scikit-learn

Re: [scikit-learn] scikit-learn-contrib: building Cython, cpp files

2018-06-11 Thread Dylan Fernando
Hi Joris, Thanks, I'll try that. On Fri, Jun 1, 2018 at 5:20 AM, Joris Van den Bossche < jorisvandenboss...@gmail.com> wrote: > Hi Dylan, > > In case you are still looking for a solution:I didn't directly find good > templates for packages that depend on cython (there are quite some, but > from

[scikit-learn] Jeff Levesque: association rules

2018-06-11 Thread Jeffrey Levesque via scikit-learn
Hi guys, What are some good approaches for association rules. Is there something built in, or do people sometimes use alternate packages, maybe apache spark? Thank you, Jeff Levesque https://github.com/jeff1evesque ___ scikit-learn mailing list scikit-

Re: [scikit-learn] Jeff Levesque: profit functionality

2018-06-11 Thread Stuart Reynolds
Scikit has a section on 'GLMs' 1.1. Generalized Linear Models http://scikit-learn.org/stable/modules/linear_model.html not covered there? (That page doesn't look like GLMs -- mostly it covers different fitting, loss and regularlization methids, but not general functional distributions). If not, ch

Re: [scikit-learn] Jeff Levesque: association rules

2018-06-11 Thread Sebastian Raschka
Hi Jeff, had a similar question 1-2 years ago and ended up using Chris Borgelt's C command line tools but for convenience, i also implemented basic association rule & frequent pattern mining in Python here: http://rasbt.github.io/mlxtend/user_guide/frequent_patterns/association_rules/ Best, Seb

Re: [scikit-learn] Jeff Levesque: association rules

2018-06-11 Thread Dmitry Ignatov
Hi All, A good tool. I also use SPMF (Java-based library) and Apache Spark (they do not have closed itemsets there). There is a part of Orange data mining on association rules mining, which can be used as a Python library. A couple of years ago I asked Gilles Louppe about frequent itemset mining

Re: [scikit-learn] Jeff Levesque: association rules

2018-06-11 Thread Christian Braune
Hey, Christian Borgelt currently has several itemset mining algorithms online with a python interface: http://borgelt.net/pyfim.html . Best regards, Chris Sebastian Raschka schrieb am Mo., 11. Juni 2018 um 19:30 Uhr: > Hi Jeff, > > had a similar question 1-2 years ago and ended up using Chris

Re: [scikit-learn] Jeff Levesque: association rules

2018-06-11 Thread Dmitry Ignatov
My students use it too :-) пн, 11 июня 2018 г. в 20:53, Christian Braune : > Hey, > > Christian Borgelt currently has several itemset mining algorithms online > with a python interface: http://borgelt.net/pyfim.html . > > Best regards, > Chris > > > Sebastian Raschka schrieb am Mo., 11. Juni >

Re: [scikit-learn] Jeff Levesque: association rules

2018-06-11 Thread Jonathan Rocher
Yep, pyfim is what I too used for a past project... On Mon, Jun 11, 2018 at 1:55 PM Dmitry Ignatov wrote: > My students use it too :-) > > пн, 11 июня 2018 г. в 20:53, Christian Braune < > christian.braun...@gmail.com>: > >> Hey, >> >> Christian Borgelt currently has several itemset mining algor

Re: [scikit-learn] Jeff Levesque: profit functionality

2018-06-11 Thread Joel Nothman
There is a PR for more GLM support ( https://github.com/scikit-learn/scikit-learn/pull/9405), but I don't think it will be in the next release.​ ___ scikit-learn mailing list scikit-learn@python.org https://mail.python.org/mailman/listinfo/scikit-learn

Re: [scikit-learn] Jeff Levesque: association rules

2018-06-11 Thread Joel Nothman
We have definitely discussed association rules in issues before. It's considered out of scope for scikit-learn, except insofar as it is used for learning classification. We haven't yet been convinced that classifiers based on associative learning have enough practical demand to justify their mainte