https://github.com/mitmul/chainercmd
Command Line Tools for Chainer
https://github.com/mitmul/chainercmd
chainer deeplearning python
Last synced: about 1 year ago
JSON representation
Command Line Tools for Chainer
- Host: GitHub
- URL: https://github.com/mitmul/chainercmd
- Owner: mitmul
- License: mit
- Created: 2017-07-13T02:23:05.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-24T11:08:16.000Z (over 8 years ago)
- Last Synced: 2025-03-25T03:41:37.240Z (about 1 year ago)
- Topics: chainer, deeplearning, python
- Language: Python
- Homepage:
- Size: 43.9 KB
- Stars: 9
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ChainerCMD



ChainerCMD is a project instantiation tool for Chainer.
## Installation
```bash
$ pip install chainercmd
```
## Requirement
- Python>=3.6.2+
- Chainer>=3.1.0
- PyYAML>=3.12
## Quick Start
```
$ chainer init
```
It produces the below files
- config.yml
- custom_extension.py
- dataset.py
- evaluator_creator.py
- loss.py
- model.py
- updater_creator.py
You can modify these files and start training by
```bash
$ MPLBACKEND=Agg chainer train config.yml --gpus 0
```
See the details by giving `--help` argument to the subcommand:
```bash
$ chainer train --help
```