diff --git a/pymc_extras/inference/pathfinder/lbfgs.py b/pymc_extras/inference/pathfinder/lbfgs.py index 8f9df2659..2df72cd48 100644 --- a/pymc_extras/inference/pathfinder/lbfgs.py +++ b/pymc_extras/inference/pathfinder/lbfgs.py @@ -202,8 +202,6 @@ def minimize(self, x0) -> tuple[NDArray, NDArray, int, LBFGSStatus]: # threshold determining if the number of update mask is low compared to iterations low_update_threshold = 3 - logging.warning(f"LBFGS status: {result} \n nit: {result.nit} \n count: {history.count}") - if history.count <= 1: # triggers LBFGSInitFailed if result.nit < low_update_threshold: lbfgs_status = LBFGSStatus.INIT_FAILED