This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
78 lines (73 loc) · 2.38 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
68
69
70
71
72
73
74
75
76
77
78
site_name: LightGBM-Benchmark
# https://www.mkdocs.org/user-guide/configuration/
repo_url: https://github.com/Microsoft/lightgbm-benchmark
edit_uri: edit/main/docs
nav:
- Home: index.md
- About: lightgbm-benchmark-project.md
- Contribute:
Developer Guide: contribute/developer-guide.md
Architecture Guide: contribute/architecture-guide.md
Reporting Guide: contribute/reporting-guide.md
- Run:
Install: run/install.md
Run manually: run/manual-benchmark.md
Run in AzureML:
Azure Setup: run/azureml/azure-setup.md
Local Setup: run/azureml/local-setup.md
Benchmark Pipelines:
Generate data: run/azureml/generate-synthetic-data.md
Training: run/azureml/benchmark-training.md
Inferencing: run/azureml/benchmark-inferencing.md
Custom Pipelines:
Upload your data: run/azureml/upload-your-data.md
Train on your data: run/azureml/train-on-your-data.md
Designer UI: run/azureml/designer-ui.md
- Results:
Inferencing: results/inferencing.md
Manual: results/manual.md
- Reference Docs:
- src/common/:
- aml.py: references/common/aml.md
- components.py: references/common/components.md
- io.py: references/common/io.md
- lightgbm_utils.py: references/common/lightgbm_utils.md
- metrics.py: references/common/metrics.md
- perf.py: references/common/perf.md
- tasks.py: references/common/tasks.md
- src/scripts/:
- sample/sample.py: references/scripts/sample/sample.md
- training/lightgbm_python/: references/scripts/training/lightgbm_python.md
theme:
name: readthedocs
name: material
markdown_extensions:
- pymdownx.tabbed
- pymdownx.superfences
- pymdownx.snippets
- admonition
- pymdownx.highlight:
use_pygments: true
linenums: true
linenums_style: pymdownx-inline
# https://github.com/mkdocs/mkdocs/issues/777
- markdown_include.include:
base_path: .
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
setup_commands:
- import sys
- sys.path.append("src")
rendering:
show_source: true
show_if_no_docstring: false
members_order: "source"
show_root_toc_entry: false
show_root_heading: false
#custom_templates: templates
watch:
- src/