-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suppress warnings does not work #43
Comments
There's an attribute with which can increase the run time. It's bydefault set to 30. Kindly check documentation. I believe if you have big data set or its computationally intensive then you can change that. However, I believe it must be set some value because if the curve doesn't really fit it runs into an open ended diverging fit which make computers angry. |
This can be addressed using the logging module (the messages are generated by the logging module). The error messages are generated from the "root" logger, which can be accessed by:
You can change the threshold for the root logger by:
Where the parameter for setLevel has several values which can be read about in the logger manual. If you enter a string as a parameter for getLogger(), it will get the associated logger. It seems that fitter does not have a 'fitter' logger, but rather uses root, which is why that parameter is left blank in this example. |
For me it helped out first try raising the the |
Please tell me how to suppress warnings in my Jupyter notebook.
I tried:
and I'm getting
Charles
The text was updated successfully, but these errors were encountered: