-
Notifications
You must be signed in to change notification settings - Fork 223
【Hackathon 8th No.14】CoNFiLD 论文复现 #1110
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
Thanks for your contribution! |
|
如果有可复现的精度结果,可以日志截图到github+上传log,这边可以开始测试 |
有的有的 |
2、3、4的太大了,我的batch_size是一个一个跑的,看的是他们的前几个的loss |
链接的是按照原论文那种,没有改动的 |
可视化代码尚未补上 |
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.
Tofix
@@ -0,0 +1,369 @@ | |||
# AI辅助的时空湍流生成:条件神经场潜在扩散模型(CoNFILD) | |||
|
|||
Distributed under a Creative Commons Attribution license 4.0 (CC BY). |
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.
文档过于简单,需要进行更详细的背景解释,论文的重要结论和精度需要补充上去
batch_size: 100 | ||
|
||
Data: | ||
data_path: /home/xinyang/store/projects/nfdiff/algo/elbow/uvp.npy |
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.
需要改为相对路径
batch_size: 40 | ||
|
||
Data: | ||
data_path: /home/xinyang/store/projects/nfdiff/algo/elbow/uvp.npy |
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.
需要改为相对路径
batch_size: 64 | ||
|
||
Data: | ||
data_path: /home/xinyang/store/projects/nfdiff/algo/elbow/uvp.npy |
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.
需要改为相对路径
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.
To Fix
2. **潜在扩散**:在潜在空间进行概率扩散过程,学习湍流统计分布。 | ||
3. **零样本条件生成**:结合贝叶斯推理,无需重新训练即可实现传感器重建、超分辨率等任务。 | ||
|
||
 |
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.
图片需要改为链接,删除conflid.png文件
|
||
## 2. 问题定义 | ||
### 2.1 研究背景 | ||
湍流模拟在航空航天、海洋工程等领域至关重要,但传统方法如直接数值模拟(DNS)和大涡模拟(LES)计算成本高昂,难以应用于高雷诺数或实时场景。现有深度学习模型多基于确定性框架,难以捕捉湍流的混沌特性,且在复杂几何域中表现受限。 |
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.
需要继续完善文档
paddle.save(latents_model.state_dict(), f"latents_model_{i}.pdparams") | ||
``` | ||
|
||
## 5. 实验结果 |
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.
需要进一步补充后处理结果
DEFAULT_W0 = 30.0 | ||
|
||
|
||
class Swish(paddle.nn.Layer): |
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/arc/activation.py的swish?
|
||
|
||
NLS_AND_INITS = { | ||
"sine": (Sine(), sine_init, first_layer_sine_init), |
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.
同上
x = self.net1[-1](x) | ||
return {self.output_keys[0]: x} | ||
|
||
def disable_gradient(self): |
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.
请看下是否用到?如果用到是否可以用no_grad代替?
PR types
Others
PR changes
Others
Describe
PaddlePaddle/community#1080