-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmkdocs.yml
53 lines (50 loc) · 1.3 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
site_name: PySHAC Documentation
theme:
name: 'material'
palette:
primary: 'indigo'
accent: 'light blue'
search:
language: 'en'
feature:
tabs: false
docs_dir: docs/sources
repo_name: 'Github'
repo_url: https://github.com/titu1994/pyshac
# site_url: # TODO
site_description: 'Documentation for PySHAC, the Python library for Sequential Halving and Classification.'
dev_addr: '0.0.0.0:8000'
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.smartsymbols
- pymdownx.superfences
pages:
- Home: index.md
- Installation: install.md
- User Guide: guide.md
- Serial Evaluation: serial-execution.md
- Managed Engines: managed.md
- Deterministic Engines: deterministic.md
- Custom Hyper Parameters: custom-hyper-parameters.md
- External Dataset Training: external-dataset-training.md
- Callbacks: callbacks.md
- Config:
- Hyper Parameters: config/hyperparameters.md
- Datasets: config/data.md
- Callbacks: config/callbacks.md
- Core:
- SHAC: core/engine.md
- PyTorch SHAC: core/torch_engine.md
- Tensorflow SHAC: core/tf_engine.md
- Keras SHAC: core/keras_engine.md
- Utils:
- Visualization: utils/vis_utils.md