-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Less freezing time in multiprocessing with large arrays #440
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
Changes from 35 commits
Commits
Show all changes
58 commits
Select commit
Hold shift + click to select a range
a79079b
fix bug in config dict
fa1acfb
Update base.py
rhiever 5fab09a
Merge pull request #431 from weixuanfu2016/config_dict_patch
rhiever ed3bdf7
Update version for minor release
rhiever 5e32488
use stopit replace Interruptable_cross_val_score
39cff19
Update requirements.txt
rhiever eafc240
fix bugs and clean bugs
e50814c
clean test codes
c10ba2e
add unit test
6bc031c
try backend="threading"
3019275
dask works in macOS
0b3680c
clean codes
91caa55
num_worker added
6b00655
use client
d9c1863
threading
4517abb
clean codes
94b4a37
clean codes
3ce128b
clean codes
02fd277
clean codes
af98b96
clean codes
9cafac7
return to joblib
5447fe0
key works
1f97655
fix issue in large dataset
23ca6d3
Merge remote-tracking branch 'upstream/development' into joblib_timeout
3ce4a30
add doc
6515732
clean codes
633e9e8
min to sec
ac77725
manual dump memmap
dd7df4e
clean codes
a6ff510
dask array tet
dcf640e
jobs test
4d87038
add warning for large dataset
ec96ecd
add doc and installnation
7978f7d
instal in test
24c030f
pip install dask
0382753
pip install dask[complete]
ac3a086
clean codes
39ac993
better get
224a9bc
clean codes
c20d911
fix conflict
a4956d4
warning when verbosity > 2
7cea3bf
fix this compatibility issue
454f54a
add unit test
dc40489
fix ci
1fc2860
Merge pull request #451 from weixuanfu2016/mdr_dict_master_fix
rhiever 18927b0
Version increment for hot patch release
rhiever 568f55d
fix bug for ploynomialfeatures
37c1529
add unit test
179fdf1
Merge pull request #455 from weixuanfu2016/issue454
rhiever 7b1eb27
Minor version increment for release
rhiever fd2f1c3
Update tests.py
rhiever c3b2167
Merge branch 'development' into joblib_timeout
rhiever cccf676
fix conflicts
211eed9
Merge branch 'development' into joblib_timeout
00fc6ff
add patch in master
1e0a8c4
add patch in tpot 0.7.5
d8e1904
clean codes
af01d55
add some small unit tests for increasing coverage
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,3 +5,5 @@ scikit-learn==0.18.1 | |
| scipy==0.19.0 | ||
| tqdm==4.11.2 | ||
| update-checker==0.16 | ||
| stopit==1.1.1 | ||
| dask==0.14.1 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Warnings should only print if verbosity>2.
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.
Make sense. I fixed it.