Skip to content
Snippets Groups Projects
Commit 44db547c authored by Theo Steininger's avatar Theo Steininger
Browse files

Fixed bug in Pipeline

parent a6b0469c
No related branches found
No related tags found
No related merge requests found
......@@ -110,9 +110,7 @@ class EnsembleLikelihood(Likelihood):
u_a_c_val = np.einsum(c_weighted_val, [1], a_u_val, [0, 1])
first_summand = A.inverse_times(c)
self.logger.debug("Calculated first summand.")
second_summand_val = np.einsum(middle, [0, 1], u_a_c_val, [1])
self.logger.debug("Intermediate step.")
second_summand_val = np.einsum(a_u_val, [0, 1],
second_summand_val, [0])
second_summand_val *= -1
......@@ -122,8 +120,8 @@ class EnsembleLikelihood(Likelihood):
result_1 = -c.vdot(first_summand)
result_2 = -c.vdot(second_summand)
result = result_1 + result_2
self.logger.debug("Calculated: %f + %f = %f" %
(result_1, result_2, result))
self.logger.debug("Calculated (%s): %f + %f = %f" %
(self.observable_name, result_1, result_2, result))
# result_array[i] = result
# total_result = result_array.mean()
......
......@@ -72,7 +72,7 @@ class Pipeline(Loggable, object):
def likelihood(self, likelihood):
self.logger.debug("Setting likelihood.")
self._likelihood = ()
if not (isinstance(likelihood, list) and
if not (isinstance(likelihood, list) or
isinstance(likelihood, tuple)):
likelihood = [likelihood]
for l in likelihood:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment