-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
106 lines (94 loc) · 2.98 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
99
100
101
102
103
104
105
106
site_name: Vision Foundation Models for Computed Tomography
theme:
font:
icon:
repo: fontawesome/brands/github
font:
code: Roboto Mono
name: 'material'
features:
- content.code.copy
- content.code.select
- header.autohide
- content.tooltips
- attr_list
- footnotes
- navigation.tabs
- navigation.footer
- content.code.annotate
icon:
annotation: material/star-four-points-circle
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: fontawesome/solid/circle-half-stroke
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: fontawesome/solid/lightbulb
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: fontawesome/solid/moon
name: Switch to system preference
# Plugins
# Auto API reference generation: https://mkdocstrings.github.io/recipes/#automatic-code-reference-pages
plugins:
- search
- autorefs
# - gen-files:
# scripts:
# - scripts/generate_api_reference_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
# - mkdocstrings:
# handlers:
# python:
# options:
# # Removed the default filter that excludes private members (that is, members whose names start with a single underscore).
# filters: null
# show_source: true
nav:
- 'index.md'
- 'Getting Started': 'getting-started/using_ctfm.md'
- 'Replication Guide':
- 'Installation': 'replication-guide/installation.md'
- 'Data Download and Preprocessing': 'replication-guide/data.md'
- 'Pre-training the FM': 'replication-guide/pretraining.md'
- 'Adapt the FM to downstream tasks': 'replication-guide/downstream.md'
- 'Baselines for downstream tasks': 'replication-guide/baselines.md'
- 'Reproduce Analysis': 'replication-guide/analysis.md'
# - 'Training baselines': 'replication-guide/reproduce_baselines.md'
# - 'Tutorials': https://github.com/AIM-Harvard/foundation-cancer-image-biomarker/tree/master/tutorials
# - 'API Reference': 'reference/'
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.superfences
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
repo_url: https://github.com/project-lighter/CT-FM
repo_name: project-lighter/CT-FM
copyright: <a href="https://aim.hms.harvard.edu">AIM © 2023</a>
extra:
generator: false
extra_javascript:
- assets/sh-annotation.js
extra_css:
- assets/extra.css