-
Notifications
You must be signed in to change notification settings - Fork 275
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
【Hackathon 7th PPSCI No.3】NO.3 DrivAerNet++ 论文复现 #1001
Conversation
在复现模型时,选择了图卷积网络(RegDGCNN)和点云网络(PointNet)以捕获 DrivAer++ 数据集中的复杂几何关系。以下是选型考量: | ||
- **网络模型选择**:RegDGCNN 用于捕捉几何结构的全局和局部依赖关系,PointNet 简化了对点云数据的处理流程。 | ||
- **飞桨框架适配**:使用 Paconvert 进行代码转换,并对不兼容部分手动适配。 | ||
- **数据加载和批处理**:由于 DrivAer++ 包含 8000 个样本,设计了高效的数据加载策略以支持模型的高效训练。 |
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.
具体不到8000,数据如果有问题可以联系我
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.
具体数量7713个样本,这里的8000是参考DriveAerNet++中的表格,如果7713个样本数据没有问题的话,后续按照实际情况对文档进行修改。
本次任务旨在复现 DrivAerNet++ 的 RegDGCNN 和 PointNet 网络模型。在包含 8000 个样本的 DrivAer++ 数据集上实现高精度的气动性能预测,确保预测精度与论文中指标对齐,并满足代码审核要求。具体目标包括: | ||
1. 复现 DrivAer++ 数据集上的 RegDGCNN 和 PointNet 模型。 | ||
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.
文档非常重要,尤其关注:论文的创新点和主要结论
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.
好的,后期会进行详细,目前提交一版RFC方便联系导师后续工作开展。
|-----------|------------|------------|---------------|--------|------| | ||
| RegDGCNN | 14.2 | 9.31 | 12.79 | 0.641 | 原论文 | | ||
| PointNet | 14.9 | 9.6 | 12.45 | 0.643 | 原论文 | | ||
| RegDGCNN | 待测试 | 待测试 | 待测试 | 待测试 | Pytorch复现 | |
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 description provided.