All Projects → chainer → Chainercv

chainer / Chainercv

Licence: mit
ChainerCV: a Library for Deep Learning in Computer Vision

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Chainercv

Einops
Deep learning operations reinvented (for pytorch, tensorflow, jax and others)
Stars: ✭ 4,022 (+174.91%)
Mutual labels:  chainer, cupy
chainer-dense-fusion
Chainer implementation of Dense Fusion
Stars: ✭ 21 (-98.56%)
Mutual labels:  chainer, chainercv
chainer-fcis
[This project has moved to ChainerCV] Chainer Implementation of Fully Convolutional Instance-aware Semantic Segmentation
Stars: ✭ 45 (-96.92%)
Mutual labels:  chainer, chainercv
waifu2x-chainer
Chainer implementation of waifu2x
Stars: ✭ 137 (-90.64%)
Mutual labels:  chainer, cupy
chainer-sort
Simple, Online, Realtime Tracking of Multiple Objects (SORT) implementation for Chainer and ChainerCV.
Stars: ✭ 20 (-98.63%)
Mutual labels:  chainer, chainercv
Chainer
A flexible framework of neural networks for deep learning
Stars: ✭ 5,656 (+286.6%)
Mutual labels:  chainer, cupy
Chainer Segnet
SegNet implementation & experiments in Chainer
Stars: ✭ 42 (-97.13%)
Mutual labels:  chainer
Seranet
Super Resolution of picture images using deep learning
Stars: ✭ 79 (-94.6%)
Mutual labels:  chainer
Chainer Trt
Chainer x TensorRT
Stars: ✭ 32 (-97.81%)
Mutual labels:  chainer
Chainerrl
ChainerRL is a deep reinforcement learning library built on top of Chainer.
Stars: ✭ 931 (-36.36%)
Mutual labels:  chainer
Kiss
Code for the paper "KISS: Keeping it Simple for Scene Text Recognition"
Stars: ✭ 108 (-92.62%)
Mutual labels:  chainer
Pynvvl
A Python wrapper of NVIDIA Video Loader (NVVL) with CuPy for fast video loading with Python
Stars: ✭ 95 (-93.51%)
Mutual labels:  cupy
Chainer Pspnet
PSPNet in Chainer
Stars: ✭ 76 (-94.81%)
Mutual labels:  chainer
Wavenet
WaveNet implementation with chainer
Stars: ✭ 53 (-96.38%)
Mutual labels:  chainer
Spacenet building detection
Project to train/test convolutional neural networks to extract buildings from SpaceNet satellite imageries.
Stars: ✭ 83 (-94.33%)
Mutual labels:  chainer
Tensorly
TensorLy: Tensor Learning in Python.
Stars: ✭ 977 (-33.22%)
Mutual labels:  cupy
Wasserstein Gan
Chainer implementation of Wasserstein GAN
Stars: ✭ 95 (-93.51%)
Mutual labels:  chainer
Resnet Multipleframework
ResNet benchmark by Keras(TensorFlow), Keras(MXNet), Chainer, PyTorch using Google Colab
Stars: ✭ 14 (-99.04%)
Mutual labels:  chainer
Chainer Ssd
Implementation of SSD (Single Shot MultiBox Detector) using Chainer
Stars: ✭ 66 (-95.49%)
Mutual labels:  chainer
Chainer Handson
CAUTION: This is not maintained anymore. Visit https://github.com/chainer-community/chainer-colab-notebook/
Stars: ✭ 84 (-94.26%)
Mutual labels:  chainer

PyPI License travis Read the Docs

ChainerCV: a Library for Deep Learning in Computer Vision

ChainerCV is a collection of tools to train and run neural networks for computer vision tasks using Chainer.

You can find the documentation here.

Supported tasks:

Guiding Principles

ChainerCV is developed under the following three guiding principles.

  • Ease of Use -- Implementations of computer vision networks with a cohesive and simple interface.
  • Reproducibility -- Training scripts that are perfect for being used as reference implementations.
  • Compositionality -- Tools such as data loaders and evaluation scripts that have common API.

Installation

$ pip install -U numpy
$ pip install chainercv

The instruction on installation using Anaconda is here (recommended).

Requirements

  • Chainer and its dependencies
  • Pillow
  • Cython (Build requirements)

For additional features

Environments under Python 2.7.12 and 3.6.0 are tested.

  • The master branch is designed to work on Chainer v6 (the stable version) and v7 (the development version).
  • The following branches are kept for the previous version of Chainer. Note that these branches are unmaintained.
    • 0.4.11 (for Chainer v1). It can be installed by pip install chainercv==0.4.11.
    • 0.7 (for Chainer v2). It can be installed by pip install chainercv==0.7.
    • 0.8 (for Chainer v3). It can be installed by pip install chainercv==0.8.
    • 0.10 (for Chainer v4). It can be installed by pip install chainercv==0.10.
    • 0.12 (for Chainer v5). It can be installed by pip install chainercv==0.12.
    • 0.13 (for Chainer v6). It can be installed by pip install chainercv==0.13.

Data Conventions

  • Image
    • The order of color channel is RGB.
    • Shape is CHW (i.e. (channel, height, width)).
    • The range of values is [0, 255].
    • Size is represented by row-column order (i.e. (height, width)).
  • Bounding Boxes
    • Shape is (R, 4).
    • Coordinates are ordered as (y_min, x_min, y_max, x_max). The order is the opposite of OpenCV.
  • Semantic Segmentation Image
    • Shape is (height, width).
    • The value is class id, which is in range [0, n_class - 1].

Sample Visualization

Example are outputs of detection models supported by ChainerCV These are the outputs of the detection models supported by ChainerCV.

Citation

If ChainerCV helps your research, please cite the paper for ACM Multimedia Open Source Software Competition. Here is a BibTeX entry:

@inproceedings{ChainerCV2017,
    author = {Niitani, Yusuke and Ogawa, Toru and Saito, Shunta and Saito, Masaki},
    title = {ChainerCV: a Library for Deep Learning in Computer Vision},
    booktitle = {ACM Multimedia},
    year = {2017},
}

The preprint can be found in arXiv: https://arxiv.org/abs/1708.08169

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].