-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
58 lines (53 loc) Β· 1.67 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
site_name: SkelShop Documentation
site_description: "Documentation of SkelShop, a toolkit for offline skeleton and face analysis of talking heads videos"
repo_url: "https://github.com/frankier/skelshop"
repo_name: "frankier/skelshop"
nav:
- Getting started: index.md
- User guide:
- Introduction: user-guide-intro.md
- Pipelines overview: pipelines-overview.md
- 'Meet the...':
- Pose estimators: pose-estimators.md
- Shot segmentors: shot-segmentors.md
- Within-shot pose trackers: pose-trackers.md
- 'Face chip detectors/croppers': face-extractors.md
- Face embedders: face-embedders.md
- Benchmarks: benchmark.md
- 'Guide: configuring the face embedding pipeline': face-pipeline-configuration-guide.md
- Person identification: identification.md
- Automation with snakemake: snakemake.md
- Misc. usage examples: usage-examples.md
- Developer guide:
- Pipeline internals: pipeline-internals.md
- Tracking: tracking.md
- Formats: formats.md
- Reading and writing the formats from your own code: io.md
- Contributing: development.md
- Reference:
- CLI reference: cli.md
- 'Issues': https://github.com/frankier/skelshop/issues
- 'Discussion & Questions': https://github.com/frankier/skelshop/discussions
theme:
name: "material"
features:
- navigation.tabs
markdown_extensions:
- admonition
- mkdocs-click
- footnotes
- markdown_inline_graphviz
- toc:
permalink: "#"
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_root_heading: true
watch:
- skelshop
extra_css:
- extra.css