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
I think having MLJFlow, MLFlowLogger, etc, - sometimes there is a "j" and sometimes not - is bit of cognitive burden. What if we rename MLFlowLogger to Logger? So, in MLJ the user does
logger =Logger(...)
In the rare case there are multiple logging platforms at play, the user can resolve the ambiguity with MLJFlow.Logger. Or we could just not export the name and have the user do logger = MLJFlow.Logger(...). Ie., the user does
logger = MLJFlow.Logger()
Of course this is a breaking change but I think that's fine at this early stage of development.
I think having
MLJFlow
,MLFlowLogger
, etc, - sometimes there is a "j" and sometimes not - is bit of cognitive burden. What if we renameMLFlowLogger
toLogger
? So, in MLJ the user doesIn the rare case there are multiple logging platforms at play, the user can resolve the ambiguity with
MLJFlow.Logger
. Or we could just not export the name and have the user dologger = MLJFlow.Logger(...)
. Ie., the user doesOf course this is a breaking change but I think that's fine at this early stage of development.
@pebeto What do you think?
The text was updated successfully, but these errors were encountered: