Commit Graph

2128 Commits

Author SHA1 Message Date
Andreas Mueller b28d3bf14b Merge pull request #4464 from vortex-ape/logregcv
Modifies LogisiticRegressionCV doc and docstring
2015-04-01 16:12:17 -05:00
Jack Martin 9e7a660ff6 added import np statements 2015-03-31 10:38:47 -04:00
Jack Martin 22963a0fc0 Added import statement for Lasso example 2015-03-30 10:31:53 -04:00
Vinayak Mehta c6d420ee5f Modified docs 2015-03-30 01:38:17 +05:30
Andreas Mueller 59efcb554f DOC/MAINT remove deleted cluster.Ward from references. 2015-03-25 20:20:53 -04:00
Olivier Grisel c4df19ddb3 Merge pull request #4370 from amueller/0.17_deprecated
[MRG] remove deprecated stuff from 0.17
2015-03-18 21:02:00 +01:00
Olivier Grisel defc0a9370 Merge pull request #4388 from Barmaley-exe/svr-doc-n-test
[MRG + 1] Add SVR mathematical description to the tutorial and a test for decision_function
2015-03-18 20:18:01 +01:00
Andreas Mueller 6beacc3fb6 remove deprecated stuff from 0.17 2015-03-18 14:49:04 -04:00
Loïc Estève a13a5859e8 DOC remove sphinx warnings when generating the doc
and fixes a few other doc problems while I was at it.

The main take-home message is to remember that you need a backslash when
your parameter type description exceeds one line.
2015-03-18 15:49:30 +01:00
Olivier Grisel b1b43c1372 DOC fix broken image link in feature selection 2015-03-18 11:41:33 +01:00
Barmaley.exe eff77f5437 DOC A small change to the SVM's tutorial 2015-03-13 01:29:07 +03:00
Barmaley.exe 9d4e47f1bb DOC Adds SVR description to the tutorial 2015-03-13 00:27:29 +03:00
Ari Rouvinen 85b9ce5afa DOC Fix NMF inconsistency and broken links
In the text X is decomposed into matrices V and H, and in the equation into matrices W and H.

The common literature uses V = WH

http://www.jmlr.org/papers/volume5/hoyer04a/hoyer04a.pdf
http://hebb.mit.edu/people/seung/papers/ls-lponm-99.pdf
2015-03-09 15:19:01 +02:00
Christof Angermueller 6ff4e14395 Update documentation of predict_proba in tree module 2015-03-05 15:33:26 -05:00
Olivier Grisel 60151c0a2a DOC fix broken image link 2015-03-04 09:55:11 +01:00
Olivier Grisel f7efb1a67c Merge pull request #4326 from Barmaley-exe/svm-dual-coef-fix
[MRG + 1] Flip sign of SVM's dual_coef_ in a binary case
2015-03-03 22:08:22 +01:00
Andreas Mueller e01a16dbd1 Merge pull request #4325 from amueller/more_minor_doc_fixes
[MRG+1] More minor doc fixes
2015-03-03 13:47:16 -06:00
Andreas Mueller deeaf0ad35 change default to shuffle=True in SGDClassifier and friends. 2015-03-03 11:56:23 -05:00
Andreas Mueller e0f5049a3d minor fixes in docs. 2015-03-03 11:07:18 -05:00
Barmaley.exe dbe4971c14 Updates whats new and fixes the documentation 2015-03-03 03:15:51 +03:00
Andreas Mueller be69297bc8 don't use unicode in latex. That just complicates things too much. Also, who the hell uses unicode whitespace? 2015-03-02 13:25:38 -05:00
Andreas Mueller 9bc4de8dae some fixes for sphinx and in examples 2015-03-02 12:50:53 -05:00
Alexandre Gramfort 6b0f75ccc5 COSMIT : pep8 + 2 spaces 2015-02-20 19:37:11 +01:00
Jan Hendrik Metzen c340f1f0b0 DOC Narrative doc for the calibration module 2015-02-20 19:37:11 +01:00
Andreas Mueller 774eec5468 Merge pull request #3891 from ragv/decision_function_ovo_1523
[MRG+2.5] Add decision_function for OneVsOneClassifier.
2015-02-14 17:56:26 -05:00
Andreas Mueller 0c330827c5 DOC minor improvement in Ensemble user guide 2015-02-12 08:32:52 -05:00
Fabian Pedregosa dbc5d707c6 Change loss names for LinearSVC and LinearSVR()
the names are now consistent across methods

In LinearSVC:
   'l1' -> 'hinge'
   'l2' -> 'squared_hinge'
In LinearSVR:
   'l1' -> 'epsilon_insensitive'
   'l2' -> 'squared_epsilon_insensitive'
2015-02-09 11:09:16 +01:00
Raghav R V e20d1a4391 ENH decision_function now returns #votes and scaled scores.
ENH use the decision_function to compute the prediction
TST Added test to assertain correlation of decision function and prediction
    Add test to check if ties are broken using decision function
    Add decision_function tests to check for votes/scores
    ovo_ties test will use decision function to calculate votes and score.
DOC Add entry to OvO's doc regarding how ties are broken
DOC Clean up the predict / decision_function methods' docstring.
PEP8 Minor PEP8 clean up.
2015-02-09 14:39:11 +05:30
Andreas Mueller eaf1e8c256 Explain why we multiply mean by two 2015-02-07 08:20:16 +01:00
Hampus Bengtsson bfef274d2e 5 of 6 are zeros, not ones. 2015-01-30 13:05:40 +01:00
trevorstephens f81a88c674 fix rst table layout 2015-01-25 19:42:39 -08:00
Andreas Mueller 0c5b0f7f77 add PredefinedSplit to classes.rst and whats_new.rst 2015-01-21 17:05:24 -05:00
Thomas Unterthiner a6723edca5 ENH: cross-validate over predefined splits 2015-01-21 13:04:50 +01:00
Mathieu Blondel bdacaba7c2 Kernelized ridge regression -> Kernel ridge regression 2015-01-21 11:50:54 +09:00
Jan Hendrik Metzen 9046a38616 DOC Added kernel_ridge to classes.rst 2015-01-18 10:47:09 +01:00
Jan Hendrik Metzen 4d68c53beb DOC Polishing doc of kernel_ridge 2015-01-18 11:01:43 +09:00
Jan Hendrik Metzen 60e3d0464d DOC Revised documentation of kernel ridge regression 2015-01-18 11:01:43 +09:00
Jan Hendrik Metzen 4b8a1a782c DOC Resolved minor issues in documentation of kernel_ridge 2015-01-18 11:01:42 +09:00
Jan Hendrik Metzen c38e14a3ab DOC Added narrative doc for kernelized ridge regreesion 2015-01-18 11:01:42 +09:00
Andreas Mueller c970fb51e7 COSMIT spelling 2015-01-15 15:09:35 -05:00
Andreas Mueller 6e0b3820c2 TYPO in model evaluation docs 2015-01-15 12:11:58 -05:00
Lars Buitinck 6e70a967fe DOC Birch: spaces 2015-01-08 11:20:37 +01:00
Alexandre Gramfort 17dc6ab4b6 Merge pull request #4012 from pricingassistant/doc-typo-fix
Small doc typo fix in Model evaluation
2014-12-27 10:05:28 +01:00
Sylvain Zimmer 8b4ddc0a86 Another doc typo fix 2014-12-27 00:37:23 -05:00
Helder d6a12c4479 Fix a typo on svm.rst 2014-12-24 13:58:37 -02:00
Andreas Mueller 1aa5a9fbc2 Merge pull request #3523 from cle1109/slda
[MRG+1] LDA refactoring
2014-12-19 13:04:16 -05:00
Olivier Grisel a8fc5228c1 ENH more LSH scalability example and doc improvements 2014-12-18 19:47:04 +01:00
maheshakya e5cd707b2d DOC Modified documentation of approximate neighbors. 2014-12-18 19:47:03 +01:00
maheshakya f246fb6eb3 Added scalability plots into documentation. 2014-12-18 19:45:07 +01:00
maheshakya ed4feb7873 DOC Added new section-Mathematical description of LSH. 2014-12-18 19:45:07 +01:00