Created
March 3, 2022 09:36
-
-
Save sourangshupal/ad4dc25e560667afd3140f4ac4a46b2b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # You can use mlflow context manager to log any param or metric values. One example is shown below | |
| with mlflow.start_run(): | |
| mlflow.log_param("param_name", param_value) | |
| mlflow.log_metric("metric_name", metric_value) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment