From eed45f2c0ee7b371db4ccfdd6f9b64487b58f5dc Mon Sep 17 00:00:00 2001 From: Eva Holtkamp Date: Tue, 10 Oct 2023 15:26:32 +0200 Subject: [PATCH] comments --- deeprvat/deeprvat/associate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deeprvat/deeprvat/associate.py b/deeprvat/deeprvat/associate.py index 49c8cc03..ced3bf24 100644 --- a/deeprvat/deeprvat/associate.py +++ b/deeprvat/deeprvat/associate.py @@ -289,6 +289,7 @@ def load_one_model( model = model.eval() model = model.to(device) agg_model = model.agg_model + logger.info(f'using sigmoid/softplus: {agg_model.use_sigmoid}, {agg_model.use_softplus}') return agg_model @@ -581,7 +582,6 @@ def regress_( logger.info(f"X shape: {X.shape}, Y shape: {y.shape}") # compute null_model for score test - lprint(np.unique(y)) print(len(np.unique(y))) if len(np.unique(y)) == 2: logger.warning('Fitting binary model since only found two distinct y values')