Commit Graph

198 Commits

Author SHA1 Message Date
Andreas Mueller e2f56656e6 Make more clear that adding algorithms is not the preferred way to start contributing. 2015-07-28 13:06:31 -05:00
Joel Nothman 99d08b571e DOC organise documentation hierarchy / table of contents 2015-06-12 08:09:41 +10:00
TomDLT 088cbd6e35 DOC fix rendering of code-block 2015-06-11 10:50:57 +02:00
Daniel Kronovet 97ba6072d5 Fixed factual error in descriptino of PR flow 2015-06-08 11:22:17 -04:00
Daniel Kronovet 9b4204ed57 additional typos, formatting, and links for doc/developers/index and /utilities 2015-06-08 11:22:17 -04:00
Daniel Kronovet 78e45fbb8b fixed typos and update formatting in doc/developers/index 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 196a7b7dac fix warning message by not using assert_raise_message, which adds escaping. 2015-04-28 16:46:13 -04:00
Andreas Mueller 669a4ea853 ENH add high-level estimator-validation function 2015-04-28 16:46:13 -04:00
Andreas Mueller aae305c3c8 Merge pull request #4418 from amueller/classifier_regressor_tags
[MRG + 2] Classifier and regressor tags
2015-04-02 10:15:56 -05:00
Andreas Mueller acb21bb79e DOC adding clusterer tag to dev docs. 2015-04-02 11:15:10 -04:00
Vinayak Mehta 4d7fb16466 Removed array2d from developer docs 2015-04-02 12:52:45 +05:30
Andreas Mueller d89c215013 Add tags to classifiers and regressors to identify them as such. 2015-03-31 19:59:49 -04:00
Andreas Mueller 3b320996a8 DOC fix link description to setuptools in devdocs. 2015-03-20 14:17:42 -04:00
Andreas Mueller 48117d5da7 Merge pull request #4392 from sinhrks/setparams
DOC: Updated set_params doc
2015-03-16 14:14:29 -05:00
sinhrks f0d86e8470 DOC: Updated set_params doc 2015-03-14 09:00:29 +09:00
Martin Ku 2bc7ffef1c Add "See also" for selectors and scoring funs
Details:
- Reference uni variate selectors and scoring funcs
- Indicate chi2 is only for non-negative features
- Add "See also" formatting rules to contributing
- Add example of good "References" in docstrings
- Misc small doc updates for uni feature selection
  - Add missing periods (for consistency)
  - Anova -> ANOVA (for consistency)
  - Make a numbered list render per item per line (for readability)
  - Capitalize the first letter of a numbered list (for readability)
2015-03-10 21:40:25 +08:00
Andreas Mueller e0f5049a3d minor fixes in docs. 2015-03-03 11:07:18 -05:00
Andreas Mueller cd63accc05 Add test that score takes y, fix KMeans, FIX pipeline compatibility of clustering algorithms! 2015-02-06 13:26:42 +01:00
Andreas Mueller c970fb51e7 COSMIT spelling 2015-01-15 15:09:35 -05:00
Lukas Michelbacher 389a43fd6f Fix typo 2014-12-18 13:36:12 +00:00
Raghav R V 7e40e59735 DOC added note to warn users not to __init__ params with trailing _
While defining custom estimators, users are discouraged to define
parameters with trailing _
2014-12-07 02:51:29 +05:30
Jean Kossaifi 956018acb9 Added link to the setuptools doc and a note on the need to rebuild every time a
compiled extension is modified
2014-11-29 16:29:05 +00:00
Jean Kossaifi 0a8ede18de Minor doc enhancement: documented setup develop. 2014-11-29 14:43:26 +00:00
Thomas Unterthiner 52adb5cae7 ENH Add 'axis' argument to sparsefuncs.mean_variance_axis 2014-09-03 13:47:48 +02:00
Joel Nothman 96b6642239 DOC mention doc-building dependency on Pillow 2014-07-21 16:53:28 +10: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
Andreas Mueller 5b247f90e4 move around examples for better structure. 2014-07-17 09:35:30 +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
Joel Nothman 87253738c0 DOC fix typo 2014-05-24 21:48:39 +10:00
Michele Orrù 337d9e6182 Typo.
s/totime/tottime/
2014-05-24 11:03:57 +02:00
Lars Buitinck adc24fda52 DOC no input validation in constructors 2014-04-13 16:52:18 +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 5f3f794069 MAINT refactor fast_dot
* check for NumPy >= 1.7.2 at import time, instead of in every call;
* save a function call when newer NumPy is available;
* rewrote documentation;
* put the docstring on fast_dot instead of _fast_dot;
* remove spurious warnings for matrix-vector multiplications (some of these
  are suboptimal with older np.dot, but the good ones were triggering a
  warning as well).
2013-12-29 20:11:58 +01:00
Lars Buitinck 9a9b9e85ed DOC+COSMIT: typos, lots of them
Fixes #2102. There's one typo left in joblib which is better fixed
upstream.
2013-09-13 16:29:42 +02:00
dengemann ffbead9f36 FIX: test doc np.allclose 2013-08-25 15:38:21 +02:00
dengemann fbd6d9c8f6 ENH: update version checking 2013-08-25 12:17:33 +02:00
dengemann 599ba2d976 FIX: ghost diff 2013-08-25 12:00:06 +02:00
dengemann f91fba2f01 ENH: restrict fast_dot to np < 1.8 2013-08-25 11:16:22 +02:00
dengemann 83f48e4df1 FIX: performance.rst doctest 2013-08-25 11:16:21 +02:00
dengemann 7808e09d76 FIX: proper doctest 2013-08-25 11:16:21 +02:00
dengemann 005d2100e3 COSMITS 2013-08-25 11:16:21 +02:00
dengemann 6c30677abb ENH/DOC: add performance tips on fast_dot 2013-08-25 11:16:21 +02:00
jamestwebber aa251cddd3 DOC: removed duplicated Python 3 section
Fixes #2383.
2013-08-23 16:36:13 +02:00