GaelVaroquaux
7e4ea9e4db
BUG fix LinearSVM doctest
2012-04-13 08:15:42 +02:00
Alexandre Gramfort
fb4bedf94b
Merge pull request #747 from ibayer/posCoeff
...
positivity constraint for lasso and elastic net
2012-04-11 00:06:06 -07:00
Andreas Mueller
fb7b5b7e76
DOC correct links to face recognition example, take care of trailing underscores.
2012-04-08 15:51:18 +02:00
Olivier Grisel
7a87d7f1c7
Merge pull request #742 from davidmarek/pdistance
...
minkowski p-distance in sklearn.neighbors
2012-04-05 00:16:01 -07:00
Lars Buitinck
eadb1f59ff
DOC small fixes to DictVectorizer documentation
2012-04-03 11:18:53 +02:00
flyingimmidev
b7b7b62aff
fixed doctest
2012-04-01 19:22:50 +02:00
Olivier Grisel
e4ce5cf20d
ENH: sort features in dict vectorizer + new doc
2012-04-01 03:13:23 +02:00
Andreas Mueller
f1ffee6fa3
COSMIT fixed references to covariance.EllipticEnvelop in docs
2012-03-31 16:46:26 +02:00
Andreas Mueller
d0fcb1878d
COSMIT minor fixes to docs
2012-03-31 16:40:31 +02:00
Mathieu Blondel
4685bab351
Doc cosmits.
2012-03-31 21:55:07 +09:00
Mathieu Blondel
4ac7a41b0b
Merge branch 'nearest_centroids' of https://github.com/robertlayton/scikit-learn into nearest_centroids
2012-03-31 21:15:59 +09:00
David Marek
a26cd5c5cd
DOC: Added mention of Minkowski metrics to nearest neighbors.
2012-03-31 13:56:40 +02:00
GaelVaroquaux
88cf3c5ea8
DOC: misc wording
2012-03-29 07:37:04 +02:00
Lars Buitinck
91a7b65557
DOC small fixes to NearestCentroid classifier
...
Point out connection to Rocchio classifier from NLP/IR.
2012-03-27 18:48:38 +02:00
Robert Layton
4168ab5542
Explain example in docs
2012-03-26 21:37:01 +11:00
Robert Layton
fd30ddc561
Example of nearest neighbor, getting an improvement when using a shrink threshold of 0.1
2012-03-26 21:35:46 +11:00
Robert Layton
f5179b117a
Moved to the `neighbors` namespace
2012-03-26 20:43:40 +11:00
Robert Layton
6c1333b6e0
Update to documentation
2012-03-26 20:06:50 +11:00
Peter Prettenhofer
a247a3e245
point out scalability problem with large numbers of classes;
...
use ``n_classes`` instead of ``K``
2012-03-26 08:55:05 +02:00
GaelVaroquaux
43ca4b75ea
DOC: Better narrative for DBSCAN
...
Thanks to Robert Layton
2012-03-26 00:50:56 +02:00
GaelVaroquaux
e38fa17b16
Merge branch 'WIP_tut'
2012-03-26 00:33:25 +02:00
GaelVaroquaux
14f37d421f
DOC: finish table to compare clustering
2012-03-26 00:17:35 +02:00
GaelVaroquaux
c2b356bf9c
DOC clustering comparison: link table and figure
2012-03-26 00:17:35 +02:00
GaelVaroquaux
c1eeb51fcd
DOC: better clustering comparison table
2012-03-26 00:17:35 +02:00
GaelVaroquaux
e64b7a62fc
ENH: summary table on clustering
2012-03-26 00:17:35 +02:00
Andreas Mueller
57e81471a5
Merge pull request #648 from amueller/linear_model_class_weights
...
MRG class_weights constructor parameter in RidgeCV
2012-03-25 07:54:45 -07:00
Olivier Grisel
96726707d9
typo + cosmetics
2012-03-25 00:26:23 +01:00
Andreas Mueller
ff1ca340e4
DOC added reference for EllipticEnvelop and fixed some sphinx errors.
2012-03-24 20:53:14 +01:00
Andreas Mueller
ef1986103e
DOC: Added ElllipticEnvelop to the References
2012-03-23 11:51:16 +01:00
Peter Prettenhofer
d452cde4a1
Merge branch 'master' into gradient_boosting
2012-03-22 22:28:25 +01:00
Jaques Grobler
0d63d785e7
Merge branch 'master' into WIP_tut
...
Conflicts:
examples/linear_model/plot_ols.py
2012-03-22 17:12:36 +01:00
Peter Prettenhofer
057caefa81
update docs
2012-03-22 08:43:06 +01:00
Andreas Mueller
0fe20c3ab9
DOC Added clustering functions to references.
2012-03-21 20:53:11 +01:00
Robert Layton
34f4c14444
Sparse tests pass when using shrinkage
...
Code cleaning and optimisation still to go
2012-03-20 20:30:28 +11:00
Peter Prettenhofer
c831764bf8
Merge branch 'master' into gradient_boosting
2012-03-19 10:00:34 +01:00
Lars Buitinck
20b04689d9
Merge branch 'dictvectorizer'
...
Conflicts:
doc/modules/feature_extraction.rst
2012-03-18 18:09:43 +01:00
Peter Prettenhofer
67ac31d615
boston -> Boston
2012-03-18 12:14:21 +01:00
Peter Prettenhofer
2359ac092f
type (differentiable)
2012-03-18 12:13:21 +01:00
Peter Prettenhofer
4fe5520249
enhanced documentation
2012-03-18 12:11:15 +01:00
Peter Prettenhofer
15e46bf640
mention multi-class
2012-03-18 11:57:33 +01:00
Peter Prettenhofer
698150583b
Merge remote branch 'upstream/master' into gradient_boosting
2012-03-18 11:53:15 +01:00
Robert Layton
06cda29e73
Narrative documentation
2012-03-18 21:43:31 +11:00
Lars Buitinck
7af5f6a549
BUG fix doctests for DictVectorizer (nose 0.X compat)
2012-03-17 14:52:24 +01:00
Lars Buitinck
edd77483e4
DOC narrative documentation for DictVectorizer
2012-03-17 01:49:18 +01:00
Nick Wilson
c90a329080
Add verbose parameter to SVMs ( fixes #250 )
...
Add a verbose parameter to SVMs to get verbose output from libsvm
printed to stdout while fitting a model.
Note that this setting takes advantage of a per-process runtime setting
in libsvm that, if enabled, may not work properly in a multithreaded
context.
2012-03-15 00:16:06 -07:00
Nick Wilson
4be3be5bac
FIX: Add NORMALIZE_WHITESPACE to broken doctest
2012-03-14 12:17:19 -07:00
Peter Prettenhofer
835af05624
Merge remote branch 'upstream/master' into gradient_boosting
...
Conflicts:
sklearn/tree/tree.py
2012-03-13 07:16:35 +01:00
Peter Prettenhofer
de3991a5b5
updated documentation: plots for gradient_boosting, new sample generator
2012-03-12 22:19:20 +01:00
Yannick Schwartz
1caa9e7793
updated doc/whats_new.rst, doc/modules/classes.rst and doc/modules/cross_validation.rst for the sss
2012-03-12 16:20:48 +01:00
Andreas Mueller
1b8b088dd4
DOC fixed reference to an example (that I also broke before)
2012-03-11 15:29:25 +01:00