-
Notifications
You must be signed in to change notification settings - Fork 234
【Hackathon 9th No.106】基于Paddle实现符号深度学习模型,用于流体力学方程发现 #1250
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Conversation
…N, VarOGN, and HGN architectures. Add simulation dataset generation and configuration files. Remove outdated symbolic GCN files.
|
Thanks for your contribution! |
HydrogenSulfate
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- 向index.md、README.md、mkdocs.yaml三个文件中,添加案例链接,这样文档才能被索引和展示
- 提交代码前请安装pre-commit,并且格式化你提交的文件(至少目前看来都是没经过格式化的)
| @@ -0,0 +1,833 @@ | |||
| # Graph Networks for Physics Discovery (GN) | |||
|
|
|||
| <a href="https://aistudio.baidu.com/projectdetail/9557878" class="md-button md-button--primary" style>AI Studio快速体验</a> | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这个项目有吗?好像是未公开的
docs/zh/examples/symbolic_gn.md
Outdated
| raw_target_data = sim_dataset.get_derivative() # [v, a] for HGN | ||
| else: | ||
| raw_target_data = sim_dataset.get_acceleration() # Acceleration for OGN/VarOGN | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
文档里的代码块可以直接从py文件里引用,不需要复制过来,参考其他文档改下吧
|
|
||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
连续的空行保留一个即可
ppsci/arch/__init__.py
Outdated
| from ppsci.arch.physx_transformer import PhysformerGPT2 # isort:skip | ||
| from ppsci.arch.sfnonet import SFNONet # isort:skip | ||
| from ppsci.arch.spinn import SPINN # isort:skip | ||
| from ppsci.arch.symbolic_gn import OGN, VarOGN, HGN, get_edge_index # isort:skip |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
get_edge_index 不需要在这里导入,这里仅导入模型类
ppsci/arch/__init__.py
Outdated
| "ExtFormerMoECuboid", | ||
| "FNO1d", | ||
| "Generator", | ||
| "get_edge_index", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
删除
PR types
Others
PR changes
Others
Describe
添加回归模型案例