Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
HolEv committed Oct 10, 2023
1 parent cfcf7ec commit eed45f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deeprvat/deeprvat/associate.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down Expand Up @@ -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')
Expand Down

0 comments on commit eed45f2

Please sign in to comment.