-
Notifications
You must be signed in to change notification settings - Fork 57
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
add conversion matchers for torchvision builtin models #508
add conversion matchers for torchvision builtin models #508
Conversation
Thanks for your contribution! |
@guozixu2001 验证集转失败了 |
这个对应的转换前的 torch 调用是什么样子的呀? |
你直接在CI里看吧,在CI日志里可以搜索相应的报错,就是我上面截图的。学会根据CI调试也是开发流程中一项重要能力。 |
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.
- progress不是应该被删掉了吗,这个CI是如何通过的
- 这个只能测 expect_code 吗,安装了torchvision 也完全无法运行吗
paddle_code = textwrap.dedent( | ||
""" | ||
import paddle | ||
alexnet = paddle.vision.models.alexnet(progress=False, pretrained=False) |
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.
progress不是应该被删掉了吗,这个CI是如何通过的
PR Docs
新增 torchvision 转换规则,对应文档:
PaddlePaddle/docs#6959
PR APIs