Skip to content

Commit ae5c187

Browse files
notation fix
1 parent 9f954a8 commit ae5c187

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

batchglm/unit_test/glm_all/test_acc_analytic_glm_all.py

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,6 @@ def __init__(
7171

7272
def estimate(self):
7373
self.estimator.initialize()
74-
self.estimator.train_sequence(training_strategy=[
75-
{
76-
"convergence_criteria": "all_converged",
77-
"use_batching": False,
78-
"optim_algo": "gd",
79-
"train_loc": False,
80-
"train_scale": False
81-
},
82-
])
8374

8475
def eval_estimation_a(
8576
self,
@@ -92,7 +83,7 @@ def eval_estimation_a(
9283
if self.noise_model == "nb":
9384
threshold_dev = 1e-2
9485
threshold_std = 1e-1
95-
elif self.noise_model=="norm":
86+
elif self.noise_model == "norm":
9687
threshold_dev = 1e-2
9788
threshold_std = 1e-1
9889
else:
@@ -152,8 +143,6 @@ def eval_estimation_b(
152143
return False
153144

154145

155-
156-
157146
class Test_AccuracyAnalytic_GLM_ALL(
158147
unittest.TestCase
159148
):

0 commit comments

Comments
 (0)