-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
40 lines (40 loc) · 1.4 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
33
34
35
36
37
38
39
40
site_name: Applied Deep Learning
site_url: https://www.data-mining.co.nz/applied-deep-learning/
site_description: Documentation for Applied Deep Learning.
repo_url: https://github.com/waikato-datamining/applied-deep-learning
edit_uri: edit/main/docs/
theme:
name: material
logo: logo.png
favicon: favicon.ico
markdown_extensions:
- toc:
baselevel: 2
permalink: "#"
- attr_list
plugins:
- search
# https://github.com/soulless-viewer/mkdocs-video
- mkdocs-video
# https://github.com/timvink/mkdocs-table-reader-plugin
- table-reader
nav:
- 'Home': index.md
- 'Prerequisites': prerequisites.md
- 'Previewing predictions': previewing_predictions.md
- 'Image classification':
- 'Introduction': image_classification/index.md
- 'Annotate': image_classification/annotate.md
- 'Frameworks': image_classification/frameworks.md
- 'Object detection':
- 'Introduction': object_detection/index.md
- 'Annotate': object_detection/annotate.md
- 'Frameworks': object_detection/frameworks.md
- 'Instance segmentation':
- 'Introduction': instance_segmentation/index.md
- 'Annotate': instance_segmentation/annotate.md
- 'Frameworks': instance_segmentation/frameworks.md
- 'Image segmentation':
- 'Introduction': image_segmentation/index.md
- 'Annotate': image_segmentation/annotate.md
- 'Frameworks': image_segmentation/frameworks.md