我正在用来mlflow server设置 mlflow 跟踪服务器。mlflow server有 2 个接受工件 URI 的命令选项,--default-artifact-root <URI>以及--artifacts-destination <URI>.
根据我的理解,--artifacts-destination当跟踪服务器为工件提供服务时使用。
mlflow server --backend-store-uri postgresql://user:password@postgres:5432/mlflowdb --default-artifact-root s3://bucket_name --host remote_host --no-serve-artifacts\nRun Code Online (Sandbox Code Playgroud)\nmlflow server \\\n --backend-store-uri postgresql://user:password@postgres:5432/mlflowdb \\\n # Artifact access is enabled through the proxy URI \'mlflow-artifacts:/\',\n # giving users access to this location without having to manage credentials\n # or permissions.\n --artifacts-destination s3://bucket_name \\\n --host remote_host\nRun Code Online (Sandbox Code Playgroud)\n在这 2 个场景中, 和--default-artifact-root …