ankane / cmfrec-ruby

Recommendations for Ruby using collective matrix factorization
MIT License
29 stars 2 forks source link

Is there a setting to disable verbose output? #4

Closed vitobotta closed 1 year ago

vitobotta commented 1 year ago

Hi! I see output like "Completed ALS iteration" and other stuff which is annoying in tests. Is it possible to disable it somehow? Thanks!

ankane commented 1 year ago

Hey @vitobotta, you can do:

Cmfrec::Recommender.new(verbose: false)
vitobotta commented 1 year ago

Perfect, thanks!