Plugin that provides Huawei Cloud OBS Artifact Store functionality for MLflow
Project description
Huawei Cloud OBS store plugin for MLflow
This repository provides a MLflow plugin that allows users to use a Huawei Cloud OBS as the artifact store for MLflow.
Implementation overview
huaweicloudstoreplugin: this package includes theHuaweiCloudObsArtifactRepositoryclass that is used to read and write artifacts from Huawei Cloud OBS storage.setup.pyfile defines entrypoints that tell MLflow to automatically associate theobsURIs with theHuaweiCloudObsArtifactRepositoryimplementation when thehuaweicloudstorepluginlibrary is installed. The entrypoints are configured as follows:
entry_points={
"mlflow.artifact_repository":
"obs=huaweicloudstoreplugin.store.artifact.huaweicloud_obs_artifact_repo.py:HuaweiCloudObsArtifactRepository"
]
},
Usage
Install by pip on both your client and the server, and then use MLflow as normal. The Huawei Cloud OBS artifact store support will be provided automatically.
pip install huaweicloudstoreplugin
The plugin implements all of the MLflow artifact store APIs.
It expects Huawei Cloud Storage access credentials in the MLFLOW_OBS_REGION, MLFLOW_OBS_ACCESS_KEY_ID and MLFLOW_OBS_SECRET_ACCESS_KEY environment variables,
so you must set these variables on both your client application and your MLflow tracking server.
To use Huawei Cloud OBS as an artifact store, an OBS URI of the form obs://<bucket>/<path> must be provided, as shown in the example below:
import mlflow
class DemoModel(mlflow.pyfunc.PythonModel):
def predict(self, ctx, inp) -> int:
return 1
experiment = "demo"
mlflow.create_experiment(experiment, artifact_location="obs://mlflow-test/")
mlflow.set_experiment(experiment)
mlflow.pyfunc.log_model('model_test', python_model=DemoModel())
In the example provided above, the log_model operation creates three entries in the OBS storage obs://mlflow-test/$RUN_ID/artifacts/model_test/, the MLmodel file
and the conda.yaml file associated with the model.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file huaweicloudstorepluginecs-0.0.2.tar.gz.
File metadata
- Download URL: huaweicloudstorepluginecs-0.0.2.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba3b4c582277393b649aee00b5dc1d7c84079aebee7a9adb03c9119f22ad6725
|
|
| MD5 |
8b6a29913030806a24144c0daabca97c
|
|
| BLAKE2b-256 |
4d0514ab4dfb5b7e687839b5b1dee1539d2824ed8b278c1dbbe1c67ad89f6d7a
|