mlquantify 0.0.11.10__tar.gz → 0.0.11.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/PKG-INFO +1 -1
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/evaluation/protocol.py +2 -2
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify.egg-info/PKG-INFO +1 -1
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/setup.py +1 -1
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/README.md +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/__init__.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/base.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/classification/__init__.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/classification/methods.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/evaluation/__init__.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/evaluation/measures.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/methods/__init__.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/methods/aggregative.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/methods/meta.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/methods/mixture_models.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/methods/non_aggregative.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/methods/threshold_optimization.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/model_selection.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/plots.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/utils/__init__.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/utils/general.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/utils/method.py +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify.egg-info/SOURCES.txt +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify.egg-info/dependency_links.txt +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify.egg-info/requires.txt +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify.egg-info/top_level.txt +0 -0
- {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/setup.cfg +0 -0
|
@@ -242,8 +242,8 @@ class Protocol(ABC):
|
|
|
242
242
|
args = ((model, X_train, y_train) for model in self.models)
|
|
243
243
|
|
|
244
244
|
wrapper = tqdm if self.verbose else lambda x, **kwargs: x
|
|
245
|
-
|
|
246
|
-
self.models = Parallel(n_jobs=self.n_jobs
|
|
245
|
+
|
|
246
|
+
self.models = Parallel(n_jobs=self.n_jobs)( # Parallel processing of models
|
|
247
247
|
delayed(self._delayed_fit)(*arg) for arg in wrapper(args, desc="Fitting models", total=len(self.models))
|
|
248
248
|
)
|
|
249
249
|
self.sout("Fit [Done]")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|