Replies: 2 comments 1 reply
-
There may be a Python solution to redirect stdout, but I'm curious: what is being printed when a job fails? I should change it to put msgs in the Exception |
Beta Was this translation helpful? Give feedback.
1 reply
-
Ah, I do some printing when it fails. This information should be in the error message. https://github.com/CamDavidsonPilon/lifelines/blob/master/lifelines/fitters/__init__.py#L1963-L1966 There's currently no way to suppress this, you'd have to make a modification on your end |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have a problem, where after failed fits lifelines prints a summary. However, due to this printing, I can't properly make use of multiple cores while doing hyperparameter optimization with sklearn RandomizedSearchCV. Is there a way to stop any output to stdout, stderr?
Beta Was this translation helpful? Give feedback.
All reactions