Commit Graph

192 Commits

Author SHA1 Message Date
Robert Layton dacfd8bd5d DOC: Replaced all BSD style licenses with "BSD 3 clause"
Replaced all BSD style licenses with "BSD 3 clause"
Not checked yet!

Removed duplicate "3 clause, 3 clause"

Removed trailing period if exists

Fixed some missed licences, still about 50 to do, but those can be automated

Think I got the last of them.

Apparently me and sed have different ideas of regex.

Found a few more
2013-04-30 08:34:46 +02:00
Stefano Lattarini 67ece78da4 COSMIT various typofixes
As suggested by codespell <https://github.com/lucasdemarchi/codespell>

Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
2013-04-11 21:22:14 +02:00
Mikhail Korobov eae18a3784 PY3 fix metaclasses. See #1829. 2013-04-04 01:07:20 +06:00
Gilles Louppe 495b6c3f1b DOC: GBRT max_features 2013-02-25 15:15:26 +01:00
Gilles Louppe c41ccbb25c ENH: Defer parameter checking of trees 2013-02-25 15:13:16 +01:00
Peter Prettenhofer 42c7496c0c Merge branch 'master' into gbrt-deviance-fix 2013-02-17 19:52:21 +01:00
Gilles Louppe 5c3dc9a029 ENH: Update feature_importances in GBRT 2013-02-07 18:27:52 +01:00
Gilles Louppe f7f5424464 Remove compute_importances parameter 2013-02-05 16:19:32 +01:00
Peter Prettenhofer 11b126f3bd Merge branch 'master' into gbrt-deviance-fix 2013-01-26 18:37:06 +01:00
Peter Prettenhofer 9ddb9ca2d2 correct docstring 2013-01-26 18:27:21 +01:00
Andreas Mueller e369c4339d COSMIT remove unused imports, pep8 2013-01-26 18:26:20 +01:00
Peter Prettenhofer caeb299415 raise ValueError if division through zero in LogOddsEstimator 2013-01-26 17:25:11 +01:00
Peter Prettenhofer 83026a8a0a fix: deviance computation in BinomialDeviance was wrong (ignored cases where y == 0) - thanks to ChrisBeaumont for reporting this issue 2013-01-26 12:19:42 +01:00
Lars Buitinck 07c56d7cd2 COSMIT rm deprecated stuff
One more deprecated feature to go in FastICA; not sure how to handle
that one.
2013-01-22 19:45:27 +01:00
Andreas Mueller c0323d1d57 FIX remaining parameter issues in GradientBoosting 2013-01-15 22:35:10 +01:00
Andreas Mueller 696dd6fb6b FIX in tree and ensemble: don't overwrite random state in fit. 2013-01-15 22:35:09 +01:00
Gilles Louppe 78fc091a2c FIX: set min_samples_split=2 by default 2013-01-08 23:29:19 +01:00
Andreas Mueller 754c2d9533 COSMIT pep8 2012-12-22 16:48:17 +01:00
Peter Prettenhofer 2b56ee1ba3 set min_density when growing deep trees during gradient boosting 2012-12-14 20:45:45 +01:00
Arnaud Joly 9c94b3770a ENH add author 2012-12-11 09:35:12 +01:00
Arnaud Joly 6c60fe214a FIX feature importance computation + Enable smoke test of feature importances 2012-12-11 09:33:11 +01:00
Arnaud Joly f4f34d492d PEP8 2012-12-11 09:33:11 +01:00
Arnaud Joly 2c71362478 COSMIT 2012-12-11 09:33:11 +01:00
Arnaud Joly af50266a3c ENH preserver contiguous property
The a[:,np.newaxis] operation does not preserve contiguousity, so we shift to
reshape which preserve this one. For an example see below:

In [1]: import numpy as np

In [2]: np.__version__
Out[2]: '1.6.2'

In [3]: a = np.array([1,2,3])

In [4]: a.flags
Out[4]:
  C_CONTIGUOUS : True
  F_CONTIGUOUS : True
  OWNDATA : True
  WRITEABLE : True
  ALIGNED : True
  UPDATEIFCOPY : False

In [5]: a[:,np.newaxis].flags
Out[5]:
  C_CONTIGUOUS : False
  F_CONTIGUOUS : False
  OWNDATA : False
  WRITEABLE : True
  ALIGNED : True
  UPDATEIFCOPY : False

In [6]: a.reshape(-1,1).flags
Out[6]:
  C_CONTIGUOUS : True
  F_CONTIGUOUS : False
  OWNDATA : False
  WRITEABLE : True
  ALIGNED : True
  UPDATEIFCOPY : False
2012-12-11 09:33:11 +01:00
Arnaud Joly 44ba8edec4 COSMIT 2012-12-11 09:33:11 +01:00
Arnaud Joly e8d21a798f ENH Move parameter checking to fit 2012-12-11 09:33:11 +01:00
Arnaud Joly 77064a2822 DOC explain parameter estimators_ (2) 2012-12-11 09:33:11 +01:00
Arnaud Joly 8c418bc8a1 DOC explain parameter estimators_ 2012-12-11 09:33:11 +01:00
Arnaud Joly 6f6d6924e4 Use the check_input argument 2012-12-11 09:33:10 +01:00
Arnaud Joly ce7ea536ca COSMIT Remove duplicated assignement 2012-12-11 09:33:10 +01:00
Arnaud Joly 357f3c17d7 Call DecisionTreeRegressor instead of Tree 2012-12-11 09:33:10 +01:00
Peter Prettenhofer f414ca1b05 Merge branch 'master' into gbrt-interactions 2012-11-30 13:32:11 +01:00
Peter Prettenhofer 86f590eb39 fix: random_state got initialized in fit_stage; caused same feature subsample in each tree 2012-11-30 13:19:28 +01:00
Peter Prettenhofer aff7da7834 Merge remote-tracking branch 'upstream/master' into gbrt-interactions 2012-11-30 09:29:27 +01:00
Andreas Mueller 780ab0245c ENH Check what ``__init__`` does in test_common 2012-11-26 09:31:06 +00:00
Peter Prettenhofer 66df36291f Merge branch 'master' into gbrt-interactions 2012-11-25 21:27:16 +01:00
Eugene Nizhibitsky c1eb792f3b Fix staged_predict_proba() in gradient_boosting. 2012-11-25 23:23:21 +04:00
Peter Prettenhofer af3345cbc3 remove partial dependence (moved to own module) 2012-11-20 18:47:46 +01:00
Peter Prettenhofer 8a171a8c04 add plotting convenience function 2012-11-19 22:26:03 +01:00
Peter Prettenhofer f76458196a Merge branch 'master' into gbrt-interactions 2012-11-10 21:16:33 +01:00
Andreas Mueller 92138a4258 COSMIT pep8 2012-11-10 14:02:29 +00:00
Peter Prettenhofer 21d12607fb input validation for grid 2012-11-10 12:56:33 +01:00
Peter Prettenhofer 53d94186ad more input validation for partial dependence and doctest 2012-11-10 11:33:57 +01:00
Peter Prettenhofer 7c31618993 initialize estimators_ with empty array not None 2012-11-10 10:43:15 +01:00
Peter Prettenhofer a2edf494d7 raise error if both grid and X are specified 2012-11-10 10:42:47 +01:00
Peter Prettenhofer bd514aa2f3 Merge branch 'master' into gbrt-interactions 2012-11-10 10:30:20 +01:00
Peter Prettenhofer ef60b17bf3 tidy up deprecated warnings for learn_rate 2012-11-08 20:42:32 +01:00
Peter Prettenhofer d3dfbec478 Merge branch 'master' into gbrt-interactions
Conflicts:
	doc/modules/ensemble.rst
2012-11-08 20:32:21 +01:00
Alexandre Gramfort a164a98a9b typos 2012-11-04 23:12:09 +01:00
Alexandre Gramfort 2064745182 typo 2012-11-04 23:04:01 +01:00