Commit Graph

46 Commits

Author SHA1 Message Date
Andreas Mueller 7c0d1b686e FIX typo in dataset generation 2012-10-28 09:04:38 +00:00
Andreas Mueller 72c360ceb4 ENH simplify circles dataset generator, make classes balanced. 2012-10-28 09:04:38 +00:00
Andreas Mueller 1406cdfbb7 ENH use the numbers module introduced in Python 2.6 to check for number types.
Fixes 1255.
2012-10-24 18:44:53 +02:00
Gael Varoquaux 7c70198efc FIX: doctests under Windows 64bit
Thanks to @bdholt1 for reporting these errors
2012-10-07 23:12:56 +02:00
Gilles Louppe 3f49b216cd DOC: return values of make_moons and make_circles 2012-10-02 11:57:38 +02:00
Andreas Mueller 713ba6006e COSMIT pep8 2012-09-04 17:24:01 +01:00
Andreas Mueller 4c8c3be75c ENH more robust testing if parameter is int or float, as suggested by @larsmans in #1066. 2012-09-01 14:29:35 +02:00
Vlad Niculae 3c02e6cc6c Update make_regression return shapes in docstring 2012-06-05 19:50:29 +03:00
Vlad Niculae f26e2371b6 ENH: make_regression supports multiple targets 2012-06-05 18:18:00 +03:00
Peter Prettenhofer 10d641c722 Merge branch 'gradient_boosting' of https://github.com/scottblanc/scikit-learn into scottblanc-gradient_boosting 2012-03-07 21:35:30 +01:00
Andreas Mueller 346506f2a1 Merge pull request #674 from amueller/sample_datasets
MRG Cluster sample datasets
2012-03-04 11:03:11 -08:00
Andreas Mueller 3a030bbe22 MISC simplified kpca example with new dataset generator, another minor fix in generator 2012-03-04 15:37:30 +01:00
Andreas Mueller 667ef37714 DOC move references from Notes to References section in docstrings 2012-03-04 15:16:51 +01:00
Andreas Mueller c93c1a290e FIX broke label_probagation example, now fixed it again. 2012-03-04 14:38:14 +01:00
Andreas Mueller 11ba3f725a ENH clustering example with spectral clustering and ward with connectivity. looking better now, still not perfect. 2012-03-04 14:30:56 +01:00
Andreas Mueller db1e1868be ENH cluster comparison example (starting) 2012-03-04 00:43:36 +01:00
Andreas Mueller 40c45ca4e6 ENH new samples generators for classification and clustering. Refactored label propagation example a bit 2012-03-04 00:33:24 +01:00
Andreas Mueller e546e1724d DOC more readable make_friedman docs.... 2012-03-03 22:44:36 +01:00
Peter Prettenhofer 16c5ed0235 added artificial dataset generator from Hastie et al. 2009, Example 10.2 2012-01-24 09:45:49 +01:00
Andreas Mueller b28e6e4671 ENH: Replace asserts by appropriate errors. Fixes the rest of issue #570. 2012-01-20 20:27:34 +01:00
Andreas Mueller e4c44e8f4e COSMIT typo 2012-01-06 14:16:59 +01:00
Olivier Grisel cd27709440 FIX: py3k integer division in samples generator 2011-12-25 14:46:10 +01:00
Lars Buitinck 0e74917afd PY3K fix in datasets.samples_generator 2011-12-24 22:53:28 +01:00
Andreas Mueller 3a6e490e05 COSMIT pep8 2011-12-23 19:12:52 +01:00
Gael Varoquaux c730edc9c8 Merge pull request #512 from amueller/doc_consitency
MRG The consistency brigade strikes again
2011-12-23 00:57:09 -08:00
Andreas Mueller 6c17d0d8af COSMIT make 'References' bold and minor other fixes. 2011-12-22 20:57:54 +01:00
Andreas Mueller 355a51c557 FIX: Section Returns not Return 2011-12-22 19:34:33 +01:00
Vlad Niculae d0ac763f2e Allow unlabeled samples in multilabel ex, collab between @vene and @mblondel on the plane 2011-12-22 12:42:49 +01:00
Lars Buitinck ff517ddf32 DOC rm References sections in docstrings
According to @GaelVaroquaux, this breaks the NumPy docstring parser.
Moved references to Notes or See also sections, depending on context.
2011-12-21 18:05:22 +01:00
Lars Buitinck 18a70f7e99 Merge remote-tracking branch 'vene/lars_multilabel' into multilabel
Conflicts:
	sklearn/tests/test_multiclass.py
2011-12-21 13:54:42 +01:00
Vlad Niculae fbab710d9d ENH: Added the synthetic example 2011-12-21 13:36:00 +01:00
Lars Buitinck ad53ecd657 Merge branch 'master' into multilabel
Conflicts:
	sklearn/datasets/_svmlight_format.c

Solved by re-cythonizing.
2011-12-21 11:15:33 +01:00
Vlad Niculae 5ebcd59a38 EHN: multilabel samples generator can create different number of labels per instance 2011-12-21 10:54:04 +01:00
Mathieu Blondel 1648c2163b Multilabel classification dataset generator. 2011-12-20 13:47:22 +01:00
Gilles Louppe c4d40ad087 DOC: Return->Returns 2011-12-20 13:47:16 +01:00
Gilles Louppe a8c5a5a672 DOC: Fixed broken links 2011-12-19 16:24:38 +01:00
Kenneth C. Arnold 96fe9597d2 Cosmit 2011-12-19 08:28:52 +01:00
Lars Buitinck 06de43601e drop Python 2.5; no more need for utils.fixes.product
+vanity: slap my name on fixes for Counter :)
2011-12-10 10:20:13 +01:00
Olivier Grisel b7e24915a0 PEP8 + PEP257 in samples_generator 2011-11-10 23:43:11 +01:00
Gael varoquaux 0a29d069bf DOC: Better glasso example 2011-11-10 23:43:09 +01:00
Gael varoquaux 519ab77238 ENH: example for l1 covariance estimator 2011-11-10 23:43:09 +01:00
Lars Buitinck 71d524396c FIX replace np.atleast_2d with new utils.array2d
atleast_2d will pass through np.matrix
2011-10-25 15:16:31 +02:00
Fabian Pedregosa 43c5656f9e Some Python 2.5 fixes. 2011-09-21 10:37:13 +02:00
Fabian Pedregosa ddf4b72109 Move project directory from scikits.learn to sklearn 2011-09-02 12:06:57 +02:00
Fabian Pedregosa 68f27e3790 Revert "Move project directory from scikits.learn to sklearn"
This reverts commit fd0d3b879d.
2011-09-02 12:03:18 +02:00
Fabian Pedregosa fd0d3b879d Move project directory from scikits.learn to sklearn 2011-09-02 11:38:24 +02:00