Closed daducci closed 3 years ago
Yes, for the actual functionality, it could be more intuituve.
If it is integer
, it could have different levels of display, like None
, important_steps
(start, end), every_iteration
, and others. But right now I think this is not implemented. This type of behavior can be implemented with modules like logging
.
No, indeed, at the moment it is actually binary (yes or no) but implemented as an integer
, which could introduce ambiguities. What if we change it to bool
for the time being?
I think the change is possible, and this should not break actual pipelines.
Later we can think to have levels of verbose (logging)
I agree, let's keep this in mind. Can you create a PR to implement this small modification? No need to update the version, just the changelog
Clsoe by #96
In the
fit()
function (and all functions insidesolvers.py
called from there) the parameterverbose
is an integer whose value is0
or1
, and its value is checked asif verbose>=1
. I think it would be more intuitive to setverbose
to be a boolean.