Commit Graph

57 Commits

Author SHA1 Message Date
Julien Jerphanion 20ee33a95a
DOC Remove `graph_shortest_path` references (#20677) 2021-08-04 16:40:16 +02:00
Sean Benhur J 04f84c6d08
DOC Added utils.gen_batches in documentation (#19688) 2021-03-17 15:53:00 +01:00
Maren Westermann 70e1558607
DOC shorten links in doc/* modules (#17820)
* shorten links in doc modules

* fix links

* implement suggested changes

* try to fix links with tilde sign

* change back broken links in computing.rst and try make link in faq.rst work

* implement reviewer's suggested changes
2020-08-21 14:31:41 +02:00
Nicolas Hug b92455a6b2 MAINT Deprecate all of utils.testing except all_estimators (#15367) 2019-10-28 17:28:56 +01:00
Guillaume Lemaitre af4247b152 DEP remove utilities related to mldata (#13798) 2019-05-21 18:37:09 +10:00
Thomas Fan a7b8b9e9e1 MAINT Removes total_seconds completely in benchmarks (#12969) 2019-01-13 16:41:28 +01:00
Dmitry Vukolov c8a4132774 DOC check_array() and check_X_y() documentation update (#12340) 2018-10-10 21:16:44 +11:00
Sriharsha Hatwar e81bcd5094 Added the changes to remove the documentation support statements for Python 2 (#12083) 2018-09-22 15:10:46 +02:00
Joel Nothman 14e7c328df Restructure access to vendored/site Joblib (#11471)
In order to fix #11408, this swaps `joblib` and `_joblib`. It however, allows users to access joblib's `Memory` or `Parallel` functionality without accessing `sklearn.externals._joblib` by importing `Memory`, `Parallel`, etc. into `sklearn.utils`.
2018-07-17 18:02:11 +02:00
Loïc Estève 20661b5018
TST: only run doctests on numpy 1.14. (#10835)
Fix doctests due to numpy 1.14 formatting changes.
2018-03-27 07:44:40 +02:00
Chady Kamar 5c98de1a59 DOC: fix links to reference API in utilities.rst (#10683) 2018-02-24 19:42:44 +01:00
Artiem K 63a2f0a02b MAINT Rename GraphLasso to GraphicalLasso (#10078) 2018-02-20 11:59:52 +11:00
Kumar Ashutosh e66aa6dc70 ENH Ducktyping to allow for alternative Memory implementations (#9584) 2017-08-30 15:21:24 +10:00
Vlad Niculae 738053e657 [MRG+2] MAINT: no longer backport graph_laplacian, use scipy one (#9077) 2017-06-09 16:23:55 +02:00
Joel Nothman e31c4f1e9e DOC List more utils in API ref (#8827) 2017-06-08 15:31:26 +02:00
Naoya Kanai bd0fc236e0 [MRG+1] MAINT drop SciPy < 0.13 (#8854)
Remove sklearn.utils.fixes functions that are not needed for scipy >= 0.13 and keep deprecated wrappers in other modules.
2017-06-02 23:36:33 +02:00
jblackburne ba7cf38f99 Removed isclose from _binary_clf_curve. (#7353)
Added a bugfix report to whats_new.rst. Modified a unit test to check for the kind of problems caused by isclose.
2016-09-11 12:48:32 +10:00
Rémy Léone 9b7176dd9d [DOC] Fix broken links 2016-03-23 12:45:34 -07:00
Raghav R V e3afc0e8c9 MAINT move custom error/warning classes into sklearn.exceptions
ENH NonBLASDotWarning -> EfficiencyWarning; Improve error message
DOC Add exceptions module to modules/classes.rst
MAINT Move ConvergenceWarning, UndefinedMetricWarning et al into exceptions
MAINT Remove ChangedBehaviorWarning from base
DOC/FIX Improve DataConversionWarning's docstring
2015-10-19 22:35:35 +02:00
Daniel Kronovet 9b4204ed57 additional typos, formatting, and links for doc/developers/index and /utilities 2015-06-08 11:22:17 -04:00
TomDLT 89c1018c64 ENH improve check_array
ENH improve check_array to warn on dtype conversions

ENH make check_array accept several dtypes

ENH change validation with improved check_array

ENH change astype to avoid copy if possible

ENH remove warn_if_not_float
2015-05-19 16:13:42 +02:00
Andreas Mueller c970fb51e7 COSMIT spelling 2015-01-15 15:09:35 -05:00
Thomas Unterthiner 52adb5cae7 ENH Add 'axis' argument to sparsefuncs.mean_variance_axis 2014-09-03 13:47:48 +02:00
Andreas Mueller c235c3b566 ENH add allowed_sparse named argument for @ogrisel 2014-07-20 15:31:28 +02:00
Andreas Mueller 6e2a83b4e1 remove check_arrays stuff and old input validation 2014-07-20 13:31:45 +02:00
Lars Buitinck c176ced74d DOC double backticks for fixed-width (code) font
Fixes #3337. Also other minor fixes while I was at it.
2014-07-06 14:18:33 +02:00
Jeffrey Blackburne 6ea9fbeddb Added a backport of numpy.isclose from numpy v1.8.1. This function was not available until numpy v1.7 2014-06-13 22:02:59 -07:00
Joel Nothman fc0150d08d DOC/FIX Address @arjoly's comments 2014-06-05 11:20:36 +02:00
Gael Varoquaux f6d3e31b61 MAINT: commit generated code 2014-03-03 20:30:30 +01:00
Lars Buitinck 23b3cc2eb5 MAINT drop support for SciPy < 0.9
TODO: get rid of solve_triangular. Just replacing it by scipy.linalg's
breaks OMP and least-angle regression.
2014-03-02 20:13:57 +01:00
Lars Buitinck b97fb3c5fc MAINT drop support for NumPy < 1.6.1 2014-03-02 20:13:57 +01:00
Lars Buitinck bb743ddb2a ENH speed up SVMlight loader using Cython's array support
Loading the binary covtype dataset from
http://www.csie.ntu.edu.tw/~cjlin/libsvmtools/datasets/binary.html
now takes 1/3 less wall clock time, which includes disk I/O and
decompression (bzip2).

Got rid of ArrayBuilder in the process.
2014-01-05 22:10:02 +01:00
Lars Buitinck 31ad968af6 MAINT remove Counter from fixes; no longer used 2013-08-12 12:52:17 +02:00
Robert Layton 4f125c75d9 Reference to graph components updated in dev docs 2013-07-22 10:27:25 +02:00
Justin Vincent f1a40a4df4 Make the fixes 2.6 compatible 2013-07-10 16:01:10 -04:00
Justin Vincent fe52584e83 Got all the doc-tests working 2013-07-10 10:52:25 -04:00
Olivier Grisel 3379504b6b PY3: fix urlopen in mldata and california housing loaders 2013-03-19 17:56:57 +01:00
Lars Buitinck cbd3e5e8a0 P3K developer docs 2013-03-19 17:42:01 +01:00
Arnaud Joly 5bcf25fc2f ENH multilabel metrics: accuracy, Hamming, 0-1 loss 2013-03-02 20:41:34 +01:00
Andreas Mueller cc63e1cbb4 ENH slight improvement of common tests. 2012-12-24 14:58:56 +01:00
Arnaud Joly 9aa9a1060a DOC add utitilies to the doc 2012-12-21 14:48:02 +01:00
Andreas Mueller c0a057843c ENH rename Scaler to StandardScaler everywhere 2012-09-23 17:31:15 +01:00
Andreas Mueller e95d4613e0 ENH Added copy keyword to safe_sqr, added to dev docs. 2012-08-16 17:51:01 +01:00
Lars Buitinck 32f9a7cefb COSMIT replace utils.testing.assert_in with Nose-compatible functions 2012-04-05 14:39:07 +02:00
Olivier Grisel e33d41e81e DOC: give usage example 2012-01-18 06:21:02 +01:00
Olivier Grisel 8b0fe8cb86 DOC: add entry for murmurhash in the developer utilities section 2012-01-17 02:40:57 +01:00
Mathieu Blondel 812b41ca44 Typos. 2012-01-13 19:28:55 +09:00
Mathieu Blondel c988ad77bb Add safe_mask to developer doc. 2012-01-13 19:22:02 +09:00
Olivier Grisel 0f6c525d7e ENH: renamed fast_svd to randomized_svd + related improvements 2011-12-31 14:31:55 +01:00
Olivier Grisel 3efe8d3182 DOC: document sparsefuncs cython routines in developer section. 2011-12-28 11:01:04 +01:00