-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
32 lines (30 loc) · 1.07 KB
/
mkdocs.yml
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
26
27
28
29
30
31
32
site_name: Dive into Keras Source Code
theme:
favicon: img/favicon.png
logo: img/logo.svg
name: material
docs_dir: keras
repo_url: https://github.com/haifeng-jin/keras-source
site_url: https://haifeng-jin.github.io/keras-source
edit_uri: ""
site_description: "Dive into Keras Source Code"
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
extra_css:
- stylesheets/extra.css
nav:
- Introduction: index.md
- 1. Modeling API overview: 01-modeling-api-overview.md
- 2. The Layer class: 02-the-layer-class.md
- 3. The Model class: 03-the-model-class.md
- 4. The Functional class: 04-the-functional-class.md
- 5. The Sequential class: 05-the-sequential-class.md
- 6. Training API overview: 06-training-api-overview.md
- 7. The compile function: 07-the-compile-function.md
- 8. The fit function: 08-the-fit-function.md
- 9. The predict function: 09-the-predict-function.md
- 10. The evaluate function: 10-the-evaluate-function.md
- 11. The losses: 11-the-losses.md
- 12. The metrics: 12-the-metrics.md
- 13. The optimizers: 13-the-optimizers.md