# MLflow **Repository Path**: blameswood/MLflow ## Basic Information - **Project Name**: MLflow - **Description**: MLflow 是由 Apache Spark 技术团队开源的一个机器学习平台,主打开放性: 开放接口:可与任意 ML 库、算法、部署工具或编程语言一起使用 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 5 - **Created**: 2018-06-10 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ==================== MLflow Alpha Release ==================== .. warning:: The current version of MLflow is an alpha. This means that APIs and storage formats are subject to change! Installing ---------- Install MLflow from PyPi via ``pip install mlflow`` MLflow requires ``conda`` to be on the ``PATH`` for the projects feature. Documentation ------------- Official documentation for MLflow can be found at https://mlflow.org/docs/latest/index.html. Running a Sample App With the Tracking API ------------------------------------------ The programs in ``example`` use the MLflow Tracking API. For instance, run:: python example/quickstart/test.py This program will use MLflow log API, which stores tracking data in ``./mlruns``, which can then be viewed with the Tracking UI. Launching the Tracking UI ------------------------- The MLflow Tracking UI will show runs logged in ``./mlruns`` at ``_. Start it with:: mlflow ui Running a Project from a URI ---------------------------- The ``mlflow run`` command lets you run a project packaged with a MLproject file from a local path or a Git URI:: mlflow run example/tutorial -P alpha=0.4 mlflow run git@github.com:databricks/mlflow-example.git -P alpha=0.4 See ``example/tutorial`` for a sample project with an MLproject file. Saving and Serving Models ------------------------- To illustrate managing models, the ``mlflow.sklearn`` package can log Scikit-learn models as MLflow artifacts and then load them again for serving. There is an example training application in ``example/quickstart/test_sklearn.py`` that you can run as follows:: $ python example/quickstart/test_sklearn.py Score: 0.666 Model saved in run $ mlflow sklearn serve -r model $ curl -d '[{"x": 1}, {"x": -1}]' -H 'Content-Type: application/json' -X POST localhost:5000/invocations Contributing ------------ We happily welcome contributions, please see our `contribution guide `_ for details.