You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 22, 2024. It is now read-only.
When estimating large models, it would be nice to get some feedback on progress like the verbose flag in MADlib. E.g. printing the iteration number for logistic regression.
The text was updated successfully, but these errors were encountered:
You can turn on the verbose flag in madlib.glm using the option control. For example,
fit <- madlib.glm(rings < 10 ~ . - id, data = x, family = 'b', control = list(verbose=TRUE))
fit$num_iterations
This is supported in v0.1.16.11
However, MADlib's verbose flag does not print progress. It just prints the iterations number at the end of computation. The iteration number information is also included in the result, as is shown in the above example.
I set verbose to true, but getting no output. It would also be nice to get the likelihood printed besides the iteration number, so one can assess whether the algorithm is converging.
When estimating large models, it would be nice to get some feedback on progress like the verbose flag in MADlib. E.g. printing the iteration number for logistic regression.
The text was updated successfully, but these errors were encountered: