File: readme.md

package info (click to toggle)
tiny-dnn 1.0.0a3%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,784 kB
  • sloc: cpp: 16,471; ansic: 11,829; lisp: 3,682; python: 3,422; makefile: 208
file content (25 lines) | stat: -rw-r--r-- 476 bytes parent folder | download | duplicates (2)
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
```