Metadata-Version: 2.1
Name: torch-basic-models
Version: 0.2.7
Summary: Basic Models for PyTorch, with Unified Interface
Home-page: https://github.com/FebruaryBreeze/torch-basic-models
Author: SF-Zhou
Author-email: sfzhou.scut@gmail.com
License: MIT
Description: # torch-basic-models [![Build Status](https://travis-ci.com/FebruaryBreeze/torch-basic-models.svg?branch=master)](https://travis-ci.com/FebruaryBreeze/torch-basic-models) [![codecov](https://codecov.io/gh/FebruaryBreeze/torch-basic-models/branch/master/graph/badge.svg)](https://codecov.io/gh/FebruaryBreeze/torch-basic-models) [![PyPI version](https://badge.fury.io/py/torch-basic-models.svg)](https://pypi.org/project/torch-basic-models/)
        
        Basic Models for PyTorch, with Unified Interface
        
        ## Installation
        
        Need Python 3.6+.
        
        ```bash
        pip install torch-basic-models
        ```
        
        ## Usage
        
        ```python
        import torch_basic_models
        
        ResNet = torch_basic_models.ResNet
        
        # or
        
        import box
        
        ResNet = box.load(name='ResNet', tag='model')
        ```
        
Keywords: PyTorch Basic Models
Platform: UNKNOWN
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
