import mlflow
from setting import parent_run_id
mlflow.set_tracking_uri(TRACKING_URI)
child_run_ids = list()
for run in client.search_runs(experiment_ids=[6]):
if "mlflow.parentRunId" not in run.data.tags:
continue
if run.data.tags["mlflow.parentRunId"] != parent_run_id:
continue
child_run_ids.append(run.info.run_id)
반응형
'Data science > MLOps' 카테고리의 다른 글
API token bucket: API 요청수 관리 (0) | 2024.04.08 |
---|---|
pip install -e 옵션에 대해 (0) | 2024.04.02 |
[Step by Step] Github action으로 CD/CI 배포하기 (예제코드 포함) (0) | 2023.07.31 |
클러스터 구성 / 쿠버네티스 설치(master, worker node) (0) | 2023.01.08 |
도커 이미지에서 딥러닝 GPU가속 사용하기 (0) | 2022.12.17 |