forked from PaddlePaddle/PaddleScience
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
164 lines (153 loc) · 4.79 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
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
# Copyright (c) 2023 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Project information
site_name: PaddleScience Docs
site_description: An out-of-the-box open source library for scientific computing based on deep learning.
site_author: PaddlePaddle
site_url: "https://github.com/PaddlePaddle/PaddleScience"
strict: false
# Repository
repo_name: PaddleScience
repo_url: "https://github.com/PaddlePaddle/PaddleScience"
# Copyright
copyright: Copyright © 2022 - 2023 PaddlePaddle
# Page tree
nav:
- PaddleScience:
- 主页: index.md
- 功能介绍: zh/overview.md
- 安装使用: zh/install_setup.md
- 快速开始: zh/quickstart.md
- 经典案例:
- PINNs:
- ViV: zh/examples/viv.md
- Darcy2D: zh/examples/darcy2d.md
- LDC2D_steady: zh/examples/ldc2d_steady.md
- LDC2D_unsteady: zh/examples/ldc2d_unsteady.md
- Cylinder2D_unsteady: zh/examples/cylinder2d_unsteady.md
- Laplace2D: zh/examples/laplace2d.md
- hPINNs: zh/examples/hpinns.md
- 数据驱动:
- FourCastNet: zh/examples/fourcastnet.md
- Lorenz_transform_physx: zh/examples/lorenz.md
- Rossler_transform_physx: zh/examples/rossler.md
- Cylinder2D_unsteady_transform_physx: zh/examples/cylinder2d_unsteady_transformer_physx.md
- DeepHPMs: zh/examples/deephpms.md
- tempoGAN: zh/examples/tempoGAN.md
- API文档:
- ppsci.arch: zh/api/arch.md
- ppsci.autodiff: zh/api/autodiff.md
- ppsci.constraint: zh/api/constraint.md
- ppsci.data:
- ppsci.data.dataset: zh/api/data/dataset.md
- ppsci.data.transform: zh/api/data/process/transform.md
- ppsci.data.batch_transform: zh/api/data/process/batch_transform.md
- ppsci.equation: zh/api/equation.md
- ppsci.geometry: zh/api/geometry.md
- ppsci.loss: zh/api/loss.md
- ppsci.metric: zh/api/metric.md
- ppsci.optimizer:
- ppsci.optimizer.optimizer: zh/api/optimizer.md
- ppsci.optimizer.lr_scheduler: zh/api/lr_scheduler.md
- ppsci.solver: zh/api/solver.md
- ppsci.utils: zh/api/utils.md
- ppsci.validate: zh/api/validate.md
- ppsci.visualize: zh/api/visualize.md
- 使用指南: zh/user_guide.md
- 开发与复现指南:
- 开发指南: zh/development.md
- 复现指南: zh/reproduction.md
- 技术稿件: zh/technical_doc.md
- 共创计划: zh/cooperation.md
- 实训社区: https://aistudio.baidu.com/aistudio/projectoverview/public?topic=15
- 旧版文档: https://paddlescience.paddlepaddle.org.cn/index.html
# Configuration
theme:
name: material
font:
code: Roboto Mono
text: Noto Serif SC
logo: ./images/icons/paddle.png
favicon: ./images/icons/favcion.png
language: "zh"
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.tracking
- navigation.sections
- navigation.prune
- navigation.top
- search.suggest
- navigation.instant
- navigation.expand
- content.code.copy
- content.code.select
- content.code.annotate
- search.highlight
palette:
# Palette toggle for light mode
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
# Plugins
plugins:
- include-markdown
- search
- glightbox
- mkdocstrings:
handlers:
python:
paths: [./ppsci]
# Extensions
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.snippets:
dedent_subsections: true
- pymdownx.arithmatex:
generic: true
- toc:
permalink: true
- pymdownx.inlinehilite
- pymdownx.superfences
- admonition
- pymdownx.details
- attr_list
- md_in_html
# Extra javascripts
extra_javascript:
- javascripts/bd_statistics.js
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# Extra css
extra_css:
- stylesheets/extra.css
# Extra
extra:
alternate:
- name: 简体中文
link: /zh/
lang: zh
- name: English
link: /en/
lang: en