metacountregressor 0.1.336__tar.gz → 0.1.339__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 (31) hide show
  1. {metacountregressor-0.1.336/metacountregressor.egg-info → metacountregressor-0.1.339}/PKG-INFO +1 -1
  2. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor/__init__.py +3 -3
  3. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor/metaheuristics.py +5 -2
  4. {metacountregressor-0.1.336 → metacountregressor-0.1.339/metacountregressor.egg-info}/PKG-INFO +1 -1
  5. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/setup.py +1 -0
  6. metacountregressor-0.1.339/version.txt +1 -0
  7. metacountregressor-0.1.336/version.txt +0 -1
  8. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/LICENSE.txt +0 -0
  9. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/MANIFEST.in +0 -0
  10. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/README.md +0 -0
  11. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/README.rst +0 -0
  12. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor/_device_cust.py +0 -0
  13. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor/app_main.py +0 -0
  14. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor/data_split_helper.py +0 -0
  15. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor/halton.py +0 -0
  16. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor/helperprocess.py +0 -0
  17. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor/main.py +0 -0
  18. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor/main_old.py +0 -0
  19. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor/pareto_file.py +0 -0
  20. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor/pareto_logger__plot.py +0 -0
  21. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor/setup.py +0 -0
  22. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor/single_objective_finder.py +0 -0
  23. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor/solution.py +0 -0
  24. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor/test_generated_paper2.py +0 -0
  25. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor.egg-info/SOURCES.txt +0 -0
  26. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor.egg-info/dependency_links.txt +0 -0
  27. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor.egg-info/not-zip-safe +0 -0
  28. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor.egg-info/requires.txt +0 -0
  29. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/metacountregressor.egg-info/top_level.txt +0 -0
  30. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/setup.cfg +0 -0
  31. {metacountregressor-0.1.336 → metacountregressor-0.1.339}/tests/test.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: metacountregressor
3
- Version: 0.1.336
3
+ Version: 0.1.339
4
4
  Summary: Extensive Testing for Estimation of Data Count Models
5
5
  Home-page: https://github.com/zahern/CountDataEstimation
6
6
  Author: Zeke Ahern
@@ -5,12 +5,12 @@ import faulthandler
5
5
  import sys
6
6
  import timeit
7
7
  from collections import namedtuple
8
- print('loaded standard packages')
9
-
10
8
  import numpy as np
11
-
12
9
  import pandas as pd
10
+ print('loaded standard packages')
11
+
13
12
  from .helperprocess import*
13
+ from .data_split_helper import DataProcessor
14
14
  print('loaded helper')
15
15
  from .metaheuristics import (differential_evolution,
16
16
  harmony_search,
@@ -17,10 +17,13 @@ import pandas as pd
17
17
 
18
18
  try:
19
19
  from .pareto_file import Pareto, Solution
20
- from .solution import ObjectiveFunction
21
- except:
20
+ except ImportError:
22
21
  print('Exception relative import')
23
22
  from pareto_file import Pareto, Solution
23
+
24
+ try:
25
+ from .solution import ObjectiveFunction
26
+ except ImportError:
24
27
  from solution import ObjectiveFunction
25
28
 
26
29
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: metacountregressor
3
- Version: 0.1.336
3
+ Version: 0.1.339
4
4
  Summary: Extensive Testing for Estimation of Data Count Models
5
5
  Home-page: https://github.com/zahern/CountDataEstimation
6
6
  Author: Zeke Ahern
@@ -29,6 +29,7 @@ new_version = f"{major}.{minor}.{patch}"
29
29
  with open('version.txt', 'w') as f:
30
30
  f.write(new_version)
31
31
 
32
+
32
33
  # Setup configuration
33
34
  setuptools.setup(
34
35
  name='metacountregressor',
@@ -0,0 +1 @@
1
+ 0.1.339
@@ -1 +0,0 @@
1
- 0.1.336