-
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
[Typing][A-73,A-77] Add type annotations for some vision models (AlexNet
, LeNet
)
#65283
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
input_channels: int, | ||
output_channels: int, | ||
filter_size: int | list[int] | tuple[int], | ||
stride: int | str | tuple[int] | list[int], | ||
padding: int | list[int] | tuple[int], | ||
stdv: float, | ||
groups: int = 1, | ||
act: str | None = None, | ||
) -> None: |
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.
_typing
模块里面有 SizeXX
可以尝试一下 ~
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
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.
不不 ~~ python/paddle/_typing/shape.py
里面有 Size1
Size2
Size3 ...
可以用作 filter_size
~~~
python/paddle/vision/models/*.py
AlexNet
, LeNet
)
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.
PR Category
User Experience
PR Types
Improvements
Description
类型标注:
Related links
@SigureMo @megemini