开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
1 Star 0 Fork 6

readerloop/MLflow

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (15)
标签 (16)
master
pr-template
disable_sagemaker_docker_build
branch-0.9
revert-968-notebook-link-query-params
readme-patch
branch-0.8
mateiz-jackson-databind
branch-0.7
h2o_model_snippets
pytorch_model_snippets
dbczumar-model-arg
java-client
branch-0.5
v0.5.2_release_branch
v0.9.0
v0.8.2
v0.8.1
v0.8.0
v0.7.0
v0.7
v0.6.0
v0.5.2
v0.5.1
v0.5.0
v0.4.2
v0.4.1
v0.4.0
v0.3.0
v0.2.1
v0.2.0
master
分支 (15)
标签 (16)
master
pr-template
disable_sagemaker_docker_build
branch-0.9
revert-968-notebook-link-query-params
readme-patch
branch-0.8
mateiz-jackson-databind
branch-0.7
h2o_model_snippets
pytorch_model_snippets
dbczumar-model-arg
java-client
branch-0.5
v0.5.2_release_branch
v0.9.0
v0.8.2
v0.8.1
v0.8.0
v0.7.0
v0.7
v0.6.0
v0.5.2
v0.5.1
v0.5.0
v0.4.2
v0.4.1
v0.4.0
v0.3.0
v0.2.1
v0.2.0
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (15)
标签 (16)
master
pr-template
disable_sagemaker_docker_build
branch-0.9
revert-968-notebook-link-query-params
readme-patch
branch-0.8
mateiz-jackson-databind
branch-0.7
h2o_model_snippets
pytorch_model_snippets
dbczumar-model-arg
java-client
branch-0.5
v0.5.2_release_branch
v0.9.0
v0.8.2
v0.8.1
v0.8.0
v0.7.0
v0.7
v0.6.0
v0.5.2
v0.5.1
v0.5.0
v0.4.2
v0.4.1
v0.4.0
v0.3.0
v0.2.1
v0.2.0
MLflow
/
docs
/
source
/
cli.rst
MLflow
/
docs
/
source
/
cli.rst
cli.rst 4.37 KB
一键复制 编辑 原始数据 按行查看 历史
Stephanie Bodoff 提交于 2019年02月24日 11:08 +08:00 . Style edit and fix some formatting bugs. (#862)

Command-Line Interface

The MLflow command-line interface (CLI) provides a simple interface to various functionality in MLflow. You can use the CLI to run projects, start the tracking UI, create and list experiments, download run artifacts, serve MLflow Python Function and scikit-learn models, and serve models on Amazon SageMaker.

$ mlflow --help
Usage: mlflow [OPTIONS] COMMAND [ARGS]...

Options:
 --version Show the version and exit.
 --help Show this message and exit.

Commands:
 azureml Serve models on Azure Machine Learning.
 download Download the artifact at the specified DBFS or S3 URI.
 experiments Manage experiments.
 pyfunc Serve Python models locally.
 run Run an MLflow project from the given URI.
 sagemaker Serve models on Amazon SageMaker.
 sklearn Serve scikit-learn models.
 ui Run the MLflow tracking UI.

Each individual command has a detailed help screen accessible via mlflow command_name --help.

Azure Machine Learning Models

Subcommands to serve models on Azure Machine Learning.

Download

Download the artifact at the specified DBFS or S3 URI into the specified local output path, or the current directory if no output path is specified.

Experiments

Subcommands to manage experiments.

In this section:

Create

Create an experiment. The command has required argument for experiment name. Additionally, you can provide an artifact location using -l or --artifact-location option. If not provided, backend store will pick default location. Backend store will generate a unique ID for each experiment.

All artifacts generated by runs related to this experiment will be stored under artifact location, organized under specific run_uuid sub-directories.

Implementation of experiment and metadata store is dependent on backend storage. FileStore creates a folder for each experiment ID and stores metadata in meta.yaml. Runs are stored as subfolders.

List

Lists all experiments managed by backend store. Command takes an optional --view or -v argument. Valid arguments are active_only (default), deleted_only, or all.

Delete

Mark an active experiment for deletion. This also applies to experiment's metadata, runs and associated data, and artifacts if they are store in default location. Use list command to view artifact location. Command takes a required argument for experiment ID. Command will thrown an error if experiment is not found or already marked for deletion.

Experiments marked for deletion can be restored using restore command, unless they are permanently deleted.

Specific implementation of deletion is dependent on backend stores. FileStore moves experiments marked for deletion under a .trash folder under the main folder used to instantiate FileStore. Experiments marked for deletion can be permanently deleted by clearing the .trash folder. It is recommended to use a cron job or an alternate workflow mechanism to clear .trash folder.

Restore

Restore a deleted experiment. This also applies to experiment's metadata, runs and associated data. The command has a required argument for experiment ID. The command throws an error if the experiment is already active, cannot be found, or permanently deleted.

Python Function Models

Subcommands to serve Python models and apply them for inference.

Run

Run an MLflow project from the given URI.

If running locally (the default), the URI can be either a Git repository URI or a local path. If running on Databricks, the URI must be a Git repository.

By default, Git projects will run in a new working directory with the given parameters, while local projects will run from the project's root directory.

SageMaker Models

Subcommands to serve models on SageMaker.

scikit-learn Models

Subcommands to serve scikit-learn models and apply them for inference.

UI

Run the MLflow tracking UI. The UI is served at 0 Stars

取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/readerloop/MLflow.git
git@gitee.com:readerloop/MLflow.git
readerloop
MLflow
MLflow
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /