8000 Fix errorbars legend by vene · Pull Request #2 · ogrisel/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content

Fix errorbars legend #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
68 commits
Select commit Hold shift + click to select a range
61af784
first stab at nearest center in cython (+30% perf, need check correct…
ogrisel Oct 9, 2011
6ade898
factorized label assignement as a reusable python func for the predic…
ogrisel Oct 9, 2011
ff9bd5b
use direct blas ddot call and reuse _assign_labels in predict
ogrisel Oct 10, 2011
2b04cff
FIX: broken test cause by the use of todense which return a matrix in…
ogrisel Oct 10, 2011
9aabbdb
WIP on simpler cython impl of the center update (still buggy)
ogrisel Oct 13, 2011
aa13538
compute inertia + remove code :)
ogrisel Oct 13, 2011
6cd6c30
update renamed function call
ogrisel Oct 13, 2011
87a6f5b
factorize dot product and bootstrap implementation for the dense case
ogrisel Oct 14, 2011
b7fe3bc
use cpdef + less array overhead in ddot
ogrisel Oct 15, 2011
5576ecf
started kmeans test suite refactoring
ogrisel Oct 15, 2011
6168d9c
more code factorization
ogrisel Oct 15, 2011
b2a8956
refactored the kmeans tests
ogrisel Oct 15, 2011
5f8d554
test and fix input checks for various dypes
ogrisel Oct 15, 2011
6d1dda8
much cheaper yet stable stopping criterion for the minibatch kmeans
ogrisel Oct 15, 2011
a14778e
Merge branch 'master' into minibatch-kmeans-optim
ogrisel Oct 25, 2011
c68a368
unused import
ogrisel Oct 27, 2011
983556e
low memory computation of the square diff
ogrisel Oct 30, 2011
054b682
be more consistent with the usual behavior of fitted attributes
ogrisel Oct 30, 2011
e7c02a3
base convergence detection on EWA inertia monitoring
ogrisel Oct 30, 2011
8170fb5
various cython cleanups
ogrisel Oct 31, 2011
744072e
working in progress to make it possible to use a speedy version based…
ogrisel Nov 1, 2011
76e6197
merge master
ogrisel Nov 1, 2011
e8ddec5
preparing new stopping criterion impl
ogrisel Nov 1, 2011
562fcae
Merge branch 'master' into minibatch-kmeans-optim
ogrisel Nov 1, 2011
7813be0
work in progress (broken tests) on early stopping with both tol and i…
ogrisel Nov 1, 2011
e13b3f0
make min_dist test more explicit
ogrisel Nov 2, 2011
77c9663
fixed broken test
ogrisel Nov 2, 2011
d17fba0
optimize label assignment for dense minibatch and new test
ogrisel Nov 2, 2011
a2d136f
fix tests
ogrisel Nov 2, 2011
c10964d
fix tests
ogrisel Nov 2, 2011
8579119
start with zero counts in tests
ogrisel Nov 2, 2011
d117ec5
fix bug: x_squared_norms should follow the shuffle...
ogrisel Nov 3, 2011
77db343
ensure that the sparse and dense variant of the minibatch update comp…
ogrisel Nov 3, 2011
82c3f62
better default value and parameter handling for max_no_improvement
ogrisel Nov 3, 2011
a0f2598
switch to lazy sampling with explicit index to divide memory usage al…
ogrisel Nov 3, 2011
28b4d88
more code simplification
ogrisel Nov 3, 2011
9224538
started example to check the convergence stability in various settings
ogrisel Nov 5, 2011
161430c
tracking changes from master
ogrisel Nov 5, 2011
113d394
merge master
ogrisel Nov 5, 2011
37df796
implemented n_init for MiniBatchKMeans
ogrisel Nov 6, 2011
4f9f32c
Merge branch 'master' into minibatch-kmeans-optim
ogrisel Nov 6, 2011
3d58c49
refactored the init logic for MiniBatchKMeans
ogrisel Nov 6, 2011
a68c85f
Merge branch 'master' into minibatch-kmeans-optim
ogrisel Nov 6, 2011
8858a80
fix stability and warning in tests
ogrisel Nov 6, 2011
9fbe559
make k-means++ work on sparse input and use it as default for MB k-means
ogrisel Nov 6, 2011
768e471
add version info in deprecation message
ogrisel Nov 6, 2011
6af7996
factorized out the early stopping logic in a dedicated method
ogrisel Nov 6, 2011
982359c
first stab at a reinit strategy that work on low dim data only
ogrisel Nov 6, 2011
f87248d
new example to emphasize issues with current naive reinit scheme on s…
ogrisel Nov 6, 2011
3f1901c
second experiment on reinit that does not work on high dim sparse dat…
ogrisel Nov 7, 2011
d9aa128
Merge branch 'master' into minibatch-kmeans-optim
ogrisel Nov 14, 2011
e1325f2
Merge branch 'master' of https://github.com/scikit-learn/scikit-learn
ogrisel Dec 19, 2011
50af0c3
track changes from master
ogrisel Dec 19, 2011
695ce94
pep8
ogrisel Dec 19, 2011
ae26835
fix k_means docstring to better match the scikit naming conventions
ogrisel Dec 19, 2011
6db1ff8
WIP: n_init refactoring
ogrisel Dec 19, 2011 8000
70c0aa1
Merge branch 'master' into minibatch-kmeans-optim
ogrisel Dec 19, 2011
38d8444
scale tolerance of minibatch kmeans on CSR input variance
ogrisel Dec 19, 2011
29fa29f
delete broken example
ogrisel Dec 19, 2011
f9aacba
example script is not meant to be executed when building the doc as i…
ogrisel Dec 19, 2011
fde9807
Add score method to KMeans.
mblondel Dec 19, 2011
af05e76
Merge branch 'master' into minibatch-kmeans-optim
ogrisel Dec 20, 2011
2f3cca5
typo: accross => across
ogrisel Dec 20, 2011
da38d74
Use python int for indices and indptr of scipy sparse matrices to ens…
ogrisel Dec 20, 2011
adfae9b
Make init less expensive by default on MinibatchKMeans to avoid domin…
ogrisel Dec 20, 2011
e93482e
Fix broken duplicated / tests and more practical init
ogrisel Dec 20, 2011
712301d
Merge branch 'master' into ogrisel_minibatch-kmeans-optim
vene Dec 20, 2011
a9e013b
Fix legend for errorbar plot
vene Dec 20, 2011
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use python int for indices and indptr of scipy sparse matrices to ens…
…ure cross platform support
  • Loading branch information
ogrisel committed Dec 20, 2011
commit da38d74ef683e216365b51ec00fe4d2e3f9fbcef
Loading
0