-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
|
@@ -16,3 +16,4 @@ Selected deeper topics | |
cross_validation_splitter.rst | ||
stacked_models.rst | ||
CBPM.rst | ||
joblib.rst |
This file contains 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.. include:: ../links.inc | ||
|
||
|
||
.. _joblib_parallel: | ||
|
||
Parallelizing julearn with Joblib | ||
================================= | ||
|
||
As with `scikit-learn`_, ``julearn`` allows you to parallelize your code using | ||
`Joblib`_. This can be particularly useful when you have a large dataset or | ||
when you are running a computationally expensive operation that can be easily | ||
computed in parallel. | ||
|
||
Without going into details about parallel and distributed computing, the idea | ||
is to split the computation into smaller tasks that can be executed | ||
independently from each other. This way, you can take advantage of multiple | ||
*processors* to do them in parallel. |