-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
mkdocs.yml
70 lines (65 loc) · 1.46 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
site_name: "super-image"
site_description: "State-of-the-art image super resolution models for PyTorch."
site_url: "https://eugenesiow.github.io/super-image"
repo_url: "https://github.com/eugenesiow/super-image"
repo_name: "eugenesiow/super-image"
site_dir: "site"
nav:
- Home:
- Overview: index.md
- Tutorials:
- Prediction: prediction.md
- Training: training.md
- Evaluation: evaluation.md
- Changelog: changelog.md
- License: license.md
- Models:
- EDSR: models/edsr.md
- MSRN: models/msrn.md
- A2N: models/a2n.md
- PAN: models/pan.md
- CARN: models/carn.md
- Reference:
- CLI: reference/cli.md
- Configuration: reference/configuration.md
- Models: reference/models.md
- Trainer: reference/trainer.md
- Development:
- Contributing: contributing.md
- Code of Conduct: code_of_conduct.md
- Coverage report: coverage.md
theme:
name: material
features:
- navigation.tabs
palette:
scheme: slate
primary: teal
accent: purple
extra_css:
- css/mkdocstrings.css
markdown_extensions:
- admonition
- pymdownx.emoji
- pymdownx.magiclink
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist
- toc:
permalink: "#"
plugins:
- search
- coverage:
html_report_dir: build/coverage
- mkdocstrings:
watch:
- src/super_image
handlers:
python:
setup_commands:
- import sys
- sys.path.append("src")
- macros:
module_name: docs/macros