Metadata-Version: 2.1
Name: mlflow-extend
Version: 0.1.0
Summary: Extend MLflow API
Home-page: https://github.com/harupy/mlflow-extend
Maintainer: harupy
Maintainer-email: hkawamura0130@gmail.com
License: UNKNOWN
Project-URL: Documentation, https://mlflow-extend.readthedocs.io/en/latest/index.html
Project-URL: Source Code, https://github.com/harupy/mlflow-extend
Project-URL: Bug Tracker, https://github.com/harupy/mlflow-extend/issues
Description: # MLflow Extend
        
        [![Test](https://github.com/harupy/mlflow-extend/workflows/Test/badge.svg?event=push)](https://github.com/harupy/mlflow-extend/actions?query=workflow%3ATest)
        [![Documentation Status](https://readthedocs.org/projects/mlflow-extend/badge/?version=latest)](https://mlflow-extend.readthedocs.io/en/latest/?badge=latest)
        [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
        ![GitHub](https://img.shields.io/github/license/harupy/mlflow-extend?color=green)
        
        Extend MLflow's functionality.
        
        ## Examples
        
        ```python
        import numpy as np
        import pandas as pd
        import matplotlib.pyplot as plt
        from mlflow_extend import mlflow
        
        with mlflow.start_run():
            # dict
            mlflow.log_dict({'a', 0}, 'dict.json')
        
            # numpy array
            mlflow.log_numpy(np.array([0]), 'array.npy')
        
            # pandas dataframe
            mlflow.log_df(pd.DataFrame({'a': [0]}), 'df.csv')
        
            # matplotlib figure
            fig, ax = plt.subplots()
            ax.plot([0, 1], [0, 1])
            mlflow.log_figure(fig, 'figure.png')
        ```
        
        ## Lint
        
        ```bash
        # Run lint checking with black and flake8.
        ./dev/lint.sh
        ```
        
        ## Test
        
        ```bash
        # Run all the tests.
        ./dev/test.sh
        
        # Save figures generated during the tests to .pytest_basetemp.
        ./dev/test.sh --savefig
        ```
        
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
