oci-mlflow


Nameoci-mlflow JSON
Version 1.0.2 PyPI version JSON
download
home_page
SummaryOCI MLflow plugin to use OCI resources within MLflow
upload_time2023-07-27 22:46:44
maintainer
docs_urlNone
authorOracle Cloud Infrastructure Data Science
requires_python>=3.8
licenseUniversal Permissive License 1.0
keywords oracle cloud infrastructure oci object storage mlflow
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # OCI Mlflow Plugin

[![PyPI](https://img.shields.io/pypi/v/oci-mlflow.svg?style=for-the-badge&logo=pypi&logoColor=white)](https://pypi.org/project/oci-mlflow/) [![Python](https://img.shields.io/pypi/pyversions/oci-mlflow.svg?style=for-the-badge&logo=pypi&logoColor=white)](https://pypi.org/project/oci-mlflow/)

The OCI MLflow plugin enables OCI users to use OCI resources to manage their machine learning usecase life cycle. This table below provides the mapping between the MLflow features and the OCI resources that are used.

| MLflow Use Case    | OCI Resource |
| -------- | ------- |
| User running machine learning experiments on notebook, logs model artifacts, model performance etc  | Data Science Jobs, Object Storage, MySQL |
| Batch workloads using spark | Data Flow, Object Storage, MySQL |
| Model Deployment    | Data Science Model Deployment |
| User running machine learning experiments on notebook, logs model artifacts, model performance etc    | Object Storage, MySQL |


## Installation

To install the `oci-mlflow` plugin call -

```bash
  python3 -m pip install oci-mlflow
```

To test the `oci-mlflow` plugin call -

```bash
  mlflow deployments help -t oci-datascience
```

## Documentation
  - [OCI MLflow Documentation](https://oci-mlflow.readthedocs.io/en/latest/index.html)
  - [Getting started with Oracle Accelerated Data Science SDK](https://accelerated-data-science.readthedocs.io/en/latest/index.html)
  - [Getting started with OCI Data Science Jobs](https://docs.oracle.com/en-us/iaas/data-science/using/jobs-about.htm)
  - [Getting started with Data Science Environments](https://docs.oracle.com/en-us/iaas/data-science/using/conda_environ_list.htm)
  - [Getting started with Custom Conda Environments](https://docs.oracle.com/en-us/iaas/data-science/using/conda_create_conda_env.htm)
  - [Oracle AI & Data Science Blog](https://blogs.oracle.com/ai-and-datascience/)
  - [OCI Documentation](https://docs.oracle.com/en-us/iaas/data-science/using/data-science.htm)

## Examples
### Running MLflow projects on the OCI `Data Science jobs` and `Data Flow applications` -

```bash
export MLFLOW_TRACKING_URI=<tracking server url>
mlflow run . --experiment-name My-Experiment --backend oci-datascience --backend-config ./oci-datascience-config.json
```

### Deploying MLflow models to the OCI Model Deployments -

```bash
mlflow deployments help -t oci-datascience

export MLFLOW_TRACKING_URI=<tracking server url>

mlflow deployments create --name <model deployment name> -m models:/<registered model name>/<model version> -t oci-datascience --config deploy-config-file=deployment_specification.yaml
```


## Contributing

This project welcomes contributions from the community. Before submitting a pull request, please[review our contribution guide](./CONTRIBUTING.md)

Find Getting Started instructions for developers in [README-development.md](https://github.com/oracle/oci-mlflow/blob/main/README-development.md)

## Security

Consult the security guide [SECURITY.md](https://github.com/oracle/oci-mlflow/blob/main/SECURITY.md) for our responsible security vulnerability disclosure process.

## License

Copyright (c) 2023 Oracle and/or its affiliates. Licensed under the [Universal Permissive License v1.0](https://oss.oracle.com/licenses/upl/)

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "oci-mlflow",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "Oracle Cloud Infrastructure,OCI,Object Storage,MLflow",
    "author": "Oracle Cloud Infrastructure Data Science",
    "author_email": "",
    "download_url": "",
    "platform": null,
    "description": "# OCI Mlflow Plugin\n\n[![PyPI](https://img.shields.io/pypi/v/oci-mlflow.svg?style=for-the-badge&logo=pypi&logoColor=white)](https://pypi.org/project/oci-mlflow/) [![Python](https://img.shields.io/pypi/pyversions/oci-mlflow.svg?style=for-the-badge&logo=pypi&logoColor=white)](https://pypi.org/project/oci-mlflow/)\n\nThe OCI MLflow plugin enables OCI users to use OCI resources to manage their machine learning usecase life cycle. This table below provides the mapping between the MLflow features and the OCI resources that are used.\n\n| MLflow Use Case    | OCI Resource |\n| -------- | ------- |\n| User running machine learning experiments on notebook, logs model artifacts, model performance etc  | Data Science Jobs, Object Storage, MySQL |\n| Batch workloads using spark | Data Flow, Object Storage, MySQL |\n| Model Deployment    | Data Science Model Deployment |\n| User running machine learning experiments on notebook, logs model artifacts, model performance etc    | Object Storage, MySQL |\n\n\n## Installation\n\nTo install the `oci-mlflow` plugin call -\n\n```bash\n  python3 -m pip install oci-mlflow\n```\n\nTo test the `oci-mlflow` plugin call -\n\n```bash\n  mlflow deployments help -t oci-datascience\n```\n\n## Documentation\n  - [OCI MLflow Documentation](https://oci-mlflow.readthedocs.io/en/latest/index.html)\n  - [Getting started with Oracle Accelerated Data Science SDK](https://accelerated-data-science.readthedocs.io/en/latest/index.html)\n  - [Getting started with OCI Data Science Jobs](https://docs.oracle.com/en-us/iaas/data-science/using/jobs-about.htm)\n  - [Getting started with Data Science Environments](https://docs.oracle.com/en-us/iaas/data-science/using/conda_environ_list.htm)\n  - [Getting started with Custom Conda Environments](https://docs.oracle.com/en-us/iaas/data-science/using/conda_create_conda_env.htm)\n  - [Oracle AI & Data Science Blog](https://blogs.oracle.com/ai-and-datascience/)\n  - [OCI Documentation](https://docs.oracle.com/en-us/iaas/data-science/using/data-science.htm)\n\n## Examples\n### Running MLflow projects on the OCI `Data Science jobs` and `Data Flow applications` -\n\n```bash\nexport MLFLOW_TRACKING_URI=<tracking server url>\nmlflow run . --experiment-name My-Experiment --backend oci-datascience --backend-config ./oci-datascience-config.json\n```\n\n### Deploying MLflow models to the OCI Model Deployments -\n\n```bash\nmlflow deployments help -t oci-datascience\n\nexport MLFLOW_TRACKING_URI=<tracking server url>\n\nmlflow deployments create --name <model deployment name> -m models:/<registered model name>/<model version> -t oci-datascience --config deploy-config-file=deployment_specification.yaml\n```\n\n\n## Contributing\n\nThis project welcomes contributions from the community. Before submitting a pull request, please[review our contribution guide](./CONTRIBUTING.md)\n\nFind Getting Started instructions for developers in [README-development.md](https://github.com/oracle/oci-mlflow/blob/main/README-development.md)\n\n## Security\n\nConsult the security guide [SECURITY.md](https://github.com/oracle/oci-mlflow/blob/main/SECURITY.md) for our responsible security vulnerability disclosure process.\n\n## License\n\nCopyright (c) 2023 Oracle and/or its affiliates. Licensed under the [Universal Permissive License v1.0](https://oss.oracle.com/licenses/upl/)\n",
    "bugtrack_url": null,
    "license": "Universal Permissive License 1.0",
    "summary": "OCI MLflow plugin to use OCI resources within MLflow",
    "version": "1.0.2",
    "project_urls": null,
    "split_keywords": [
        "oracle cloud infrastructure",
        "oci",
        "object storage",
        "mlflow"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44abff3a0892a26a971072158e1c6ddf8a8291e813c35773dd09164d711dae16",
                "md5": "949401ec1aeef313176520420aa2e293",
                "sha256": "6b5883ed2c593291930c92136f780c81ef0e5320025c3514530382d971901b17"
            },
            "downloads": -1,
            "filename": "oci_mlflow-1.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "949401ec1aeef313176520420aa2e293",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 24979,
            "upload_time": "2023-07-27T22:46:44",
            "upload_time_iso_8601": "2023-07-27T22:46:44.699715Z",
            "url": "https://files.pythonhosted.org/packages/44/ab/ff3a0892a26a971072158e1c6ddf8a8291e813c35773dd09164d711dae16/oci_mlflow-1.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-27 22:46:44",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "oci-mlflow"
}
        
Elapsed time: 0.09612s