-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmkdocs.yml
54 lines (45 loc) · 1012 Bytes
/
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
site_name: PyTorch Adapt
theme:
name: 'material'
palette:
scheme: slate
primary: 'green'
accent: 'green'
logo: imgs/TinyLogo.png
favicon: imgs/Favicon.png
# features:
# - navigation.tabs
# - toc.integrate # gets rid of table of contents on the right side of the page
nav:
- Overview: index.md
- Getting started: getting_started.md
- Papers implemented:
- Unsupervised Domain Adaptation: algorithms/uda.md
- Validators: algorithms/validators.md
- Documentation: docs/
watch:
- src
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- mkdocstrings:
handlers:
python:
paths: [src]
options:
show_root_toc_entry: no
- section-index
- literate-nav:
nav_file: SUMMARY.md
markdown_extensions:
- toc:
permalink: True
toc_depth: 2
- pymdownx.highlight
- pymdownx.superfences
extra_css:
- css/style.css
repo_name: 'KevinMusgrave/pytorch-adapt'
repo_url: 'https://github.com/KevinMusgrave/pytorch-adapt'