Skip to content
Snippets Groups Projects
Commit d6e0ae1a authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

Turn nitpicky back on

parent 8f49f0ea
Branches
Tags
1 merge request!16Trial to implement EM with multiprocessing
Pipeline #29963 passed
......@@ -84,7 +84,7 @@ def train(trainer, machine, data, max_iterations=50, convergence_threshold=None,
The Mersenne Twister mt19937 random generator used for the initialization of subspaces/arrays before the EM loop
check_inputs:
Shallow checks in the inputs. Check for inf and NaN
pool : ``int`` or :py:class:`multiprocessing.Pool` or ``None``
pool : ``int`` or ``multiprocessing.ThreadPool`` or ``None``
If given, the provided process pool will be used to parallelize the M-step of the
EM algorithm. You should provide a ThreadPool not a multi process Pool. If pool is
an integer, it will be used to create a ThreadPool with that many processes.
......
......@@ -30,7 +30,7 @@ extensions = [
]
# Be picky about warnings
nitpicky = False
nitpicky = True
# Ignores stuff we can't easily resolve on other project's sphinx manuals
nitpick_ignore = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment