Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Verbose output feature request #27

Open
ronert opened this issue May 26, 2014 · 3 comments
Open

Verbose output feature request #27

ronert opened this issue May 26, 2014 · 3 comments

Comments

@ronert
Copy link

ronert commented May 26, 2014

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.

@walkingsparrow
Copy link
Contributor

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.

@ronert
Copy link
Author

ronert commented May 27, 2014

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.

@walkingsparrow
Copy link
Contributor

The message is suppressed in PivotalR. I will fix that.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants