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.
Files changed (27) hide show
  1. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/PKG-INFO +1 -1
  2. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/evaluation/protocol.py +2 -2
  3. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify.egg-info/PKG-INFO +1 -1
  4. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/setup.py +1 -1
  5. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/README.md +0 -0
  6. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/__init__.py +0 -0
  7. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/base.py +0 -0
  8. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/classification/__init__.py +0 -0
  9. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/classification/methods.py +0 -0
  10. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/evaluation/__init__.py +0 -0
  11. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/evaluation/measures.py +0 -0
  12. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/methods/__init__.py +0 -0
  13. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/methods/aggregative.py +0 -0
  14. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/methods/meta.py +0 -0
  15. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/methods/mixture_models.py +0 -0
  16. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/methods/non_aggregative.py +0 -0
  17. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/methods/threshold_optimization.py +0 -0
  18. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/model_selection.py +0 -0
  19. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/plots.py +0 -0
  20. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/utils/__init__.py +0 -0
  21. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/utils/general.py +0 -0
  22. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify/utils/method.py +0 -0
  23. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify.egg-info/SOURCES.txt +0 -0
  24. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify.egg-info/dependency_links.txt +0 -0
  25. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify.egg-info/requires.txt +0 -0
  26. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/mlquantify.egg-info/top_level.txt +0 -0
  27. {mlquantify-0.0.11.10 → mlquantify-0.0.11.11}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mlquantify
3
- Version: 0.0.11.10
3
+ Version: 0.0.11.11
4
4
  Summary: Quantification Library
5
5
  Home-page: https://github.com/luizfernandolj/QuantifyML/tree/master
6
6
  Maintainer: Luiz Fernando Luth Junior
@@ -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, backend='threading')( # Parallel processing of models
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]")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mlquantify
3
- Version: 0.0.11.10
3
+ Version: 0.0.11.11
4
4
  Summary: Quantification Library
5
5
  Home-page: https://github.com/luizfernandolj/QuantifyML/tree/master
6
6
  Maintainer: Luiz Fernando Luth Junior
@@ -6,7 +6,7 @@ here = pathlib.Path(__file__).parent.resolve()
6
6
 
7
7
  long_description = (here / 'README.md').read_text(encoding='utf-8')
8
8
 
9
- VERSION = '0.0.11.10'
9
+ VERSION = '0.0.11.11'
10
10
  DESCRIPTION = 'Quantification Library'
11
11
 
12
12
  # Setting up
File without changes
File without changes