-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Neural Modules Configuration - stage 1: init parameters cleanup #309
Conversation
…KHTIAR Signed-off-by: Tomasz Kornuta <[email protected]>
…y, unit tests NOT working Signed-off-by: Tomasz Kornuta <[email protected]>
Signed-off-by: Tomasz Kornuta <[email protected]>
…alization Signed-off-by: Tomasz Kornuta <[email protected]>
Signed-off-by: Tomasz Kornuta <[email protected]>
This pull request introduces 2 alerts when merging 44406e1 into 1fddca2 - view on LGTM.com new alerts:
|
Signed-off-by: Tomasz Kornuta <[email protected]>
Signed-off-by: Tomasz Kornuta <[email protected]>
Signed-off-by: Tomasz Kornuta <[email protected]>
This pull request introduces 16 alerts when merging 439c938 into 1fddca2 - view on LGTM.com new alerts:
|
…gested by an old comment) Signed-off-by: Tomasz Kornuta <[email protected]>
This pull request introduces 16 alerts when merging 7460430 into 1fddca2 - view on LGTM.com new alerts:
|
|
Signed-off-by: Tomasz Kornuta <[email protected]>
Signed-off-by: Tomasz Kornuta <[email protected]>
Signed-off-by: Tomasz Kornuta <[email protected]>
…DataLayer Signed-off-by: Tomasz Kornuta <[email protected]>
…to DL Signed-off-by: Tomasz Kornuta <[email protected]>
…ssing invalid parameters to init() Signed-off-by: Tomasz Kornuta <[email protected]>
This pull request introduces 8 alerts when merging c2f1db8 into 1fddca2 - view on LGTM.com new alerts:
|
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.
- Please do not check in "examples/start_here/movie_data.txt file
- See some comments inline
Signed-off-by: Tomasz Kornuta <[email protected]>
Signed-off-by: Tomasz Kornuta <[email protected]>
Signed-off-by: Tomasz Kornuta <[email protected]>
This pull request introduces 8 alerts when merging 066a423 into 1fddca2 - view on LGTM.com new alerts:
|
Signed-off-by: Tomasz Kornuta <[email protected]>
This pull request introduces 8 alerts when merging daf1e7a into 1fddca2 - view on LGTM.com new alerts:
|
Signed-off-by: Tomasz Kornuta <[email protected]>
Signed-off-by: Oleksii Kuchaiev <[email protected]>
This pull request introduces 8 alerts when merging 62e2c64 into 1fddca2 - view on LGTM.com new alerts:
|
Signed-off-by: Tomasz Kornuta <[email protected]>
This pull request introduces 8 alerts when merging c8b0610 into 1fddca2 - view on LGTM.com new alerts:
|
Signed-off-by: Tomasz Kornuta <[email protected]>
Signed-off-by: Tomasz Kornuta <[email protected]>
Signed-off-by: Tomasz Kornuta <[email protected]>
Signed-off-by: Tomasz Kornuta <[email protected]>
This pull request introduces 7 alerts when merging 90e9eef into 4137c2b - view on LGTM.com new alerts:
|
Signed-off-by: Tomasz Kornuta <[email protected]>
Signed-off-by: Tomasz Kornuta <[email protected]>
Signed-off-by: Tomasz Kornuta <[email protected]>
This pull request introduces 6 alerts when merging 2d1a678 into 4137c2b - view on LGTM.com new alerts:
|
Signed-off-by: Tomasz Kornuta <[email protected]>
Signed-off-by: Tomasz Kornuta <[email protected]>
@blisc will update the changelog in the next PR (when will finish NM configuration - stage 2 ;) ) |
Signed-off-by: Tomasz Kornuta <[email protected]>
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.
Please see comments inline
@@ -0,0 +1,47 @@ | |||
# ! /usr/bin/python |
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.
Why is this file needed? I don't see anything being imported or exported here
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.
by "this" I mean the whole file "simplest_example_configuration_import.py"
# Return parameters. | ||
return init_params | ||
|
||
def _validate_params(self, params): |
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.
this should start with 2 underscores like "__extract_init_params"
Signed-off-by: Oleksii Kuchaiev <[email protected]>
Update CODEOWNERS Signed-off-by: Mark Sturdevant <[email protected]>
The goal of this PR is to prepare the ground for MNs configuration import-export.
The core idea is described in the Design Doc:
https://docs.google.com/document/d/1HhRzdsLO1hfiMBnR8v2_QIEeNe9m7qjERo4pgCpKhpk/edit#
The current PR is:
Please note the changes are consistent with our contribution guidelines:
https://github.com/NVIDIA/NeMo/blob/master/CONTRIBUTING.md
in particular with the point:
*Minimize the use of *kwargs.