-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
【PaddlePaddle Hackathon】16、在 Paddle 中新增 WideResNet #36954
Closed
OccupyMars2025
wants to merge
25
commits into
PaddlePaddle:develop
from
OccupyMars2025:add-wide-resnet
Closed
【PaddlePaddle Hackathon】16、在 Paddle 中新增 WideResNet #36954
OccupyMars2025
wants to merge
25
commits into
PaddlePaddle:develop
from
OccupyMars2025:add-wide-resnet
Conversation
This file contains 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
Thanks for your contribution! |
✅ This PR's description meets the template requirements! |
改写自torchvision的话,可以在文件头添加下参考 CI没有通过,需要查看下原因 |
已经在Paddle/python/paddle/vision/models/resnet.py 开头添加注释说明该文件是改编自torchvision.models.resnet。但有些CI失败,我看其中的报错信息,似乎与我修改的代码无关,比如PR-CI-CINN报错信息为: check docker md5 fail !。 |
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
New features
PR changes
APIs
Describe
add wide resnet
task 16: #35994
改写自 torchvision.models.resnet
1.torchvision.models中的wide resnet预训练模型被转化为paddle预训练模型,纯手工完成,代码地址如下:
https://github.com/SmirnovKol/some-useful-code/blob/main/pytorch_to_paddle.ipynb
2.转化后的paddle预训练模型地址如下:
https://aistudio.baidu.com/aistudio/datasetdetail/115082/0
3.验证转化后的paddle模型在Imagenet-1k验证集上的精度(请查看v0.1版):
https://aistudio.baidu.com/aistudio/projectdetail/2557824