-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
Solved minor bug with MLFlow logger #16418
Conversation
For me this fixes MLflow logging. But now that I look at the code, what do you think of replacing the entire loop with this:
i.e. instead of not logging long string values, we would log the first 250 characters? |
@senarvi That sounds good to me. Feel free to send a PR with this improvement. Fewer warnings are always better if it can be avoided :) |
@senarvi thanks for catching this! LGTM. As for your suggestion, two thoughts:
Also — should we have |
Resolves #16411 the minor issue #16411 (typo) from
params_list.append(Param(key=v, value=v))
to
params_list.append(Param(key=k, value=v))