-
Notifications
You must be signed in to change notification settings - Fork 766
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 No.23】NO.23 为 Paddle 新增 ParameterDict API #6874
Merged
Merged
Changes from 2 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
540cfee
【Hackathon 7th No.23】NO.23 为 Paddle 新增 ParameterDict API
Micalling 1fd0387
update
Micalling f26c0ab
update
Micalling 5fa7d85
update
Micalling 82d07cc
update
Micalling a2c3ae9
update
Micalling 3441460
Update docs/api/paddle/nn/ParameterDict_cn.rst
sunzhongkai588 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
.. _cn_api_paddle_nn_ParameterDict: | ||
|
||
ParameterDict | ||
------------------------------- | ||
|
||
.. py:class:: paddle.nn.ParameterDict(parameters=None) | ||
|
||
|
||
|
||
|
||
参数字典容器。此容器的行为类似于 Python 字典,但它包含的参数将被正确地注册和添加。 | ||
|
||
参数 | ||
:::::::::::: | ||
|
||
- **parameters** (ParameterDict|OrderedDict|list[(key, Tensor)],可选) - 可迭代的 Parameters。 | ||
|
||
返回 | ||
:::::::::::: | ||
无 | ||
|
||
代码示例 | ||
:::::::::::: | ||
|
||
COPY-FROM: paddle.nn.ParameterDict |
21 changes: 21 additions & 0 deletions
21
.../model_convert/convert_from_pytorch/api_difference/nn/torch.nn.ParameterDict.md
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## [ 仅参数名不一致 ]torch.nn.ParameterDict | ||
|
||
### [torch.nn.ParameterDict](https://pytorch.org/docs/stable/generated/torch.nn.ParameterList.html?highlight=nn+parameterlist#torch.nn.ParameterDict) | ||
|
||
```python | ||
torch.nn.ParameterDict(values=None) | ||
``` | ||
|
||
### [paddle.nn.ParameterDict](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/ParameterDict_cn.html#parameterdict) | ||
|
||
```python | ||
paddle.nn.ParameterDict(parameters=None) | ||
``` | ||
|
||
两者功能一致且参数用法一致,仅参数名不一致,具体如下: | ||
|
||
### 参数映射 | ||
|
||
| PyTorch | PaddlePaddle | 备注 | | ||
| ------- | ------------ | ----------------------------------- | | ||
| values | parameters | 可迭代的 Parameters,参数名不一致。 | | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 commentThe reason will be displayed to describe this comment to others. Learn more. 好的好的,已经修改了,请review |
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.
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.
我把那个value改掉吧
PaddlePaddle/Paddle#68625
请review @sunzhongkai588
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.
PaddlePaddle/Paddle#68625
这个是修改英文参数的pr,请review,然后对应的docs也改掉了。
另外 PaddlePaddle/Paddle#68268 这个也跑完了的 @sunzhongkai588