From e3673bdcf1ed327b7cbcd4ae3dd50dd949c3a556 Mon Sep 17 00:00:00 2001 From: "hiyoneda.dlbox" Date: Thu, 1 Aug 2024 19:30:58 +0900 Subject: [PATCH] Bug fix --- cosipy/image_deconvolution/MAP_RichardsonLucy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cosipy/image_deconvolution/MAP_RichardsonLucy.py b/cosipy/image_deconvolution/MAP_RichardsonLucy.py index 8c638e80..ee8fd04a 100644 --- a/cosipy/image_deconvolution/MAP_RichardsonLucy.py +++ b/cosipy/image_deconvolution/MAP_RichardsonLucy.py @@ -250,8 +250,8 @@ def register_result(self): # show intermediate results logger.info(f' background_normalization: {this_result["background_normalization"]}') logger.info(f' log-likelihood: {this_result["log-likelihood"]}') - logger.info(f' log-prior: {this_result["log_prior"]}') - logger.info(f' log-posterior: {this_result["log_posterior"]}') + logger.info(f' log-prior: {this_result["log-prior"]}') + logger.info(f' log-posterior: {this_result["log-posterior"]}') # register this_result in self.results self.results.append(this_result)