1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
# tiny-dnn documentations
A built version of document is available at [http://tiny-dnn.readthedocs.io/en/latest/index.html](here).
## Local build
You can build html documents in your local machine if you prefer.
Assuming you have python already, install Sphinx and recommonmark at first:
```bash
$ pip install sphinx sphinx-autobuild
$ pip install recommonmark
```
#### build on Windows
```bach
cd docs
make.bat html
```
#### build on Linux
```bash
cd docs
make html
```
|