Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2023 12:55 AM
Hi @raghagra,
Can you try the following code instead (please modify according to your need) to log the model:
import mlflow
with mlflow.start_run(experiment_id="1234") as run:
mlflow.set_tag("status", "started")
mlflow.log_param("git_hash", "1234")
mlflow.log_param("env", "stg")
mlflow.log_param("pipeline_id", "es_s3_to_raw")
run_id = run.info.run_uuid
mlflow.log_param("run_id", run_id)
mlflow.set_tag("run_url", "URL of your model")
mlflow.log_param("id_in_job", "1726769")
mlflow.log_param("context.user", "your email id")