-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
67 lines (63 loc) · 1.88 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
site_name: OpenML Tensorflow Extension
theme:
name: material
features:
- content.code.copy
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
primary: indigo
accent: indigo
scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
markdown_extensions:
- admonition
- codehilite
- attr_list
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
linenums: true
- pymdownx.inlinehilite
- toc:
permalink: true
plugins:
- search
- mkdocs-jupyter
- awesome-pages
# - mknotebooks:
# execute: false
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [openml_tensorflow]
load_external_modules: true
show_source: true
options:
docstring_section_style: table
show_docstring_functions: true
nav:
- Home: "index.md"
- API Reference:
- "Config": "API reference/Config.md"
- "OpenML Integration": "API reference/OpenML integration.md"
- Docker Reference:
- "Docker": "Docker reference/Docker.md"
- Examples:
- "Image Classification Task": "Examples/tf_image_classification.py"
- "Performance Check Image Classification Task": "Examples/tf_image_classification_sanity_check.py"
- "Image Classification Task on Big Dataset": "Examples/tf_image_classification_Indoorscenes_dataset.py"
- "Pretrained Image Classification Example": "Examples/tf_pretrained_model_Indoorscenes_dataset.py"
- "Pretrained Image Classification on Big Dataset": "Examples/tf_transfer_learning.py"
- "Limitations of the API": "Limitations of the API.md"