-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
[MRG] new K-means implementation for improved performances #11950
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
Changes from all commits
7005c0c
7966dd0
97fcf1f
78a167d
35fd78e
6dae806
f5c0aa1
a1c1fac
8df3b1e
8f111c7
e8be354
0bcc1f1
107290e
aac2350
8e432be
4531fc6
52d8aba
ff35b29
286aed4
e720abe
5d82b8d
2368f70
4d960a3
afc306b
9ffb9ca
aced525
497f899
6fbe8b1
bcb727e
e4c159c
684ea4e
67900ad
c1d262f
ed308b7
4b76694
e77ac24
9ccc725
9a03162
215be94
bec9079
43d3fba
2c61378
7679a9f
f916091
4c2da0c
a4383fb
cf25383
9868632
7326362
212ae77
3c2ad09
e9a4cee
41ea6df
745c756
d4d0eea
930be82
084db44
55a6563
8461712
9ed4436
df55e4c
4d93fa5
31a3052
621661e
dda6527
a48504a
eb09a06
b723633
014956d
ec74a76
5485c96
8a07a32
40de5b3
a31158b
0aaee58
34cd11e
0a78fc4
6c13a7d
d8439fd
b8900ab
e47bdb8
8050149
7532722
54f8146
280f551
8f5ebfd
edebabf
4e99452
0a95450
2cbc706
f0198e4
3af82ba
6cb945b
6dd4525
0278f67
aa8eeba
2881065
f1231f5
f09aa4b
f23ccbb
e2dd616
4e2ff78
b9af0a6
ed148bb
d9ea936
851b05f
ca8584f
de02372
2fec37b
09f9423
830de25
b10b927
1788435
daba537
df0cedb
ff37713
b59e16b
8170ea1
11bc395
08d29aa
b21cc8e
d57a870
dd0878e
99ad111
a735b8b
a46b708
3ffd301
41325cc
1880572
1eb46b8
463fcad
3ee1cd6
24f5baf
087ce55
59e0673
869d9da
51c2fea
54a3f91
daab347
6ac05a0
7d916cb
6f048b7
89d960c
9ae33cd
acc66c2
6257eed
60acd73
d19ab9c
45bc797
5b645e6
d52572c
62337d6
0a5655d
8493292
b2a41f2
ddf1584
bbd73c9
5999941
2f329dc
c8050e6
afd176d
b7ae100
d90b5e3
c7687d4
9b4d4d4
7c8d0ee
bb34213
b69bd72
9833a99
877a991
fd20130
94ff4f5
86ef932
830b14a
b7e7cce
3381c1b
b62e3c0
f7a63bc
74993a6
a1a324e
9ad6fac
d3ac803
56103d0
be97ff3
ecf6ecd
2099044
9c21272
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,6 +56,7 @@ | |
NUMPY_MIN_VERSION = '1.13.3' | ||
|
||
JOBLIB_MIN_VERSION = '0.11' | ||
THREADPOOLCTL_MIN_VERSION = '2.0.0' | ||
|
||
# Optional setuptools features | ||
# We need to import setuptools early, if we want setuptools features, | ||
|
@@ -257,7 +258,8 @@ def setup_package(): | |
install_requires=[ | ||
'numpy>={}'.format(NUMPY_MIN_VERSION), | ||
'scipy>={}'.format(SCIPY_MIN_VERSION), | ||
'joblib>={}'.format(JOBLIB_MIN_VERSION) | ||
'joblib>={}'.format(JOBLIB_MIN_VERSION), | ||
'threadpoolctl>={}'.format(THREADPOOLCTL_MIN_VERSION) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wondering if we should add a note in the miscellaneous section of the what's new to indicate the new dependency There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. technically this requires a SLEP (as per our governance doc) but according to #16242 this is a no brainer so let's just do it I think |
||
], | ||
package_data={'': ['*.pxd']}, | ||
**extra_setuptools_args) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
side note, if you add yourself to
doc/whats_new/_contributors.rst
you can use the short version