Fabian Pedregosa
780fb237d2
DOC: make LinearSVR appear in the doc reference
2014-12-15 18:12:20 +01:00
Aldrian Obaja
1e8bdb859e
FIX bug in fit_params assumed to be an array
...
Fixes gh-3957.
2014-12-15 18:07:05 +01:00
Manoj Kumar
f34648453b
Merge pull request #3946 from MechCoder/doc_fix
...
[MRG+1] Fix FeatureAgglomeration docs
2014-12-15 05:07:22 -08:00
MechCoder
0f3cf103cf
Replace feature with sample
2014-12-15 13:40:58 +01:00
MechCoder
a295697bfd
FIX: Raise AttributeError for fit_predict
2014-12-15 13:26:13 +01:00
Gael Varoquaux
5da34287de
Merge pull request #3953 from Titan-C/savefigarg
...
Use correct savefig arguments in gen_rst.py
2014-12-15 10:01:06 +01:00
Alexandre Gramfort
6039b1864b
Merge pull request #3824 from nmayorov/rfecv_bugfix
...
[MRG+1] FIX: Bug in RFECV when step is not 1
2014-12-15 09:06:41 +01:00
Nikolay Mayorov
ad7e772422
Fixed a bug in RFECV when step != 1
2014-12-15 02:53:27 +03:00
Alexandre Gramfort
2ceed3b57b
Merge pull request #3964 from bwignall/boostdoctypo
...
CLN: Fix typo in comment
2014-12-13 16:11:07 +01:00
Brian Wignall
48cbbab89b
CLN: Fix typo in comment
2014-12-13 09:14:47 -05:00
Alexandre Gramfort
69d393af6f
Merge pull request #3931 from dsullivan7/cwwarn
...
[MRG+1] raising warning for class_weight in fit method
2014-12-12 14:57:37 +01:00
Alexandre Gramfort
f2c200e2d6
Merge pull request #3962 from MechCoder/check_X_y
...
[MRG] ENH: Use check_X_y in pairwise_distances_argmin
2014-12-12 14:56:42 +01:00
MechCoder
e6a464b40e
ENH: Use check_X_y in pairwise_distances_argmin
2014-12-12 14:13:34 +01:00
MechCoder
b8b68e3284
COSMIT: Make how to use partial_fit render properly
2014-12-12 13:58:52 +01:00
dsullivan7
6cb191cfd8
changing warning test to use assert_raises_message
2014-12-12 13:27:49 +01:00
Alexandre Gramfort
6dab7c5c8a
Merge pull request #3802 from MechCoder/birch
...
[MRG+1] Clustering algorithm - BIRCH
2014-12-11 23:10:43 +01:00
Alexandre Gramfort
ae614649d7
Merge pull request #3954 from amueller/fix_sgd_learningrate_docs
...
DOC explain t0 in the SGD docstring (currently somewhat confusing)
2014-12-11 15:17:32 +01:00
Andreas Mueller
9d8f3f3996
Merge pull request #3955 from hammer/patch-1
...
'none' is an acceptable value for penalty
2014-12-10 18:48:09 -05:00
Jeff Hammerbacher
bf1691b69a
'none' is an acceptable value for penalty
2014-12-10 18:33:45 -05:00
Andreas Mueller
9392445767
DOC explain t0 in the docstring (currently somewhat confusing)
2014-12-10 18:32:28 -05:00
Óscar Nájera
35e54116bf
facecolor/edgecolor are passed arguments to savefig if they
...
differ from rcParam['figure.facecolor']
From nilearn
2014-12-11 00:16:40 +01:00
dsullivan7
5a019b7202
adding simplefilter for warning
2014-12-10 16:07:46 +01:00
MechCoder
4ebdb3578d
MRG: Fix FeatureAgglomeration docs
2014-12-10 12:55:53 +01:00
MechCoder
f86622d9cb
MAINT: Moved compute_label test to common tests
2014-12-09 16:22:10 +01:00
MechCoder
b9474d02c9
Made the following changes
...
1. Made radius a property.
2. Added test for compute_label.
3. Minor changes to doc and split_subcluster.
4. n_cluster -> clusterer.
2014-12-09 14:48:23 +01:00
jnothman
56ee99c65f
Merge pull request #2679 from jnothman/prf_average_explicit
...
[MRG] Require explicit average arg for multiclass/label P/R/F metrics and scorers
2014-12-09 14:00:23 +11:00
Joel Nothman
081a554698
FIX P/R/F metrics and scorers are now for binary problems only by default
...
Scorers for different average parameters have been added.
2014-12-09 13:56:51 +11:00
Lars Buitinck
89857698a9
DOC clarify RandomTreesEmbedding docstring
2014-12-08 20:30:00 +01:00
MechCoder
ce6a01d7a7
Tuple unpack farthest_dist
2014-12-08 11:49:57 +01:00
Alexandre Gramfort
2cfdc1c5fe
Merge pull request #3940 from ragv/doc_own_estimators
...
[MRG] Added note to advice users not to __init__ params with trailing _ in custom defined estimators
2014-12-06 23:33:45 +01: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
MechCoder
a894b2e680
Update whats_new.rst for n_iter_ attribute
2014-12-05 15:12:11 +01:00
MechCoder
3810578099
Rewrite model if fit is being called after partial_fit or vice versa
2014-12-05 14:07:17 +01:00
MechCoder
13ab4d509a
Explicit error when n_dim changes during partial_fit
2014-12-05 14:07:17 +01:00
MechCoder
815844ded8
FIX: Remove trailing attributes in __init__
2014-12-05 14:07:17 +01:00
MechCoder
54e7f886ce
Rename global_clusters to n_clusters again
2014-12-05 14:07:17 +01:00
MechCoder
30ebaa8a46
Major changes
...
1. Refactored node splitting into a private function called
_split_node.
2. Added copy argument to copy the data once and for all.
3. Removed n_samples_ attribute in CFNode.
4. Removed X and added linear_sum as an argument to the
constructor of _CFSubcluster.
2014-12-05 14:07:17 +01:00
MechCoder
f12fc13ba8
Changes to narrative documentation
2014-12-05 14:07:16 +01:00
MechCoder
767bf266d5
API: Rename n_clusters to global_clusters
2014-12-05 14:07:16 +01:00
MechCoder
c5440bfd13
Made the following changes:
...
1. Make clear that partial_fit(None) enables global clustering.
2. Add compute_labels argument.
2014-12-05 14:07:16 +01:00
MechCoder
b01e21e1b2
Made the following changes.
...
1. Update doc and whatsnew.rst
2. Fix coloring
2014-12-05 14:07:16 +01:00
MechCoder
129f371f85
DOC: Modification to the documentation of threshold
2014-12-05 14:07:16 +01:00
MechCoder
2330834205
Prevent preprocssing for iterating over dense data
2014-12-05 14:07:16 +01:00
MechCoder
000c9b199b
Made the following changes
...
1. Remove call to KNeighborsClassifier
2. Set default branching_factor to 50
2014-12-05 14:07:16 +01:00
MechCoder
42d0dc2bc2
Made the following changes.
...
1. Prevent recomputation of updating centroids.
2. Use algorithm='brute' so that sparse data can be handled.
2014-12-05 14:07:16 +01:00
MechCoder
abc78088b9
Made the following changes
...
1. Fix condition for checking threshold.
2. Fix the global clustering by remapping the samples to the
subcluster_centers.
3. Add tests for threshold.
4. Minor doc and cosmits.
2014-12-05 14:07:16 +01:00
MechCoder
a4e7ff3da1
DOC: Update documentation of _CFNode
2014-12-05 14:07:16 +01:00
MechCoder
64a4a1181f
Made the following changes
...
1. Inherit from BaseEstimator to enable pretty printing
2. Add transform function
2014-12-05 14:07:16 +01:00
MechCoder
08d3dfef4a
STY: Cosmits in documentation
2014-12-05 14:07:16 +01:00
MechCoder
f4afc7ecf0
ENH: Add narrative documentation
2014-12-05 14:07:16 +01:00