Last active
May 10, 2020 10:47
-
-
Save patryk-oleniuk/f251a2460ba014e50d51541b57300690 to your computer and use it in GitHub Desktop.
correct mlflow run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# to correct a parameter, metric or artifact of an existing run, just pass run_id | |
# instead of experiment_id to mlflow.start_run function | |
with mlflow.start_run(run_id="your_run_id") as run: | |
mlflow.log_param("p1","your_corrected_value") | |
mlflow.log_metric("m1",42.0) # your corrected metrics | |
mlflow.log_artifact("data_sample.html") # your corrected artifact file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment