-
Notifications
You must be signed in to change notification settings - Fork 55
/
mkdocs.yml
98 lines (89 loc) · 2.53 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Project information
site_name: ClinicaDL Documentation
site_author: ClinicaDL contributors
site_url: https://clinicadl.readthedocs.io/
site_description: >-
Open-source deep learning software for reproducible neuroimaging processing
# Repository
repo_name: aramislab/clinicadl
repo_url: https://github.com/aramis-lab/clinicadl
#edit_uri: master/edit/doc
# Copyright
copyright: Copyright © 2019-2024 ClinicaDL contributors
# Google Analytics
google_analytics:
- UA-106080699-1
- auto
# Configuration
theme:
name: material
custom_dir: docs/overrides
icon:
repo: material/github
language: en
logo: images/clinicadl_logo.png
favicon: images/favicon.png
features:
- header.autohide
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
# Version panel
extra_javascript:
- "https://code.jquery.com/jquery-3.3.1.min.js"
# Customization
extra:
feature:
tabs: true
social:
- icon: material/github
link: https://github.com/aramis-lab/
- icon: material/twitter
link: https://twitter.com/clinica_run
- icon: material/earth
link: http://www.aramislab.fr
version:
default: stable
extra_css:
- stylesheets/extra.css
# Extensions
markdown_extensions:
- admonition
- codehilite
- footnotes
- pymdownx.details
- pymdownx.superfences
- md_in_html
- toc:
permalink: True
# Page tree
nav:
- Home: index.md
- Installation: Installation.md
- First steps: Introduction.md
- Prepare your metadata: TSVTools.md
- Prepare your imaging data:
- Introduction: Preprocessing/Introduction.md
- Extract tensors: Preprocessing/Extract.md
- Quality check: Preprocessing/QualityCheck.md
- Generate synthetic data sets: Preprocessing/Generate.md
- Hyperparameter exploration: RandomSearch.md
- Train deep learning networks:
- TOML or command line definition: Train/Introduction.md
- Reproduce experiments: Train/Retrain.md
- Resume training: Train/Resume.md
- Implementation details: Train/Details.md
- Inference using trained models: Predict.md
- Interpret with attribution maps: Interpret.md
- Advanced user guide:
- Customize your training: Contribute/Custom.md
- Test your modifications: Contribute/Test.md
- Contribute to the project: Contribute/Newcomers.md