-
Notifications
You must be signed in to change notification settings - Fork 41
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
A way to adjust verbosity? #20
Comments
Yes, there should be a way to pass these kind of options to GMM. I am not a fan of passing trough loads of options from one call to the next. Perhaps these kind of options should go in the GMM structure. Would be cool if there is a general logging framework. |
I would also be interested in turning off the messages |
Actually, it looks like the logic in train.jl for sending the logging level to Clustering.kmeans is backwards. \le should be \ge in both cases |
This might finally have been fixed, by the above merge |
I am using the
GMM(n_components, data)
call which then prints a bunch of INFO commands, clustering results, etc. Is it possible for this to be optionally turned off? Something likeGMM(n_components, data, verbosity=:silent)
orGMM(n_components, data, verbosity=Verbosity.DEBUG)
The text was updated successfully, but these errors were encountered: