metacountregressor 0.1.207__py3-none-any.whl → 0.1.208__py3-none-any.whl
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.
- metacountregressor/solution.py +9 -6
- {metacountregressor-0.1.207.dist-info → metacountregressor-0.1.208.dist-info}/METADATA +1 -1
- {metacountregressor-0.1.207.dist-info → metacountregressor-0.1.208.dist-info}/RECORD +6 -6
- {metacountregressor-0.1.207.dist-info → metacountregressor-0.1.208.dist-info}/WHEEL +1 -1
- {metacountregressor-0.1.207.dist-info → metacountregressor-0.1.208.dist-info}/LICENSE.txt +0 -0
- {metacountregressor-0.1.207.dist-info → metacountregressor-0.1.208.dist-info}/top_level.txt +0 -0
metacountregressor/solution.py
CHANGED
|
@@ -1946,11 +1946,11 @@ class ObjectiveFunction(object):
|
|
|
1946
1946
|
|
|
1947
1947
|
else:
|
|
1948
1948
|
slice_this_amount = self.num_dispersion_params(dispersion)
|
|
1949
|
-
slice_this_amount =
|
|
1949
|
+
slice_this_amount = 0 #TODO handle this
|
|
1950
1950
|
if pvalues[-1] > sig_value:
|
|
1951
1951
|
vio_counts += 1
|
|
1952
1952
|
subpvalues = pvalues[:-slice_this_amount].copy()
|
|
1953
|
-
|
|
1953
|
+
|
|
1954
1954
|
if Kh > 1:
|
|
1955
1955
|
if subpvalues[-1] < sig_value:
|
|
1956
1956
|
subpvalues[-Kh] = 0
|
|
@@ -6437,10 +6437,13 @@ class ObjectiveFunction(object):
|
|
|
6437
6437
|
if not is_delete and is_halton:
|
|
6438
6438
|
if obj_1[self._obj_1] <= self.best_obj_1:
|
|
6439
6439
|
self.pvalue_sig_value = .1
|
|
6440
|
-
|
|
6441
|
-
|
|
6442
|
-
|
|
6443
|
-
|
|
6440
|
+
try:
|
|
6441
|
+
st, self.pvalue_exceed = self.get_pvalue_info_alt(
|
|
6442
|
+
pvalues, self.coeff_names, self.pvalue_sig_value, dispersion, is_halton, 0, 1)
|
|
6443
|
+
except Exception as pval_exe:
|
|
6444
|
+
print(pval_exe)
|
|
6445
|
+
self.pvalue_exceed = sum(
|
|
6446
|
+
a > self.pvalue_sig_value for a in pvalues)
|
|
6444
6447
|
else:
|
|
6445
6448
|
self.pvalue_exceed = sum(
|
|
6446
6449
|
a > self.pvalue_sig_value for a in pvalues)
|
|
@@ -11,10 +11,10 @@ metacountregressor/pareto_file.py,sha256=whySaoPAUWYjyI8zo0hwAOa3rFk6SIUlHSpqZiL
|
|
|
11
11
|
metacountregressor/pareto_logger__plot.py,sha256=mEU2QN4wmsM7t39GJ_XhJ_jjsdl09JOmG0U2jICrAkI,30037
|
|
12
12
|
metacountregressor/setup.py,sha256=5UcQCCLR8Fm5odA3MX78WwahavxFq4mVD6oq0IuQvAY,936
|
|
13
13
|
metacountregressor/single_objective_finder.py,sha256=jVG7GJBqzSP4_riYr-kMMKy_LE3SlGmKMunNhHYxgRg,8011
|
|
14
|
-
metacountregressor/solution.py,sha256=
|
|
14
|
+
metacountregressor/solution.py,sha256=CK4XJivxa-BQPAh-E48ibfRV-7jYwtAt4Bsw1wiRso8,283632
|
|
15
15
|
metacountregressor/test_generated_paper2.py,sha256=pwOoRzl1jJIIOUAAvbkT6HmmTQ81mwpsshn9SLdKOg8,3927
|
|
16
|
-
metacountregressor-0.1.
|
|
17
|
-
metacountregressor-0.1.
|
|
18
|
-
metacountregressor-0.1.
|
|
19
|
-
metacountregressor-0.1.
|
|
20
|
-
metacountregressor-0.1.
|
|
16
|
+
metacountregressor-0.1.208.dist-info/LICENSE.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
17
|
+
metacountregressor-0.1.208.dist-info/METADATA,sha256=W9Uk5kq-SkU_Lo_y7g695BPbHkI0iT1Fcd5-KQJ-hgg,23536
|
|
18
|
+
metacountregressor-0.1.208.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
|
19
|
+
metacountregressor-0.1.208.dist-info/top_level.txt,sha256=zGG7UC5WIpr76gsFUpwJ4En2aCcoNTONBaS3OewwjR0,19
|
|
20
|
+
metacountregressor-0.1.208.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|