-
Notifications
You must be signed in to change notification settings - Fork 206
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
verbose #95
Comments
It does not appear that there is any logging capability currently. In libFM it prints out the training and testing regression accuracy or classification accuracy after each iteration. With scipy minimization you can specify after how many iterations details should be printed out. It's very helpful to me to understand how quickly things are converging. It would be great to see some logging/output capability added. Thanks for this excellent tool though! |
The model parameter in fastFM can be inspected after each iteration without much overhead. This allows you to create your own logging output in python. This approach is much more flexible but requires some boiler plate code (see. http://ibayer.github.io/fastFM/guide.html#learning-curves). |
Thanks for the tip! That will work just fine
…On Tue, Jun 20, 2017 at 1:29 AM, ibayer ***@***.***> wrote:
The model parameter in fastFM can be inspected after each iteration
without much overhead. This allows you to create your own logging output in
python. This approach is much more flexible but requires some boiler plate
code (see. http://ibayer.github.io/fastFM/guide.html#learning-curves).
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#95 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AA_x-h5hei9CS-xWhvKAiBAD3zSj5-aWks5sF1i_gaJpZM4NKj2h>
.
|
Am I missing something? I cannot seem to find where I can set a verbose flag? I would like to see after each iteration, how do the metrics improve, such as the output from the original implementation.
The text was updated successfully, but these errors were encountered: