Commit Graph

88 Commits

Author SHA1 Message Date
Jaques Grobler db38edb7ea delete redundant file, merged some examples and updated links 2012-03-07 03:55:18 +01:00
Jaques Grobler 30150cfdef Merged some examples into examples folder.
- updated links accordingly
- renamed miss-spelt excercice to exercise
2012-03-06 23:40:49 +01:00
Alexandre Gramfort 5a7f07adae FIX : fix SVM examples with new scale_C=True 2012-02-22 15:46:54 +01:00
Andreas Mueller 868eac134f Merge branch 'master' into svm_class_weights
Conflicts:
	doc/modules/svm.rst
	doc/tutorial.rst
	doc/whats_new.rst
	sklearn/linear_model/logistic.py
	sklearn/svm/base.py
	sklearn/svm/classes.py
	sklearn/svm/sparse/classes.py
	sklearn/svm/tests/test_sparse.py
	sklearn/svm/tests/test_svm.py
2012-02-15 00:12:02 +01:00
Olivier Grisel b504ae451e avoid pl.set_cmap and align colors of colormesh with scatter 2012-02-10 09:27:52 +01:00
Andreas Mueller 36fa40a254 MISC Adjusted class_weight param in examples, fixed legend in unbalanced dataset examples. 2012-02-07 09:46:01 +01:00
Olivier Grisel 88d9b09ff5 ENH: use linear gradient cmap for more readable hyperparam heatmap 2012-02-01 20:34:42 +01:00
Andreas Mueller 68a8b8b46d ENH renamed best_estimator and best_score in examples and tests. 2012-01-05 23:35:33 +01:00
Gael varoquaux 12d2913c74 COSMIT: avoid set_cmap and pcolormesh in example
..and beautify example

set_cmap is bad because it has a side effect

pcolormesh is much slower than imshow and produces unefficient PDFs and
SVGs.
2011-12-30 11:57:17 +01:00
Gael varoquaux 361bfdef2b COSMIT: beautify the plot_oneclass example
It's on the main page, so it should be beautiful.
2011-12-20 13:11:44 +01:00
VirgileFritsch d102afbeac Magnify novelty and outlier detection examples again + minor fixes. 2011-12-20 13:11:43 +01:00
VirgileFritsch 281f5d6522 Add tools to perform outlier detection with sklearn + documentation. 2011-12-20 13:11:43 +01:00
Gilles Louppe 63331849ea DOC: Fixed links to modules in the example gallery 2011-12-19 16:07:01 +01:00
Gael varoquaux e385daeed6 COSMIT 2011-12-18 09:25:16 +01:00
Alexandre Gramfort 28e4918a13 MISC: typos + subplot adjust 2011-12-17 08:58:24 +01:00
Alexandre Gramfort 8bae14d69d ENH : more contrasted colormap 2011-12-17 08:39:59 +01:00
Andreas Mueller 034ca3f9f2 Example illustrating parameters of an RBF SVM 2011-12-16 23:23:41 +01:00
Andreas Mueller 5ad5207dad COSMIT pep8 2011-12-16 22:55:42 +01:00
Andreas Mueller a95ace9fae Merge branch 'master' of https://github.com/scikit-learn/scikit-learn 2011-12-16 22:48:14 +01:00
Andreas Mueller 3578396c40 DOC Nonlinear SVM example changed to satisfy my sense of aesthetics. Hope you like it. 2011-12-16 22:46:28 +01:00
Fabian Pedregosa 488cbeaa4a Merge pull request #466 from amueller/svm_iris_example
RBF Svm iris example
2011-12-16 11:07:27 -08:00
Andreas Mueller ca3602d735 DOC: Fixed legend in iris svm example 2011-12-16 17:09:45 +01:00
Andreas Mueller 7fb3793bea Examples: Make SVM parameter estimation look good on the web. 2011-12-16 16:43:45 +01:00
Andreas Mueller 8b0e18b511 Example for finding the hyperparameters in a RBF SVM 2011-12-16 16:32:58 +01:00
Andreas Mueller 57b458106d Examples: Replaced NuSVM by rbf SVM in example. RBF-SVMs are really important, NuSVMs not so much imho. 2011-12-16 00:50:29 +01:00
Gael varoquaux dba25389aa COSMIT: prettify plot_oneclass
It's on the front page: it must give a pretty picture :)
2011-11-11 14:58:46 +01:00
Olivier Grisel ca48f82ab8 s/\bcross_val\b/cross_validation/g 2011-09-06 14:44:32 +02:00
Gael varoquaux 4d1dcd2e65 DOC: scikits.learn -> sklearn 2011-09-03 09:10:40 +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
Lars Buitinck 8674b01781 ENH set_params method on BaseEstimator, deprecate estimator params to fit
Passing estimator parameters to fit leads to a situation where fit might
half-fail when it has set the parameters, but then fails to do input
validation.
2011-08-23 12:46:36 +02:00
Fabian Pedregosa e1ecda69b0 ENH: better doc and tests for unbalanced svm's 2011-03-31 12:01:57 +02:00
Fabian Pedregosa 578154b6d3 PEP8 fixes. 2011-02-03 18:36:57 +01:00
Fabian Pedregosa c777ee7e26 Nicer support vectors in example plot_separating_hyperplane.py
Idea taken from svm_gui.py
2011-02-02 11:53:51 +01:00
Fabian Pedregosa 941c18a79e Turn off axis in plot_iris.
Looks better in the doc.
2011-02-02 06:41:44 +01:00
Olivier Grisel 9847703415 moving real word examples to the applications subfolder 2010-12-05 21:40:38 +01:00
Alexandre Gramfort 52f9e4676a Merge branch 'neighbor_barycenter'
closing https://github.com/scikit-learn/scikit-learn/pull/23

ENH : adding kneighbors_graph to build the graph of neighbors as a sparse matrix
ENH : adding NeighborsBarycenter for regression pbs using k-NN
MISC : reindenting BallTree C++ code (no tabs + 4 spaces)
API : rename k->n_neighbors

DOC: adding NeighborsBarycenter to doc

Conflicts:
	examples/svm/plot_weighted_samples.py
2010-12-02 15:23:21 -05:00
Fabian Pedregosa cb50708c93 Cosmetic changes in plot_weighted_samples.py 2010-11-29 12:30:45 +01:00
Alexandre Gramfort c9abe509af pep8 in plot_weighted_samples.py 2010-11-27 18:21:05 -05:00
Fabian Pedregosa ecce971725 Initial support for weighted samples in svm module.
Also added test for the dense and sparse case.
2010-11-26 13:44:24 +01:00
Peter Prettenhofer 8e9b35e84a Merge branch 'master' of git@github.com:scikit-learn/scikit-learn 2010-11-24 11:35:14 +01:00
Peter Prettenhofer 487b25b34c automatic refitting on radiobutton change and add example.
changed button caption to fit.
2010-11-24 11:33:44 +01:00
Gael varoquaux ab42993e8e BUG: svm_gui: C is not defined for OC-SVM 2010-11-22 18:26:03 +01:00
Peter Prettenhofer fa04de9bb6 added GUI example for SVM.
Example now shows support vectors.
2010-11-23 00:15:42 +08:00
Peter Prettenhofer b90d36ebe9 added tksvm from git://gist.github.com/673953.git. 2010-11-23 00:14:48 +08:00
Peter Prettenhofer 7f4e6d505f added GUI example for SVM.
Example now shows support vectors.
2010-11-22 17:10:58 +01:00
Peter Prettenhofer 51438e44d1 Merge branch 'svmgui' 2010-11-22 16:33:14 +01:00
Fabian Pedregosa 60f72c91f7 Rename predict_margin --> decision_function. 2010-11-19 14:10:01 +01:00
Peter Prettenhofer da3f3faeaa added tksvm from git://gist.github.com/673953.git. 2010-11-18 12:28:45 +01:00