MLflow에 로그를 남길 때 다음과 같은 오류가 발생했다.
mlflow.exceptions.MlflowException: The configured tracking uri scheme: 'file' is invalid for use with the proxy mlflow-artifact scheme. The allowed tracking schemes are: {'http', 'https'}
mlflow.set_tracking_uri("http://127.0.0.1:5000")
artifacts를 기록하기 위해선 통신할 MLflow tracking URI를 알려주면 된다.
으악 덕분에 에러 잡았습니다. 감사합니다!!