Metadata-Version: 2.1
Name: torch-fit
Version: 0.0.1
Summary: `Keras.Model.fit`-like torch fit implementation
Home-page: https://github.com/kaelzhang/torch-fit
Author: kaelzhang
Author-email: 
License: MIT
Description: [![](https://travis-ci.org/kaelzhang/torch-fit.svg?branch=master)](https://travis-ci.org/kaelzhang/torch-fit)
        [![](https://codecov.io/gh/kaelzhang/torch-fit/branch/master/graph/badge.svg)](https://codecov.io/gh/kaelzhang/torch-fit)
        [![](https://img.shields.io/pypi/v/torch-fit.svg)](https://pypi.org/project/torch-fit/)
        [![](https://img.shields.io/pypi/l/torch-fit.svg)](https://github.com/kaelzhang/torch-fit)
        
        # torch-fit
        
        `Keras.Model.fit`-like torch fit implementation
        
        ## Install
        
        ```sh
        $ pip install torch-fit
        ```
        
        ## Usage
        
        ```py
        from torch_fit import fit
        
        model = MyPyTorchModule()
        
        history = fit(
          model,
          loss='mse',
          metrics='mae'
        )
        ```
        
        ## License
        
        [MIT](LICENSE)
        
Keywords: torch-fit
Platform: UNKNOWN
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
