mlflow ui
コマンドで,デフォルトの127.0.0.1:5000
にMLFlowを起動して,mlflow.log_artifact()
を実行したらエラーが吐かれた.
raise MlflowException(
mlflow.exceptions.MlflowException: The configured tracking uri scheme: 'file' is invalid for use with the proxy mlflow-artifact scheme. The allowed tracking schemes are: {'https', 'http'}
社内のPCで作業しているのでproxyを踏んでしまっているのか詳細は不明だが,tracking_uriを指定すれば解決した.
mlflow.set_tracking_uri("http://127.0.0.1:5000")