Metadata-Version: 2.1
Name: chainercv2
Version: 0.0.17
Summary: Image classification models for Chainer
Home-page: https://github.com/osmr/imgclsmob
Author: osmr
Author-email: osemery@gmail.com
License: MIT
Keywords: machine-learning deep-learning neuralnetwork image-classification chainer
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering :: Image Recognition
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: chainer (>=5.0.0)

# Large-scale image classification networks

Collection of large-scale image classification models on Chainer, pretrained on the ImageNet-1k dataset.

## Installation

To install, use:
```
pip install chainercv2
```

## Usage

Example of using the pretrained ResNet-18 model:
```
from chainercv2.model_provider import get_model as chcv2_get_model
net = chcv2_get_model("resnet18", pretrained=True)
```


