【Hackathon 9th No.106】基于Paddle实现符号深度学习模型,用于流体力学方程发现#1250
Open
ADream-ki wants to merge 14 commits intoPaddlePaddle:developfrom
Open
【Hackathon 9th No.106】基于Paddle实现符号深度学习模型,用于流体力学方程发现#1250ADream-ki wants to merge 14 commits intoPaddlePaddle:developfrom
ADream-ki wants to merge 14 commits intoPaddlePaddle:developfrom
Conversation
…N, VarOGN, and HGN architectures. Add simulation dataset generation and configuration files. Remove outdated symbolic GCN files.
|
Thanks for your contribution! |
HydrogenSulfate
requested changes
Dec 5, 2025
Collaborator
HydrogenSulfate
left a comment
There was a problem hiding this comment.
- 向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> | |||
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 | ||
|
|
Collaborator
There was a problem hiding this comment.
文档里的代码块可以直接从py文件里引用,不需要复制过来,参考其他文档改下吧
Comment on lines
29
to
30
|
|
||
|
|
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 |
Collaborator
There was a problem hiding this comment.
get_edge_index 不需要在这里导入,这里仅导入模型类
ppsci/arch/__init__.py
Outdated
| "ExtFormerMoECuboid", | ||
| "FNO1d", | ||
| "Generator", | ||
| "get_edge_index", |
Contributor
Author
|
@HydrogenSulfate 我已经补全了MD文档了,请review |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR types
Others
PR changes
Others
Describe
添加回归模型案例