-
Notifications
You must be signed in to change notification settings - Fork 317
Expand file tree
/
Copy pathmkdocs.yml
More file actions
190 lines (180 loc) · 5.41 KB
/
mkdocs.yml
File metadata and controls
190 lines (180 loc) · 5.41 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
site_name: FastVideo
site_description: A unified inference and post-training framework for accelerated video generation
site_author: FastVideo Team
site_url: http://127.0.0.1:8000/
# Documentation directory
docs_dir: docs
# Repository
repo_name: hao-ai-lab/FastVideo
repo_url: https://github.com/hao-ai-lab/FastVideo
edit_uri: edit/main/docs/
# Configuration
theme:
name: material
favicon: assets/logos/icon_simple.svg
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.instant
- navigation.tracking
- search.highlight
- search.share
- content.tabs.link
- content.code.copy
- content.code.annotate
icon:
logo: material/book-open-variant
font:
text: Roboto
code: Roboto Mono
# Plugins
plugins:
- search:
lang: en
- mkdocs-simple-hooks:
hooks:
on_pre_build: "docs.generate_examples:on_pre_build_hook"
- autorefs
# - awesome-nav
# - glightbox
- git-revision-date-localized:
# exclude autogenerated files
exclude:
- examples/*
- api-autonav:
modules: ["fastvideo"]
api_root_uri: "api"
exclude:
- "re:fastvideo\\._.*"
- "fastvideo.third_party"
- mkdocstrings:
handlers:
python:
paths: [.]
options:
docstring_style: google
show_source: true
show_root_heading: true
show_root_toc_entry: true
show_symbol_type_heading: true
show_object_full_path: true
show_category_heading: true
signature_crossrefs: true
show_if_no_docstring: false
show_signature_annotations: true
separate_signature: true
merge_init_into_class: true
show_submodules: true
show_bases: true
show_root_full_path: false
show_root_members_full_path: false
inventories:
- https://docs.python.org/3/objects.inv
# Markdown extensions
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
# line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji
- pymdownx.arithmatex:
generic: true
- pymdownx.critic
- pymdownx.details
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# For in page [TOC] (not sidebar)
- toc:
permalink: true
- mdx_truly_sane_lists
# Page tree
nav:
- Home: index.md
- Getting Started:
- Installation: getting_started/installation.md
- Quick Start: getting_started/quick_start.md
- V1 API: getting_started/v1_api.md
- Inference:
- Quick Start: inference/inference_quick_start.md
- Configuration: inference/configuration.md
- Offloading: inference/offloading.md
- Optimizations: inference/optimizations.md
- ComfyUI: inference/comfyui.md
- Support Matrix: inference/support_matrix.md
- CLI: inference/cli.md
- Add Pipeline: inference/add_pipeline.md
- Examples:
- Basic: inference/examples/basic.md
- Optimizations: inference/examples/optimizations.md
- STA Mask Search (Archived): inference/examples/sta_mask_search.md
- Training:
- Overview: training/overview.md
- Training Infrastructure: training/train_infra.md
- Data Preprocessing: training/data_preprocess.md
- Fine-tuning: training/finetune.md
- Examples:
- Training Index: training/examples/examples_training_index.md
- Wan T2V 1.3B: training/examples/wan_t2v_1.3B.md
- Wan I2V 14B 480p: training/examples/wan_i2v_14B_480p.md
- Wan2.1 Fun 1.3B InP: training/examples/Wan2.1-Fun-1.3B-InP.md
- Wan2.1 VSA: training/examples/Wan2.1-VSA.md
- Fine-tuning: training/examples/finetune.md
- Distillation:
- Data Preprocessing: distillation/data_preprocess.md
- DMD: distillation/dmd.md
- Attention:
- Overview: attention/index.md
- Video Sparse Attention: attention/vsa/index.md
- Sliding Tile Attention (Archived): attention/sta/index.md
- Backend Development: contributing/attention_backend.md
- Utilities:
- LoRA: utilities/lora.md
- Debugging: utilities/debugging.md
- Design:
- Overview: design/overview.md
- Training Architecture: design/training_architecture.md
- Developer Guide:
- Overview: contributing/overview.md
- Developer Environment:
- Index: contributing/developer_env/index.md
- Docker: contributing/developer_env/docker.md
- RunPod: contributing/developer_env/runpod.md
- Pull Requests: contributing/pull_requests.md
- CI Architecture: contributing/ci_architecture.md
- Testing: contributing/testing.md
- Profiling: contributing/profiling.md
- Coding Agents: contributing/coding_agents.md
- Attention Backend Development: contributing/attention_backend.md
- API Reference:
- FastVideo: api/fastvideo.md
# Extra
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/hao-ai-lab/FastVideo
version:
provider: mike
# Custom CSS
extra_css:
- assets/custom.css