-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmkdocs.yml
More file actions
80 lines (76 loc) · 2.43 KB
/
Copy pathmkdocs.yml
File metadata and controls
80 lines (76 loc) · 2.43 KB
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
site_name: InfluPaint
site_description: Inpainting denoising diffusion probabilistic models for infectious disease forecasting
site_author: Joseph Lemaitre, Justin Lessler
repo_url: https://github.com/ACCIDDA/influpaint
repo_name: influpaint
theme:
name: material
palette:
scheme: default
primary: indigo
accent: indigo
features:
- navigation.instant
- navigation.tracking
- navigation.sections
- toc.follow
- search.suggest
- search.highlight
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Quick Start: getting-started/quick-start.md
- Architecture:
- Overview: architecture/overview.md
- Training: architecture/training.md
- Inpainting: architecture/inpainting.md
- Workflows:
- Compiling Data Sources: workflows/compiling-data-sources.md
- Build Training Datasets: workflows/build-training-datasets.md
- Training Workflow: workflows/training.md
- Inpainting Workflow: workflows/inpainting.md
- Evaluation: workflows/evaluation.md
- API Reference:
- Batch:
- Scenarios: api/batch/scenarios.md
- Training: api/batch/training.md
- Inpainting: api/batch/inpainting.md
- Aggregation: api/batch/aggregation.md
- Config: api/batch/config.md
- MLflow Utils: api/batch/mlflow_utils.md
- Generate Jobs: api/batch/generate_inpainting_jobs.md
- Datasets:
- Loaders: api/datasets/loaders.md
- Mixer: api/datasets/mixer.md
- Transforms: api/datasets/transforms.md
- Read Datasources: api/datasets/read_datasources.md
- Models:
- DDPM: api/models/ddpm.md
- Inpaint Module: api/models/inpaint_module.md
- NN Blocks: api/models/nn_blocks.md
- Utils:
- Converters: api/utils/converters.md
- Ground Truth: api/utils/ground_truth.md
- Helpers: api/utils/helpers.md
- Plotting: api/utils/plotting.md
- Season Axis: api/utils/season_axis.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- attr_list
- md_in_html
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [.]
options:
show_source: true
show_root_heading: true