url
stringlengths
52
53
repository_url
stringclasses
1 value
labels_url
stringlengths
66
67
comments_url
stringlengths
61
62
events_url
stringlengths
59
60
html_url
stringlengths
40
43
id
int64
719M
2.8B
node_id
stringlengths
18
32
number
int64
1.28k
11.9k
title
stringlengths
1
350
user
dict
labels
listlengths
0
10
state
stringclasses
2 values
locked
bool
2 classes
assignee
dict
assignees
listlengths
0
3
milestone
null
comments
sequencelengths
0
30
created_at
timestamp[s]
updated_at
timestamp[s]
closed_at
timestamp[s]
author_association
stringclasses
4 values
sub_issues_summary
dict
active_lock_reason
stringclasses
1 value
draft
bool
2 classes
pull_request
dict
body
stringlengths
0
73.4k
closed_by
dict
reactions
dict
timeline_url
stringlengths
61
62
performed_via_github_app
null
state_reason
stringclasses
3 values
is_pull_request
bool
2 classes
https://api.github.com/repos/NVIDIA/NeMo/issues/6532
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6532/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6532/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6532/events
https://github.com/NVIDIA/NeMo/issues/6532
1,691,818,623
I_kwDOC_bI7s5k1xp_
6,532
[FEA] Add partial row tabular tokenizer, 'best' transform for FloatCode, and refactor
{ "login": "esnvidia", "id": 80840697, "node_id": "MDQ6VXNlcjgwODQwNjk3", "avatar_url": "https://avatars.githubusercontent.com/u/80840697?v=4", "gravatar_id": "", "url": "https://api.github.com/users/esnvidia", "html_url": "https://github.com/esnvidia", "followers_url": "https://api.github.com/users/esnvidia/followers", "following_url": "https://api.github.com/users/esnvidia/following{/other_user}", "gists_url": "https://api.github.com/users/esnvidia/gists{/gist_id}", "starred_url": "https://api.github.com/users/esnvidia/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/esnvidia/subscriptions", "organizations_url": "https://api.github.com/users/esnvidia/orgs", "repos_url": "https://api.github.com/users/esnvidia/repos", "events_url": "https://api.github.com/users/esnvidia/events{/privacy}", "received_events_url": "https://api.github.com/users/esnvidia/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null } ]
closed
false
{ "login": "okuchaiev", "id": 22035961, "node_id": "MDQ6VXNlcjIyMDM1OTYx", "avatar_url": "https://avatars.githubusercontent.com/u/22035961?v=4", "gravatar_id": "", "url": "https://api.github.com/users/okuchaiev", "html_url": "https://github.com/okuchaiev", "followers_url": "https://api.github.com/users/okuchaiev/followers", "following_url": "https://api.github.com/users/okuchaiev/following{/other_user}", "gists_url": "https://api.github.com/users/okuchaiev/gists{/gist_id}", "starred_url": "https://api.github.com/users/okuchaiev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/okuchaiev/subscriptions", "organizations_url": "https://api.github.com/users/okuchaiev/orgs", "repos_url": "https://api.github.com/users/okuchaiev/repos", "events_url": "https://api.github.com/users/okuchaiev/events{/privacy}", "received_events_url": "https://api.github.com/users/okuchaiev/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "login": "okuchaiev", "id": 22035961, "node_id": "MDQ6VXNlcjIyMDM1OTYx", "avatar_url": "https://avatars.githubusercontent.com/u/22035961?v=4", "gravatar_id": "", "url": "https://api.github.com/users/okuchaiev", "html_url": "https://github.com/okuchaiev", "followers_url": "https://api.github.com/users/okuchaiev/followers", "following_url": "https://api.github.com/users/okuchaiev/following{/other_user}", "gists_url": "https://api.github.com/users/okuchaiev/gists{/gist_id}", "starred_url": "https://api.github.com/users/okuchaiev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/okuchaiev/subscriptions", "organizations_url": "https://api.github.com/users/okuchaiev/orgs", "repos_url": "https://api.github.com/users/okuchaiev/repos", "events_url": "https://api.github.com/users/okuchaiev/events{/privacy}", "received_events_url": "https://api.github.com/users/okuchaiev/received_events", "type": "User", "user_view_type": "public", "site_admin": false } ]
null
null
2023-05-02T05:53:10
2023-06-09T02:05:25
2023-06-09T02:05:25
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Is your feature request related to a problem? TabularTokenizer and ColumnCode api needs QOL improvements. It currently does not support partial row generation because of [this](https://github.com/NVIDIA/NeMo/blob/main/nemo/collections/common/tokenizers/tabular_tokenizer.py#L132) and [this](https://github.com/NVIDIA/NeMo/blob/main/nemo/collections/common/tokenizers/tabular_tokenizer.py#L164), impacting certain generative applications. because it expects all the columns and the columns to be in order. **Describe the solution you'd like** - add 'best' transform into FloatCode, and include new transforms, with some simple stats/heuristics for selecting a 'best' transform - refactor column_coder.py into datatype_code and column_code to separate out the datatypes that a column has from the column_code. - refactor Code into a code_spec, and add a NumericCode base class inheriting from Code. Push fill_all and has_nan into NumericCode as those params are only useful for numeric dataytypes - add a partial row encoder and decoder for the tabular tokenizer - rename some class methods to be more clear, ex. array_convert_to_int to transform_data_to_int_array to more accurately describe the function - Fix `bug` where the [FloatCode accuracy ](https://github.com/NVIDIA/NeMo/blob/main/nemo/collections/common/tokenizers/column_coder.py#L231) leads to cases where the decoded output is less accurate than it needed to be. - remove `column_coder.py` and replace it with `datatype_code`. Uses `code` over `coder` since `code` is for a mapping of the dtype col itself. - write tests A clear and concise description of what you want to happen. Tests will clarify usage. ex. ``` from datatype_code import FloatCode float_code = FloatCode('name', code_len=3, start_id=0, fill_all=True, base=100, has_nan=True, transform='identity') float_code.compute_code(data_series) ``` This keeps the new code that users will interface with inline with the current API. **Describe alternatives you've considered** putting `compute_code` into the into a `fit_transform`, and encode as `transform` and decode as `inverse_transform` to make the API similar to sklearn. A clear and concise description of any alternative solutions or features you've considered. - instead of tokenizing the text token by token. Group the tokens by column and tokenize by column in a vectorizable fashion. This speeds up decoding a lot. Even converting to a DataFrame and doing a `df.replace` or `map` will speed up over existing method. The caveat is this will not allow for partial row generation. - other vector based methods or parallel lookup methods to speed up encoding and decoding as this consumes quite a bit of time.
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6532/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6532/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6531
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6531/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6531/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6531/events
https://github.com/NVIDIA/NeMo/pull/6531
1,691,760,422
PR_kwDOC_bI7s5PjVns
6,531
GPT FP16 Inference Fix
{ "login": "MaximumEntropy", "id": 9114321, "node_id": "MDQ6VXNlcjkxMTQzMjE=", "avatar_url": "https://avatars.githubusercontent.com/u/9114321?v=4", "gravatar_id": "", "url": "https://api.github.com/users/MaximumEntropy", "html_url": "https://github.com/MaximumEntropy", "followers_url": "https://api.github.com/users/MaximumEntropy/followers", "following_url": "https://api.github.com/users/MaximumEntropy/following{/other_user}", "gists_url": "https://api.github.com/users/MaximumEntropy/gists{/gist_id}", "starred_url": "https://api.github.com/users/MaximumEntropy/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/MaximumEntropy/subscriptions", "organizations_url": "https://api.github.com/users/MaximumEntropy/orgs", "repos_url": "https://api.github.com/users/MaximumEntropy/repos", "events_url": "https://api.github.com/users/MaximumEntropy/events{/privacy}", "received_events_url": "https://api.github.com/users/MaximumEntropy/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-05-02T04:29:32
2023-05-03T03:14:18
2023-05-03T03:14:05
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6531", "html_url": "https://github.com/NVIDIA/NeMo/pull/6531", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6531.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6531.patch", "merged_at": null }
# What does this PR do ? Automatically sets O2=False when running inference with fp16. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "MaximumEntropy", "id": 9114321, "node_id": "MDQ6VXNlcjkxMTQzMjE=", "avatar_url": "https://avatars.githubusercontent.com/u/9114321?v=4", "gravatar_id": "", "url": "https://api.github.com/users/MaximumEntropy", "html_url": "https://github.com/MaximumEntropy", "followers_url": "https://api.github.com/users/MaximumEntropy/followers", "following_url": "https://api.github.com/users/MaximumEntropy/following{/other_user}", "gists_url": "https://api.github.com/users/MaximumEntropy/gists{/gist_id}", "starred_url": "https://api.github.com/users/MaximumEntropy/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/MaximumEntropy/subscriptions", "organizations_url": "https://api.github.com/users/MaximumEntropy/orgs", "repos_url": "https://api.github.com/users/MaximumEntropy/repos", "events_url": "https://api.github.com/users/MaximumEntropy/events{/privacy}", "received_events_url": "https://api.github.com/users/MaximumEntropy/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6531/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6531/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6529
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6529/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6529/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6529/events
https://github.com/NVIDIA/NeMo/pull/6529
1,691,669,859
PR_kwDOC_bI7s5PjCQO
6,529
Fix for T5 FT model
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-05-02T02:10:49
2023-05-03T19:30:54
2023-05-03T19:30:52
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6529", "html_url": "https://github.com/NVIDIA/NeMo/pull/6529", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6529.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6529.patch", "merged_at": "2023-05-03T19:30:52" }
# What does this PR do ? Fix for T5 FT model tensor shape **Collection**: NLP # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "Davood-M", "id": 3964285, "node_id": "MDQ6VXNlcjM5NjQyODU=", "avatar_url": "https://avatars.githubusercontent.com/u/3964285?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Davood-M", "html_url": "https://github.com/Davood-M", "followers_url": "https://api.github.com/users/Davood-M/followers", "following_url": "https://api.github.com/users/Davood-M/following{/other_user}", "gists_url": "https://api.github.com/users/Davood-M/gists{/gist_id}", "starred_url": "https://api.github.com/users/Davood-M/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Davood-M/subscriptions", "organizations_url": "https://api.github.com/users/Davood-M/orgs", "repos_url": "https://api.github.com/users/Davood-M/repos", "events_url": "https://api.github.com/users/Davood-M/events{/privacy}", "received_events_url": "https://api.github.com/users/Davood-M/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6529/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6529/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6528
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6528/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6528/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6528/events
https://github.com/NVIDIA/NeMo/pull/6528
1,691,628,005
PR_kwDOC_bI7s5Pi5kO
6,528
Restore GPT support for interleaved pipeline parallelism
{ "login": "timmoon10", "id": 4406448, "node_id": "MDQ6VXNlcjQ0MDY0NDg=", "avatar_url": "https://avatars.githubusercontent.com/u/4406448?v=4", "gravatar_id": "", "url": "https://api.github.com/users/timmoon10", "html_url": "https://github.com/timmoon10", "followers_url": "https://api.github.com/users/timmoon10/followers", "following_url": "https://api.github.com/users/timmoon10/following{/other_user}", "gists_url": "https://api.github.com/users/timmoon10/gists{/gist_id}", "starred_url": "https://api.github.com/users/timmoon10/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/timmoon10/subscriptions", "organizations_url": "https://api.github.com/users/timmoon10/orgs", "repos_url": "https://api.github.com/users/timmoon10/repos", "events_url": "https://api.github.com/users/timmoon10/events{/privacy}", "received_events_url": "https://api.github.com/users/timmoon10/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" }, { "id": 4840216855, "node_id": "LA_kwDOC_bI7s8AAAABIH_ZFw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/CI", "name": "CI", "color": "1D76DB", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-05-02T00:59:45
2023-05-09T18:28:35
2023-05-09T17:12:15
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6528", "html_url": "https://github.com/NVIDIA/NeMo/pull/6528", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6528.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6528.patch", "merged_at": "2023-05-09T17:12:15" }
# What does this PR do ? This restores support for interleaved pipeline parallelism after https://github.com/NVIDIA/NeMo/pull/6393. **Collection**: NLP # Changelog - Restore custom synchronization logic to GPT training and validation steps - Fix bug where all model chunks in first pipeline stage were created with embeddings - Support dynamic attention masks in pipeline parallelism # Usage Set `virtual_pipeline_model_parallel_size > 1`: https://github.com/NVIDIA/NeMo/blob/5468077f5127be1a4c88065de2544f4268b9a6e4/examples/nlp/language_modeling/conf/megatron_gpt_config.yaml#L51 This requires `pipeline_model_parallel_size > 2` and `virtual_pipeline_model_parallel_size*pipeline_model_parallel_size` divides `num_layers`. # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. Pinging @aklife97. # Additional Information * Restores functionality broken in https://github.com/NVIDIA/NeMo/pull/6393 * Depends on https://github.com/NVIDIA/Megatron-LM/pull/331
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6528/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6528/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6527
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6527/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6527/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6527/events
https://github.com/NVIDIA/NeMo/pull/6527
1,691,553,347
PR_kwDOC_bI7s5PipFG
6,527
Updating num_workers in lm_encoder_decoder
{ "login": "Davood-M", "id": 3964285, "node_id": "MDQ6VXNlcjM5NjQyODU=", "avatar_url": "https://avatars.githubusercontent.com/u/3964285?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Davood-M", "html_url": "https://github.com/Davood-M", "followers_url": "https://api.github.com/users/Davood-M/followers", "following_url": "https://api.github.com/users/Davood-M/following{/other_user}", "gists_url": "https://api.github.com/users/Davood-M/gists{/gist_id}", "starred_url": "https://api.github.com/users/Davood-M/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Davood-M/subscriptions", "organizations_url": "https://api.github.com/users/Davood-M/orgs", "repos_url": "https://api.github.com/users/Davood-M/repos", "events_url": "https://api.github.com/users/Davood-M/events{/privacy}", "received_events_url": "https://api.github.com/users/Davood-M/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-05-01T23:29:41
2023-05-10T18:45:26
2023-05-10T18:45:22
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6527", "html_url": "https://github.com/NVIDIA/NeMo/pull/6527", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6527.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6527.patch", "merged_at": null }
# What does this PR do ? Updating the num_workers from 0 to the one mentioned in the config **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "Davood-M", "id": 3964285, "node_id": "MDQ6VXNlcjM5NjQyODU=", "avatar_url": "https://avatars.githubusercontent.com/u/3964285?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Davood-M", "html_url": "https://github.com/Davood-M", "followers_url": "https://api.github.com/users/Davood-M/followers", "following_url": "https://api.github.com/users/Davood-M/following{/other_user}", "gists_url": "https://api.github.com/users/Davood-M/gists{/gist_id}", "starred_url": "https://api.github.com/users/Davood-M/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Davood-M/subscriptions", "organizations_url": "https://api.github.com/users/Davood-M/orgs", "repos_url": "https://api.github.com/users/Davood-M/repos", "events_url": "https://api.github.com/users/Davood-M/events{/privacy}", "received_events_url": "https://api.github.com/users/Davood-M/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6527/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6527/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6526
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6526/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6526/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6526/events
https://github.com/NVIDIA/NeMo/pull/6526
1,691,378,876
PR_kwDOC_bI7s5PiBxK
6,526
Purely GPU-based optimized RNN-T greedy batched decoding
{ "login": "hainan-xv", "id": 5440014, "node_id": "MDQ6VXNlcjU0NDAwMTQ=", "avatar_url": "https://avatars.githubusercontent.com/u/5440014?v=4", "gravatar_id": "", "url": "https://api.github.com/users/hainan-xv", "html_url": "https://github.com/hainan-xv", "followers_url": "https://api.github.com/users/hainan-xv/followers", "following_url": "https://api.github.com/users/hainan-xv/following{/other_user}", "gists_url": "https://api.github.com/users/hainan-xv/gists{/gist_id}", "starred_url": "https://api.github.com/users/hainan-xv/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/hainan-xv/subscriptions", "organizations_url": "https://api.github.com/users/hainan-xv/orgs", "repos_url": "https://api.github.com/users/hainan-xv/repos", "events_url": "https://api.github.com/users/hainan-xv/events{/privacy}", "received_events_url": "https://api.github.com/users/hainan-xv/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null }, { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-05-01T20:56:40
2023-05-24T01:55:39
2023-05-24T01:55:39
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6526", "html_url": "https://github.com/NVIDIA/NeMo/pull/6526", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6526.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6526.patch", "merged_at": null }
# What does this PR do ? A highly optimized implementation for RNN-T greedy batched decoding with GPUs. **Collection**: [Note which collection this PR will affect] ASR # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below The method could be invoked by setting rnnt_decoding.cuda_optimized as True, e.g. ``` python examples/asr/transcribe_speech.py \ model_path=$model \ dataset_manifest=$manifest \ rnnt_decoding.strategy=greedy_batch \ +rnnt_decoding.cuda_optimized=True \ batch_size=$batch \ output_filename=$out_file ``` This gives significant inference speed-up for large batch sizes. E.g. Librispeech Transducer-large model with stateless decoders running inference on test-other, with batch=128, | inference type | WER | decoding time | | --------------- | ----- | --------------- | | baseline greedy batch | 4.70 | 119s | | GPU optimized | 4.64 | 86s | # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6526/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6526/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6525
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6525/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6525/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6525/events
https://github.com/NVIDIA/NeMo/pull/6525
1,691,152,748
PR_kwDOC_bI7s5PhPeo
6,525
Update quartznet_15x5.yaml
{ "login": "Jorjeous", "id": 37293288, "node_id": "MDQ6VXNlcjM3MjkzMjg4", "avatar_url": "https://avatars.githubusercontent.com/u/37293288?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Jorjeous", "html_url": "https://github.com/Jorjeous", "followers_url": "https://api.github.com/users/Jorjeous/followers", "following_url": "https://api.github.com/users/Jorjeous/following{/other_user}", "gists_url": "https://api.github.com/users/Jorjeous/gists{/gist_id}", "starred_url": "https://api.github.com/users/Jorjeous/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Jorjeous/subscriptions", "organizations_url": "https://api.github.com/users/Jorjeous/orgs", "repos_url": "https://api.github.com/users/Jorjeous/repos", "events_url": "https://api.github.com/users/Jorjeous/events{/privacy}", "received_events_url": "https://api.github.com/users/Jorjeous/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null }, { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-05-01T18:17:20
2023-05-24T01:55:41
2023-05-24T01:55:41
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6525", "html_url": "https://github.com/NVIDIA/NeMo/pull/6525", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6525.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6525.patch", "merged_at": null }
# What does this PR do ? tb logging leads to error Add a one line overview of what this PR aims to accomplish. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6525/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6525/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6524
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6524/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6524/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6524/events
https://github.com/NVIDIA/NeMo/pull/6524
1,691,116,437
PR_kwDOC_bI7s5PhHdX
6,524
Not doing CastToFloat by default
{ "login": "borisfom", "id": 14189615, "node_id": "MDQ6VXNlcjE0MTg5NjE1", "avatar_url": "https://avatars.githubusercontent.com/u/14189615?v=4", "gravatar_id": "", "url": "https://api.github.com/users/borisfom", "html_url": "https://github.com/borisfom", "followers_url": "https://api.github.com/users/borisfom/followers", "following_url": "https://api.github.com/users/borisfom/following{/other_user}", "gists_url": "https://api.github.com/users/borisfom/gists{/gist_id}", "starred_url": "https://api.github.com/users/borisfom/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/borisfom/subscriptions", "organizations_url": "https://api.github.com/users/borisfom/orgs", "repos_url": "https://api.github.com/users/borisfom/repos", "events_url": "https://api.github.com/users/borisfom/events{/privacy}", "received_events_url": "https://api.github.com/users/borisfom/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
null
[]
null
null
2023-05-01T17:48:35
2023-05-04T19:41:08
2023-05-04T19:41:07
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6524", "html_url": "https://github.com/NVIDIA/NeMo/pull/6524", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6524.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6524.patch", "merged_at": "2023-05-04T19:41:07" }
# What does this PR do ? Removing casts around norms from the set of default pre-export replacements and moving them to a separate function. Latest TRT should not need that anymore - also the casts may prevent some fusion. That function may still be used from Nemo2Riva explicitly should it be needed on case-by-case basis. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "ericharper", "id": 11999610, "node_id": "MDQ6VXNlcjExOTk5NjEw", "avatar_url": "https://avatars.githubusercontent.com/u/11999610?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ericharper", "html_url": "https://github.com/ericharper", "followers_url": "https://api.github.com/users/ericharper/followers", "following_url": "https://api.github.com/users/ericharper/following{/other_user}", "gists_url": "https://api.github.com/users/ericharper/gists{/gist_id}", "starred_url": "https://api.github.com/users/ericharper/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ericharper/subscriptions", "organizations_url": "https://api.github.com/users/ericharper/orgs", "repos_url": "https://api.github.com/users/ericharper/repos", "events_url": "https://api.github.com/users/ericharper/events{/privacy}", "received_events_url": "https://api.github.com/users/ericharper/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6524/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6524/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6523
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6523/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6523/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6523/events
https://github.com/NVIDIA/NeMo/pull/6523
1,691,027,185
PR_kwDOC_bI7s5Pg0xS
6,523
Fix typos
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-05-01T16:20:40
2023-05-02T21:42:29
2023-05-01T16:49:25
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6523", "html_url": "https://github.com/NVIDIA/NeMo/pull/6523", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6523.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6523.patch", "merged_at": "2023-05-01T16:49:25" }
# What does this PR do ? Fix typos **Collection**: [ASR] # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6523/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6523/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6522
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6522/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6522/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6522/events
https://github.com/NVIDIA/NeMo/issues/6522
1,689,863,284
I_kwDOC_bI7s5kuUR0
6,522
Training FastPitch Using More Than 1 GPU Fails
{ "login": "OrjwanZaafarani", "id": 61848961, "node_id": "MDQ6VXNlcjYxODQ4OTYx", "avatar_url": "https://avatars.githubusercontent.com/u/61848961?v=4", "gravatar_id": "", "url": "https://api.github.com/users/OrjwanZaafarani", "html_url": "https://github.com/OrjwanZaafarani", "followers_url": "https://api.github.com/users/OrjwanZaafarani/followers", "following_url": "https://api.github.com/users/OrjwanZaafarani/following{/other_user}", "gists_url": "https://api.github.com/users/OrjwanZaafarani/gists{/gist_id}", "starred_url": "https://api.github.com/users/OrjwanZaafarani/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/OrjwanZaafarani/subscriptions", "organizations_url": "https://api.github.com/users/OrjwanZaafarani/orgs", "repos_url": "https://api.github.com/users/OrjwanZaafarani/repos", "events_url": "https://api.github.com/users/OrjwanZaafarani/events{/privacy}", "received_events_url": "https://api.github.com/users/OrjwanZaafarani/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1485815557, "node_id": "MDU6TGFiZWwxNDg1ODE1NTU3", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/bug", "name": "bug", "color": "d73a4a", "default": true, "description": "Something isn't working" }, { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
null
2023-04-30T10:26:46
2023-06-07T02:05:12
2023-06-07T02:05:12
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Describe the bug** When training FastPitch on more than 1 GPU the following error occurs: `AttributeError: Can't pickle local object 'FilterbankFeatures.__init__.<locals>.<lambda>'` docker run command: ``` python fastpitch.py --config-name=fastpitch_align_v1.05.yaml train_dataset=/path/to/manifest.json validation_datasets=/path/to/manifest.json sup_data_path=/path/to/wav exp_manager.exp_dir=path/to/dir trainer.max_epochs=10 trainer.check_val_every_n_epoch=1 model.train_ds.dataloader_params.batch_size=70 model.validation_ds.dataloader_params.batch_size=30 model.n_speakers=1 model.pitch_mean=152.3 model.pitch_std=64.0 model.pitch_fmin=30 model.pitch_fmax=512 model.optim.lr=1e-1 trainer.devices=6 trainer.strategy=null ``` **Environment details** Docker image: nvcr.io/nvidia/nemo:23.01 GPU model: NVIDIA A100-SXM
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6522/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6522/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6521
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6521/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6521/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6521/events
https://github.com/NVIDIA/NeMo/pull/6521
1,689,578,951
PR_kwDOC_bI7s5PcJd5
6,521
Typos and cosmetic fixes
{ "login": "mikemckiernan", "id": 18604620, "node_id": "MDQ6VXNlcjE4NjA0NjIw", "avatar_url": "https://avatars.githubusercontent.com/u/18604620?v=4", "gravatar_id": "", "url": "https://api.github.com/users/mikemckiernan", "html_url": "https://github.com/mikemckiernan", "followers_url": "https://api.github.com/users/mikemckiernan/followers", "following_url": "https://api.github.com/users/mikemckiernan/following{/other_user}", "gists_url": "https://api.github.com/users/mikemckiernan/gists{/gist_id}", "starred_url": "https://api.github.com/users/mikemckiernan/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/mikemckiernan/subscriptions", "organizations_url": "https://api.github.com/users/mikemckiernan/orgs", "repos_url": "https://api.github.com/users/mikemckiernan/repos", "events_url": "https://api.github.com/users/mikemckiernan/events{/privacy}", "received_events_url": "https://api.github.com/users/mikemckiernan/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null }, { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-29T14:29:03
2023-05-21T01:56:48
2023-05-21T01:56:48
MEMBER
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6521", "html_url": "https://github.com/NVIDIA/NeMo/pull/6521", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6521.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6521.patch", "merged_at": null }
# What does this PR do ? Correct a few typographic errors and make a few cosmetic suggestions to markup. **Collection**: [Note which collection this PR will affect] # Changelog - Corrected typographical errors in some of the NLP documentation. # Usage Not applicable. # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [x] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information Not opened.
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6521/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6521/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6520
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6520/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6520/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6520/events
https://github.com/NVIDIA/NeMo/issues/6520
1,689,565,972
I_kwDOC_bI7s5ktLsU
6,520
ModuleNotFoundError: No module named '_swig_decoders'
{ "login": "marziye-A", "id": 119397883, "node_id": "U_kgDOBx3d-w", "avatar_url": "https://avatars.githubusercontent.com/u/119397883?v=4", "gravatar_id": "", "url": "https://api.github.com/users/marziye-A", "html_url": "https://github.com/marziye-A", "followers_url": "https://api.github.com/users/marziye-A/followers", "following_url": "https://api.github.com/users/marziye-A/following{/other_user}", "gists_url": "https://api.github.com/users/marziye-A/gists{/gist_id}", "starred_url": "https://api.github.com/users/marziye-A/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/marziye-A/subscriptions", "organizations_url": "https://api.github.com/users/marziye-A/orgs", "repos_url": "https://api.github.com/users/marziye-A/repos", "events_url": "https://api.github.com/users/marziye-A/events{/privacy}", "received_events_url": "https://api.github.com/users/marziye-A/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
null
2023-04-29T13:44:41
2023-06-09T02:05:27
2023-06-09T02:05:27
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
hello when i try to install beam search decoders and kenlm to build a language model for asr i face this error: ` (asr) root@DESKTOP-GD87QE2:/home/azad/decoders# ./setup.sh Install decoders ... scorer.h:22: Warning 401: Nothing known about base class 'lm::EnumerateVocab'. Ignored. running install /root/anaconda3/envs/asr/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools. warnings.warn( /root/anaconda3/envs/asr/lib/python3.9/site-packages/setuptools/command/easy_install.py:144: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools. warnings.warn( running bdist_egg running egg_info writing ctc_decoders.egg-info/PKG-INFO writing dependency_links to ctc_decoders.egg-info/dependency_links.txt writing top-level names to ctc_decoders.egg-info/top_level.txt reading manifest file 'ctc_decoders.egg-info/SOURCES.txt' writing manifest file 'ctc_decoders.egg-info/SOURCES.txt' installing library code to build/bdist.linux-x86_64/egg running install_lib running build_py copying swig_decoders.py -> build/lib.linux-x86_64-cpython-39 running build_ext building '_swig_decoders' extension gcc -pthread -B /root/anaconda3/envs/asr/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -Wall -fPIC -O2 -isystem /root/anaconda3/envs/asr/include -I/root/anaconda3/envs/asr/include -fPIC -O2 -isystem /root/anaconda3/envs/asr/include -fPIC -I. -Ikenlm -Iopenfst-1.6.3/src/include -IThreadPool -I/root/anaconda3/envs/asr/include/python3.9 -c ctc_beam_search_decoder.cpp -o build/temp.linux-x86_64-cpython-39/ctc_beam_search_decoder.o -O3 -DNDEBUG -DKENLM_MAX_ORDER=6 -std=c++11 -DHAVE_ZLIB -DHAVE_BZLIB -DHAVE_XZLIB gcc -pthread -B /root/anaconda3/envs/asr/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -Wall -fPIC -O2 -isystem /root/anaconda3/envs/asr/include -I/root/anaconda3/envs/asr/include -fPIC -O2 -isystem /root/anaconda3/envs/asr/include -fPIC -I. -Ikenlm -Iopenfst-1.6.3/src/include -IThreadPool -I/root/anaconda3/envs/asr/include/python3.9 -c ctc_greedy_decoder.cpp -o build/temp.linux-x86_64-cpython-39/ctc_greedy_decoder.o -O3 -DNDEBUG -DKENLM_MAX_ORDER=6 -std=c++11 -DHAVE_ZLIB -DHAVE_BZLIB -DHAVE_XZLIB gcc -pthread -B /root/anaconda3/envs/asr/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -Wall -fPIC -O2 -isystem /root/anaconda3/envs/asr/include -I/root/anaconda3/envs/asr/include -fPIC -O2 -isystem /root/anaconda3/envs/asr/include -fPIC -I. -Ikenlm -Iopenfst-1.6.3/src/include -IThreadPool -I/root/anaconda3/envs/asr/include/python3.9 -c decoder_utils.cpp -o build/temp.linux-x86_64-cpython-39/decoder_utils.o -O3 -DNDEBUG -DKENLM_MAX_ORDER=6 -std=c++11 -DHAVE_ZLIB -DHAVE_BZLIB -DHAVE_XZLIB gcc -pthread -B /root/anaconda3/envs/asr/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -Wall -fPIC -O2 -isystem /root/anaconda3/envs/asr/include -I/root/anaconda3/envs/asr/include -fPIC -O2 -isystem /root/anaconda3/envs/asr/include -fPIC -I. -Ikenlm -Iopenfst-1.6.3/src/include -IThreadPool -I/root/anaconda3/envs/asr/include/python3.9 -c decoders_wrap.cxx -o build/temp.linux-x86_64-cpython-39/decoders_wrap.o -O3 -DNDEBUG -DKENLM_MAX_ORDER=6 -std=c++11 -DHAVE_ZLIB -DHAVE_BZLIB -DHAVE_XZLIB In file included from decoder_utils.cpp:1: decoder_utils.h:5:10: fatal error: fst/log.h: No such file or directory 5 | #include "fst/log.h" | ^~~~~~~~~~~ compilation terminated. gcc -pthread -B /root/anaconda3/envs/asr/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -Wall -fPIC -O2 -isystem /root/anaconda3/envs/asr/include -I/root/anaconda3/envs/asr/include -fPIC -O2 -isystem /root/anaconda3/envs/asr/include -fPIC -I. -Ikenlm -Iopenfst-1.6.3/src/include -IThreadPool -I/root/anaconda3/envs/asr/include/python3.9 -c kenlm/lm/bhiksha.cc -o build/temp.linux-x86_64-cpython-39/kenlm/lm/bhiksha.o -O3 -DNDEBUG -DKENLM_MAX_ORDER=6 -std=c++11 -DHAVE_ZLIB -DHAVE_BZLIB -DHAVE_XZLIB In file included from ctc_greedy_decoder.cpp:2: decoder_utils.h:5:10: fatal error: fst/log.h: No such file or directory 5 | #include "fst/log.h" | ^~~~~~~~~~~ compilation terminated. gcc -pthread -B /root/anaconda3/envs/asr/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -Wall -fPIC -O2 -isystem /root/anaconda3/envs/asr/include -I/root/anaconda3/envs/asr/include -fPIC -O2 -isystem /root/anaconda3/envs/asr/include -fPIC -I. -Ikenlm -Iopenfst-1.6.3/src/include -IThreadPool -I/root/anaconda3/envs/asr/include/python3.9 -c kenlm/lm/binary_format.cc -o build/temp.linux-x86_64-cpython-39/kenlm/lm/binary_format.o -O3 -DNDEBUG -DKENLM_MAX_ORDER=6 -std=c++11 -DHAVE_ZLIB -DHAVE_BZLIB -DHAVE_XZLIB In file included from scorer.h:14, from ctc_beam_search_decoder.h:8, from ctc_beam_search_decoder.cpp:1: path_trie.h:10:10: fatal error: fst/fstlib.h: No such file or directory 10 | #include "fst/fstlib.h" | ^~~~~~~~~~~~~~ compilation terminated. gcc -pthread -B /root/anaconda3/envs/asr/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -Wall -fPIC -O2 -isystem /root/anaconda3/envs/asr/include -I/root/anaconda3/envs/asr/include -fPIC -O2 -isystem /root/anaconda3/envs/asr/include -fPIC -I. -Ikenlm -Iopenfst-1.6.3/src/include -IThreadPool -I/root/anaconda3/envs/asr/include/python3.9 -c kenlm/lm/config.cc -o build/temp.linux-x86_64-cpython-39/kenlm/lm/config.o -O3 -DNDEBUG -DKENLM_MAX_ORDER=6 -std=c++11 -DHAVE_ZLIB -DHAVE_BZLIB -DHAVE_XZLIB error: command '/usr/bin/gcc' failed with exit code 1 In file included from scorer.h:14, from decoders_wrap.cxx:2840: path_trie.h:10:10: fatal error: fst/fstlib.h: No such file or directory 10 | #include "fst/fstlib.h" | ^~~~~~~~~~~~~~ compilation terminated. Testing installation ... kenlm/lm/binary_format.cc: In member function ‘void lm::ngram::BinaryFormat::FinishFile(const lm::ngram::Config&, lm::ngram::ModelType, unsigned int, const std::vector<long unsigned int>&)’: kenlm/lm/binary_format.cc:261:9: warning: ‘void* memset(void*, int, size_t)’ clearing an object of type ‘struct lm::ngram::Parameters’ with no trivial copy-assignment; use assignment or value-initialization instead [-Wclass-memaccess] 261 | memset(&params, 0, sizeof(Parameters)); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from kenlm/lm/binary_format.cc:1: kenlm/lm/binary_format.hh:42:8: note: ‘struct lm::ngram::Parameters’ declared here 42 | struct Parameters { | ^~~~~~~~~~ Traceback (most recent call last): File "/home/azad/decoders/ctc_decoders_test.py", line 5, in <module> from ctc_decoders import Scorer, ctc_beam_search_decoder File "/home/azad/decoders/ctc_decoders.py", line 6, in <module> import swig_decoders File "/home/azad/decoders/swig_decoders.py", line 15, in <module> import _swig_decoders ModuleNotFoundError: No module named '_swig_decoders'` any help is really appreciated. thanks
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6520/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6520/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6518
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6518/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6518/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6518/events
https://github.com/NVIDIA/NeMo/pull/6518
1,688,886,802
PR_kwDOC_bI7s5PZ2fT
6,518
[TTS] fixed broken path.
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4418253970, "node_id": "LA_kwDOC_bI7s8AAAABB1k0kg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/TTS", "name": "TTS", "color": "49AF28", "default": false, "description": "" }, { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
null
2023-04-28T17:19:05
2023-04-28T21:08:43
2023-04-28T21:08:42
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6518", "html_url": "https://github.com/NVIDIA/NeMo/pull/6518", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6518.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6518.patch", "merged_at": "2023-04-28T21:08:42" }
# What does this PR do ? Add a one line overview of what this PR aims to accomplish. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "XuesongYang", "id": 1646669, "node_id": "MDQ6VXNlcjE2NDY2Njk=", "avatar_url": "https://avatars.githubusercontent.com/u/1646669?v=4", "gravatar_id": "", "url": "https://api.github.com/users/XuesongYang", "html_url": "https://github.com/XuesongYang", "followers_url": "https://api.github.com/users/XuesongYang/followers", "following_url": "https://api.github.com/users/XuesongYang/following{/other_user}", "gists_url": "https://api.github.com/users/XuesongYang/gists{/gist_id}", "starred_url": "https://api.github.com/users/XuesongYang/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/XuesongYang/subscriptions", "organizations_url": "https://api.github.com/users/XuesongYang/orgs", "repos_url": "https://api.github.com/users/XuesongYang/repos", "events_url": "https://api.github.com/users/XuesongYang/events{/privacy}", "received_events_url": "https://api.github.com/users/XuesongYang/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6518/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6518/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6517
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6517/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6517/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6517/events
https://github.com/NVIDIA/NeMo/pull/6517
1,688,790,088
PR_kwDOC_bI7s5PZhto
6,517
Fix custom `forward_torch_softmax`
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null }, { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-28T15:56:17
2023-04-28T17:41:32
2023-04-28T17:41:31
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6517", "html_url": "https://github.com/NVIDIA/NeMo/pull/6517", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6517.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6517.patch", "merged_at": "2023-04-28T17:41:31" }
# What does this PR do ? forward_torch_softmax gives error difference in apex only when mask is set. default to normal behavior when mask is None **Collection**: NLP # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6517/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6517/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6516
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6516/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6516/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6516/events
https://github.com/NVIDIA/NeMo/issues/6516
1,688,392,722
I_kwDOC_bI7s5kotQS
6,516
Facing issue when i run model with my own audio file
{ "login": "ghost", "id": 10137, "node_id": "MDQ6VXNlcjEwMTM3", "avatar_url": "https://avatars.githubusercontent.com/u/10137?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ghost", "html_url": "https://github.com/ghost", "followers_url": "https://api.github.com/users/ghost/followers", "following_url": "https://api.github.com/users/ghost/following{/other_user}", "gists_url": "https://api.github.com/users/ghost/gists{/gist_id}", "starred_url": "https://api.github.com/users/ghost/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ghost/subscriptions", "organizations_url": "https://api.github.com/users/ghost/orgs", "repos_url": "https://api.github.com/users/ghost/repos", "events_url": "https://api.github.com/users/ghost/events{/privacy}", "received_events_url": "https://api.github.com/users/ghost/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null } ]
closed
false
{ "login": "nithinraok", "id": 19668129, "node_id": "MDQ6VXNlcjE5NjY4MTI5", "avatar_url": "https://avatars.githubusercontent.com/u/19668129?v=4", "gravatar_id": "", "url": "https://api.github.com/users/nithinraok", "html_url": "https://github.com/nithinraok", "followers_url": "https://api.github.com/users/nithinraok/followers", "following_url": "https://api.github.com/users/nithinraok/following{/other_user}", "gists_url": "https://api.github.com/users/nithinraok/gists{/gist_id}", "starred_url": "https://api.github.com/users/nithinraok/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/nithinraok/subscriptions", "organizations_url": "https://api.github.com/users/nithinraok/orgs", "repos_url": "https://api.github.com/users/nithinraok/repos", "events_url": "https://api.github.com/users/nithinraok/events{/privacy}", "received_events_url": "https://api.github.com/users/nithinraok/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "login": "nithinraok", "id": 19668129, "node_id": "MDQ6VXNlcjE5NjY4MTI5", "avatar_url": "https://avatars.githubusercontent.com/u/19668129?v=4", "gravatar_id": "", "url": "https://api.github.com/users/nithinraok", "html_url": "https://github.com/nithinraok", "followers_url": "https://api.github.com/users/nithinraok/followers", "following_url": "https://api.github.com/users/nithinraok/following{/other_user}", "gists_url": "https://api.github.com/users/nithinraok/gists{/gist_id}", "starred_url": "https://api.github.com/users/nithinraok/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/nithinraok/subscriptions", "organizations_url": "https://api.github.com/users/nithinraok/orgs", "repos_url": "https://api.github.com/users/nithinraok/repos", "events_url": "https://api.github.com/users/nithinraok/events{/privacy}", "received_events_url": "https://api.github.com/users/nithinraok/received_events", "type": "User", "user_view_type": "public", "site_admin": false } ]
null
null
2023-04-28T11:29:18
2023-06-09T02:05:29
2023-06-09T02:05:29
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
Specifically, it would be helpful to know the audio format, bitrate, size and sampling rate of the audio file. These details will help me to identify any potential issues that might be causing the problem. ![issue1](https://user-images.githubusercontent.com/105053572/235134513-93dcd5f7-8144-4c40-9551-293493ce3378.png)
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6516/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6516/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6514
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6514/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6514/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6514/events
https://github.com/NVIDIA/NeMo/pull/6514
1,687,983,623
PR_kwDOC_bI7s5PWzq_
6,514
[TTS] fixed broken path.
{ "login": "XuesongYang", "id": 1646669, "node_id": "MDQ6VXNlcjE2NDY2Njk=", "avatar_url": "https://avatars.githubusercontent.com/u/1646669?v=4", "gravatar_id": "", "url": "https://api.github.com/users/XuesongYang", "html_url": "https://github.com/XuesongYang", "followers_url": "https://api.github.com/users/XuesongYang/followers", "following_url": "https://api.github.com/users/XuesongYang/following{/other_user}", "gists_url": "https://api.github.com/users/XuesongYang/gists{/gist_id}", "starred_url": "https://api.github.com/users/XuesongYang/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/XuesongYang/subscriptions", "organizations_url": "https://api.github.com/users/XuesongYang/orgs", "repos_url": "https://api.github.com/users/XuesongYang/repos", "events_url": "https://api.github.com/users/XuesongYang/events{/privacy}", "received_events_url": "https://api.github.com/users/XuesongYang/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4418253970, "node_id": "LA_kwDOC_bI7s8AAAABB1k0kg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/TTS", "name": "TTS", "color": "49AF28", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-28T06:34:20
2023-04-28T17:18:40
2023-04-28T17:18:39
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6514", "html_url": "https://github.com/NVIDIA/NeMo/pull/6514", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6514.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6514.patch", "merged_at": "2023-04-28T17:18:39" }
# What does this PR do ? Add a one line overview of what this PR aims to accomplish. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "XuesongYang", "id": 1646669, "node_id": "MDQ6VXNlcjE2NDY2Njk=", "avatar_url": "https://avatars.githubusercontent.com/u/1646669?v=4", "gravatar_id": "", "url": "https://api.github.com/users/XuesongYang", "html_url": "https://github.com/XuesongYang", "followers_url": "https://api.github.com/users/XuesongYang/followers", "following_url": "https://api.github.com/users/XuesongYang/following{/other_user}", "gists_url": "https://api.github.com/users/XuesongYang/gists{/gist_id}", "starred_url": "https://api.github.com/users/XuesongYang/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/XuesongYang/subscriptions", "organizations_url": "https://api.github.com/users/XuesongYang/orgs", "repos_url": "https://api.github.com/users/XuesongYang/repos", "events_url": "https://api.github.com/users/XuesongYang/events{/privacy}", "received_events_url": "https://api.github.com/users/XuesongYang/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6514/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6514/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6513
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6513/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6513/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6513/events
https://github.com/NVIDIA/NeMo/issues/6513
1,687,893,253
I_kwDOC_bI7s5kmzUF
6,513
False error message: 'last epoch number of samples exceeded max value' when training model
{ "login": "singleheart", "id": 3762354, "node_id": "MDQ6VXNlcjM3NjIzNTQ=", "avatar_url": "https://avatars.githubusercontent.com/u/3762354?v=4", "gravatar_id": "", "url": "https://api.github.com/users/singleheart", "html_url": "https://github.com/singleheart", "followers_url": "https://api.github.com/users/singleheart/followers", "following_url": "https://api.github.com/users/singleheart/following{/other_user}", "gists_url": "https://api.github.com/users/singleheart/gists{/gist_id}", "starred_url": "https://api.github.com/users/singleheart/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/singleheart/subscriptions", "organizations_url": "https://api.github.com/users/singleheart/orgs", "repos_url": "https://api.github.com/users/singleheart/repos", "events_url": "https://api.github.com/users/singleheart/events{/privacy}", "received_events_url": "https://api.github.com/users/singleheart/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1485815557, "node_id": "MDU6TGFiZWwxNDg1ODE1NTU3", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/bug", "name": "bug", "color": "d73a4a", "default": true, "description": "Something isn't working" }, { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
null
2023-04-28T04:50:49
2023-06-02T15:27:21
2023-06-02T15:27:20
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Describe the bug** This bug occurs on a specific dataset where the data loading process mistakenly checks for `<` instead of `<=` in an assert statement, causing the "last epoch number of samples exceeded max value" error message to be falsely displayed. **Steps/Code to reproduce bug** 1. Prepare a dataset and configure the GPT training. The size of the model is not important. 2. Start the training process. 3. During the data loading phase, the issue arises. This issue does not occur on all datasets. It is difficult to specify which datasets it occurs on. **Expected behavior** If the training process excludes the dataset where the issue occurs, it proceeds normally. **Environment overview (please complete the following information)** - Environment location: Bare-metal with slurm and enroot - Method of NeMo install: `docker pull nvcr.io/ea-bignlp/bignlp-training:23.03-py3` - If method of install is [Docker], provide `docker pull` & `docker run` commands used **Additional context** It appears that https://github.com/NVIDIA/NeMo/blob/65db9359bcb1cee96ffe13f36325f66bb8f17fd5/nemo/collections/nlp/data/language_modeling/megatron/gpt_dataset.py#L588-L590 is causing the issue. It should work properly if `<=` is used instead.
{ "login": "ericharper", "id": 11999610, "node_id": "MDQ6VXNlcjExOTk5NjEw", "avatar_url": "https://avatars.githubusercontent.com/u/11999610?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ericharper", "html_url": "https://github.com/ericharper", "followers_url": "https://api.github.com/users/ericharper/followers", "following_url": "https://api.github.com/users/ericharper/following{/other_user}", "gists_url": "https://api.github.com/users/ericharper/gists{/gist_id}", "starred_url": "https://api.github.com/users/ericharper/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ericharper/subscriptions", "organizations_url": "https://api.github.com/users/ericharper/orgs", "repos_url": "https://api.github.com/users/ericharper/repos", "events_url": "https://api.github.com/users/ericharper/events{/privacy}", "received_events_url": "https://api.github.com/users/ericharper/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6513/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6513/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6512
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6512/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6512/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6512/events
https://github.com/NVIDIA/NeMo/pull/6512
1,687,711,625
PR_kwDOC_bI7s5PV6fZ
6,512
Fix custom `forward_torch_softmax`
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-28T00:23:27
2023-04-28T15:55:40
2023-04-28T15:55:39
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6512", "html_url": "https://github.com/NVIDIA/NeMo/pull/6512", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6512.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6512.patch", "merged_at": "2023-04-28T15:55:39" }
# What does this PR do ? forward_torch_softmax gives error difference in apex only when mask is set. default to normal behavior when mask is None **Collection**: NLP # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6512/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6512/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6511
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6511/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6511/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6511/events
https://github.com/NVIDIA/NeMo/pull/6511
1,687,658,548
PR_kwDOC_bI7s5PVvNx
6,511
[TTS] Fix FastPitch energy code
{ "login": "rlangman", "id": 9942053, "node_id": "MDQ6VXNlcjk5NDIwNTM=", "avatar_url": "https://avatars.githubusercontent.com/u/9942053?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rlangman", "html_url": "https://github.com/rlangman", "followers_url": "https://api.github.com/users/rlangman/followers", "following_url": "https://api.github.com/users/rlangman/following{/other_user}", "gists_url": "https://api.github.com/users/rlangman/gists{/gist_id}", "starred_url": "https://api.github.com/users/rlangman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rlangman/subscriptions", "organizations_url": "https://api.github.com/users/rlangman/orgs", "repos_url": "https://api.github.com/users/rlangman/repos", "events_url": "https://api.github.com/users/rlangman/events{/privacy}", "received_events_url": "https://api.github.com/users/rlangman/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4418253970, "node_id": "LA_kwDOC_bI7s8AAAABB1k0kg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/TTS", "name": "TTS", "color": "49AF28", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-27T22:59:54
2023-04-28T16:40:18
2023-04-28T16:40:17
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6511", "html_url": "https://github.com/NVIDIA/NeMo/pull/6511", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6511.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6511.patch", "merged_at": "2023-04-28T16:40:17" }
# What does this PR do ? Update the energy prediction logic in FastPitch to match the new conditioning logic, similar to pitch. Current code throws a syntax error because `prosody_input `is no longer defined. **Collection**: [TTS] # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation
{ "login": "rlangman", "id": 9942053, "node_id": "MDQ6VXNlcjk5NDIwNTM=", "avatar_url": "https://avatars.githubusercontent.com/u/9942053?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rlangman", "html_url": "https://github.com/rlangman", "followers_url": "https://api.github.com/users/rlangman/followers", "following_url": "https://api.github.com/users/rlangman/following{/other_user}", "gists_url": "https://api.github.com/users/rlangman/gists{/gist_id}", "starred_url": "https://api.github.com/users/rlangman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rlangman/subscriptions", "organizations_url": "https://api.github.com/users/rlangman/orgs", "repos_url": "https://api.github.com/users/rlangman/repos", "events_url": "https://api.github.com/users/rlangman/events{/privacy}", "received_events_url": "https://api.github.com/users/rlangman/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6511/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6511/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6510
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6510/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6510/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6510/events
https://github.com/NVIDIA/NeMo/pull/6510
1,687,544,702
PR_kwDOC_bI7s5PVWwG
6,510
Support dynamic length batches with GPT SFT
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-27T21:00:12
2023-05-02T20:57:39
2023-05-02T20:57:38
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6510", "html_url": "https://github.com/NVIDIA/NeMo/pull/6510", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6510.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6510.patch", "merged_at": "2023-05-02T20:57:38" }
# What does this PR do ? Add support for using dynamic length batches for GPT SFT Significantly improves perf ~2 it/s to ~4 it/s on a local Quadro RTX 6000 GPUs with the same test as on CI **Collection**: NLP # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "MaximumEntropy", "id": 9114321, "node_id": "MDQ6VXNlcjkxMTQzMjE=", "avatar_url": "https://avatars.githubusercontent.com/u/9114321?v=4", "gravatar_id": "", "url": "https://api.github.com/users/MaximumEntropy", "html_url": "https://github.com/MaximumEntropy", "followers_url": "https://api.github.com/users/MaximumEntropy/followers", "following_url": "https://api.github.com/users/MaximumEntropy/following{/other_user}", "gists_url": "https://api.github.com/users/MaximumEntropy/gists{/gist_id}", "starred_url": "https://api.github.com/users/MaximumEntropy/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/MaximumEntropy/subscriptions", "organizations_url": "https://api.github.com/users/MaximumEntropy/orgs", "repos_url": "https://api.github.com/users/MaximumEntropy/repos", "events_url": "https://api.github.com/users/MaximumEntropy/events{/privacy}", "received_events_url": "https://api.github.com/users/MaximumEntropy/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6510/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6510/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6509
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6509/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6509/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6509/events
https://github.com/NVIDIA/NeMo/pull/6509
1,687,536,949
PR_kwDOC_bI7s5PVVIA
6,509
[TTS] Add script for mapping speaker names to indices
{ "login": "rlangman", "id": 9942053, "node_id": "MDQ6VXNlcjk5NDIwNTM=", "avatar_url": "https://avatars.githubusercontent.com/u/9942053?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rlangman", "html_url": "https://github.com/rlangman", "followers_url": "https://api.github.com/users/rlangman/followers", "following_url": "https://api.github.com/users/rlangman/following{/other_user}", "gists_url": "https://api.github.com/users/rlangman/gists{/gist_id}", "starred_url": "https://api.github.com/users/rlangman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rlangman/subscriptions", "organizations_url": "https://api.github.com/users/rlangman/orgs", "repos_url": "https://api.github.com/users/rlangman/repos", "events_url": "https://api.github.com/users/rlangman/events{/privacy}", "received_events_url": "https://api.github.com/users/rlangman/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
null
[]
null
null
2023-04-27T20:54:50
2023-05-05T15:32:28
2023-05-05T15:32:27
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6509", "html_url": "https://github.com/NVIDIA/NeMo/pull/6509", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6509.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6509.patch", "merged_at": "2023-05-05T15:32:27" }
# What does this PR do ? The existing TTS workflow requires the user to provide speaker as an integer index in the training manifest. This is awkward because 1. User can provide raw ID from datasets like LibriTTS as an integer, but then we end up creating 10,000+ element speaker array for only hundreds of speakers. 2. User can manually create a map from speaker ID string to sequential integer index and then overwrite their training manifest. 3. Training with multiple manifests is awkward because you need to rewrite the speaker field for all manifests. So the idea is for the new data loading logic, user will provide speaker as a string name/ID in the manifest and then provide a separate JSON file which maps the speaker IDs to integer IDs. The below script is an example of how to create that map. **Collection**: [TTS] # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation
{ "login": "rlangman", "id": 9942053, "node_id": "MDQ6VXNlcjk5NDIwNTM=", "avatar_url": "https://avatars.githubusercontent.com/u/9942053?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rlangman", "html_url": "https://github.com/rlangman", "followers_url": "https://api.github.com/users/rlangman/followers", "following_url": "https://api.github.com/users/rlangman/following{/other_user}", "gists_url": "https://api.github.com/users/rlangman/gists{/gist_id}", "starred_url": "https://api.github.com/users/rlangman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rlangman/subscriptions", "organizations_url": "https://api.github.com/users/rlangman/orgs", "repos_url": "https://api.github.com/users/rlangman/repos", "events_url": "https://api.github.com/users/rlangman/events{/privacy}", "received_events_url": "https://api.github.com/users/rlangman/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6509/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6509/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6508
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6508/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6508/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6508/events
https://github.com/NVIDIA/NeMo/pull/6508
1,687,502,650
PR_kwDOC_bI7s5PVNv5
6,508
[TTS] Add script for computing feature stats
{ "login": "rlangman", "id": 9942053, "node_id": "MDQ6VXNlcjk5NDIwNTM=", "avatar_url": "https://avatars.githubusercontent.com/u/9942053?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rlangman", "html_url": "https://github.com/rlangman", "followers_url": "https://api.github.com/users/rlangman/followers", "following_url": "https://api.github.com/users/rlangman/following{/other_user}", "gists_url": "https://api.github.com/users/rlangman/gists{/gist_id}", "starred_url": "https://api.github.com/users/rlangman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rlangman/subscriptions", "organizations_url": "https://api.github.com/users/rlangman/orgs", "repos_url": "https://api.github.com/users/rlangman/repos", "events_url": "https://api.github.com/users/rlangman/events{/privacy}", "received_events_url": "https://api.github.com/users/rlangman/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
null
[]
null
null
2023-04-27T20:26:36
2023-05-02T16:10:05
2023-05-02T16:10:03
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6508", "html_url": "https://github.com/NVIDIA/NeMo/pull/6508", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6508.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6508.patch", "merged_at": "2023-05-02T16:10:03" }
# What does this PR do ? This script is similar to `compute_speaker_stats.py` but uses the new experimental featurizer class for saving and loading the features. We can consider deprecating `compute_speaker_stats.py` in the future if we end up deprecating existing TTS data loader and `extract_sup_data.py`. **Collection**: [TTS] # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation
{ "login": "rlangman", "id": 9942053, "node_id": "MDQ6VXNlcjk5NDIwNTM=", "avatar_url": "https://avatars.githubusercontent.com/u/9942053?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rlangman", "html_url": "https://github.com/rlangman", "followers_url": "https://api.github.com/users/rlangman/followers", "following_url": "https://api.github.com/users/rlangman/following{/other_user}", "gists_url": "https://api.github.com/users/rlangman/gists{/gist_id}", "starred_url": "https://api.github.com/users/rlangman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rlangman/subscriptions", "organizations_url": "https://api.github.com/users/rlangman/orgs", "repos_url": "https://api.github.com/users/rlangman/repos", "events_url": "https://api.github.com/users/rlangman/events{/privacy}", "received_events_url": "https://api.github.com/users/rlangman/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6508/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6508/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6507
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6507/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6507/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6507/events
https://github.com/NVIDIA/NeMo/pull/6507
1,687,369,244
PR_kwDOC_bI7s5PUxDv
6,507
[TTS] Create initial TTS dataset feature processors
{ "login": "rlangman", "id": 9942053, "node_id": "MDQ6VXNlcjk5NDIwNTM=", "avatar_url": "https://avatars.githubusercontent.com/u/9942053?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rlangman", "html_url": "https://github.com/rlangman", "followers_url": "https://api.github.com/users/rlangman/followers", "following_url": "https://api.github.com/users/rlangman/following{/other_user}", "gists_url": "https://api.github.com/users/rlangman/gists{/gist_id}", "starred_url": "https://api.github.com/users/rlangman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rlangman/subscriptions", "organizations_url": "https://api.github.com/users/rlangman/orgs", "repos_url": "https://api.github.com/users/rlangman/repos", "events_url": "https://api.github.com/users/rlangman/events{/privacy}", "received_events_url": "https://api.github.com/users/rlangman/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4418253970, "node_id": "LA_kwDOC_bI7s8AAAABB1k0kg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/TTS", "name": "TTS", "color": "49AF28", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-27T18:33:52
2023-05-03T21:23:50
2023-05-03T21:23:49
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6507", "html_url": "https://github.com/NVIDIA/NeMo/pull/6507", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6507.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6507.patch", "merged_at": "2023-05-03T21:23:49" }
# What does this PR do ? Add an interface and initial implementations to process features at training time, as part of TTS data loading refactoring. The intention is for the data loader to load and merge feature dictionaries (produced by tts.parts.preprocessing.feature.py) and to use these processors to apply on necessary on the fly calculations, such as feature normalization. I can provide a diff for the data loader itself if it helps provide context. Otherwise I will post PR for the data loader after this one, as it depends on this change. **Collection**: [TTS] # Changelog - Define interface to processing dataset features - Provide implementation for feature scaling, log compression, and mean-variance normalization. # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [x] Did you write any new necessary tests? - [x] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation
{ "login": "rlangman", "id": 9942053, "node_id": "MDQ6VXNlcjk5NDIwNTM=", "avatar_url": "https://avatars.githubusercontent.com/u/9942053?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rlangman", "html_url": "https://github.com/rlangman", "followers_url": "https://api.github.com/users/rlangman/followers", "following_url": "https://api.github.com/users/rlangman/following{/other_user}", "gists_url": "https://api.github.com/users/rlangman/gists{/gist_id}", "starred_url": "https://api.github.com/users/rlangman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rlangman/subscriptions", "organizations_url": "https://api.github.com/users/rlangman/orgs", "repos_url": "https://api.github.com/users/rlangman/repos", "events_url": "https://api.github.com/users/rlangman/events{/privacy}", "received_events_url": "https://api.github.com/users/rlangman/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6507/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6507/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6506
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6506/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6506/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6506/events
https://github.com/NVIDIA/NeMo/issues/6506
1,687,076,913
I_kwDOC_bI7s5kjsAx
6,506
hydra package while running the G2P in 00_NeMo_Primer is not loading, please allow the access for testings.
{ "login": "Umbaji001", "id": 125580751, "node_id": "U_kgDOB3w1zw", "avatar_url": "https://avatars.githubusercontent.com/u/125580751?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Umbaji001", "html_url": "https://github.com/Umbaji001", "followers_url": "https://api.github.com/users/Umbaji001/followers", "following_url": "https://api.github.com/users/Umbaji001/following{/other_user}", "gists_url": "https://api.github.com/users/Umbaji001/gists{/gist_id}", "starred_url": "https://api.github.com/users/Umbaji001/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Umbaji001/subscriptions", "organizations_url": "https://api.github.com/users/Umbaji001/orgs", "repos_url": "https://api.github.com/users/Umbaji001/repos", "events_url": "https://api.github.com/users/Umbaji001/events{/privacy}", "received_events_url": "https://api.github.com/users/Umbaji001/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null } ]
closed
false
{ "login": "okuchaiev", "id": 22035961, "node_id": "MDQ6VXNlcjIyMDM1OTYx", "avatar_url": "https://avatars.githubusercontent.com/u/22035961?v=4", "gravatar_id": "", "url": "https://api.github.com/users/okuchaiev", "html_url": "https://github.com/okuchaiev", "followers_url": "https://api.github.com/users/okuchaiev/followers", "following_url": "https://api.github.com/users/okuchaiev/following{/other_user}", "gists_url": "https://api.github.com/users/okuchaiev/gists{/gist_id}", "starred_url": "https://api.github.com/users/okuchaiev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/okuchaiev/subscriptions", "organizations_url": "https://api.github.com/users/okuchaiev/orgs", "repos_url": "https://api.github.com/users/okuchaiev/repos", "events_url": "https://api.github.com/users/okuchaiev/events{/privacy}", "received_events_url": "https://api.github.com/users/okuchaiev/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "login": "okuchaiev", "id": 22035961, "node_id": "MDQ6VXNlcjIyMDM1OTYx", "avatar_url": "https://avatars.githubusercontent.com/u/22035961?v=4", "gravatar_id": "", "url": "https://api.github.com/users/okuchaiev", "html_url": "https://github.com/okuchaiev", "followers_url": "https://api.github.com/users/okuchaiev/followers", "following_url": "https://api.github.com/users/okuchaiev/following{/other_user}", "gists_url": "https://api.github.com/users/okuchaiev/gists{/gist_id}", "starred_url": "https://api.github.com/users/okuchaiev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/okuchaiev/subscriptions", "organizations_url": "https://api.github.com/users/okuchaiev/orgs", "repos_url": "https://api.github.com/users/okuchaiev/repos", "events_url": "https://api.github.com/users/okuchaiev/events{/privacy}", "received_events_url": "https://api.github.com/users/okuchaiev/received_events", "type": "User", "user_view_type": "public", "site_admin": false } ]
null
null
2023-04-27T15:20:50
2023-06-04T02:11:54
2023-06-04T02:11:54
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. Provide a code snippet on how new APIs/changes would be used by others. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here.
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6506/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6506/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6505
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6505/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6505/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6505/events
https://github.com/NVIDIA/NeMo/pull/6505
1,686,064,067
PR_kwDOC_bI7s5PQVqo
6,505
Fix normalization of impulse response in ImpulsePerturbation
{ "login": "anteju", "id": 108555623, "node_id": "U_kgDOBnhtZw", "avatar_url": "https://avatars.githubusercontent.com/u/108555623?v=4", "gravatar_id": "", "url": "https://api.github.com/users/anteju", "html_url": "https://github.com/anteju", "followers_url": "https://api.github.com/users/anteju/followers", "following_url": "https://api.github.com/users/anteju/following{/other_user}", "gists_url": "https://api.github.com/users/anteju/gists{/gist_id}", "starred_url": "https://api.github.com/users/anteju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/anteju/subscriptions", "organizations_url": "https://api.github.com/users/anteju/orgs", "repos_url": "https://api.github.com/users/anteju/repos", "events_url": "https://api.github.com/users/anteju/events{/privacy}", "received_events_url": "https://api.github.com/users/anteju/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-27T04:09:40
2023-04-28T21:34:00
2023-04-28T21:33:59
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6505", "html_url": "https://github.com/NVIDIA/NeMo/pull/6505", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6505.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6505.patch", "merged_at": "2023-04-28T21:33:59" }
# What does this PR do? Current impulse response (IR) in `ImpulsePerturbation` is not correct. This PR fixes the issue. Check below for 1. Audio examples 2. IR examples 3. Scripts to reproduce the issue **Collection**: ASR # Changelog - Fixed normalization to correctly normalize mean and max - Added a new flag to make IR normalization optional - Default to not using impulse normalization 1. This doesn't negatively impact the current behavior, since currently IR is incorrectly normalized 2. Normalization is in general not necessary for IRs, especially since output data is normalized to max amplitude 1 3. If necessary, normalization can be turned on to remove the mean from the IR. - fixed convolution and impulse shifting - `shift_impulse=False` used `same` convolution, which centered the output with respect to `full`. This resulted in an output which was not aligned with the RIR. This is now done by computing the full convolution and trimming the output. This is a bugfix. - `shift_impulse=True` used trimmed RIR. This is now done by convolving with the full RIR and shifting the output. This is a minor change. # Detailed description Current impulse response (IR) in `ImpulsePerturbation` is not correct. More specifically, it introduces a DC offset in the normalized IR, resulting in an incorrect signal. It's obvious from listening to the output audio that it doesn't correspond to a realistic IR. ## Example scripts * [rir_normalization_issue_example.zip](https://github.com/NVIDIA/NeMo/files/11339425/rir_normalization_issue_example.zip) To run, unpack the archive and run ```python python example.py ``` ## RIR example This figure shows an original IR, the normalized IR with the current normalization and the normalized IR with the new normalization (in this PR). The current normalization introduces a large DC offset. The new normalization makes the RIR zero mean, and scales the max amplitude to 1. ![IRs](https://user-images.githubusercontent.com/108555623/234754895-c8e17fc0-30ea-462d-82c4-6e3c468a25ee.png) ## Audio examples ### Output audio with the current normalization * [output_cur.wav.zip](https://github.com/NVIDIA/NeMo/files/11339429/output_cur.wav.zip) ![output_cur](https://user-images.githubusercontent.com/108555623/234756068-fdaf098d-20f2-4fb0-b6d9-d9814c1c7f9c.png) ### Output audio with the new normalization * [output_new.wav.zip](https://github.com/NVIDIA/NeMo/files/11339432/output_new.wav.zip) ![output_new](https://user-images.githubusercontent.com/108555623/234756156-d9fb5149-215b-47f6-86de-2dddf7ec28cd.png) ## Test with different setups Scripts [rir_normalization_issue_example_with_shift.zip](https://github.com/NVIDIA/NeMo/files/11346247/rir_normalization_issue_example_with_shift.zip) In this example, the RIR introduces a 0.5 second delay. This was artificially constructed to test the setup with `shift_impulse`. We expect the following - `shift_impulse=False`: The output should be delayed by 0.5s due to delay in the RIR - `shift_impulse=True`: The output should not include the 0.5s delay ### Input signal ![test_class_input](https://user-images.githubusercontent.com/108555623/234936926-5aae837b-f614-43cc-aabf-7347c4b66c79.png) ### Output signals | | `shift_impulse=False` | `shift_impulse=True` | | ---------------------------- | ---------------------- | --------------------- | | `normalize_impulse=False` | ![test_class_output_normalize_False_shift_False](https://user-images.githubusercontent.com/108555623/234936056-8a9469e2-dab4-476b-8408-727dc76325fc.png) | ![test_class_output_normalize_False_shift_True](https://user-images.githubusercontent.com/108555623/234936172-66257b7f-63d9-439d-b0aa-346412d00240.png) | | `normalize_impulse=True` | ![test_class_output_normalize_True_shift_False](https://user-images.githubusercontent.com/108555623/234936227-ba935b3d-13cd-4032-8fbc-ab79b2049da0.png) | ![test_class_output_normalize_True_shift_True](https://user-images.githubusercontent.com/108555623/234936255-8073bead-9bee-4267-a9b0-8bd3546baba6.png) | # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [x] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to #6429
{ "login": "anteju", "id": 108555623, "node_id": "U_kgDOBnhtZw", "avatar_url": "https://avatars.githubusercontent.com/u/108555623?v=4", "gravatar_id": "", "url": "https://api.github.com/users/anteju", "html_url": "https://github.com/anteju", "followers_url": "https://api.github.com/users/anteju/followers", "following_url": "https://api.github.com/users/anteju/following{/other_user}", "gists_url": "https://api.github.com/users/anteju/gists{/gist_id}", "starred_url": "https://api.github.com/users/anteju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/anteju/subscriptions", "organizations_url": "https://api.github.com/users/anteju/orgs", "repos_url": "https://api.github.com/users/anteju/repos", "events_url": "https://api.github.com/users/anteju/events{/privacy}", "received_events_url": "https://api.github.com/users/anteju/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6505/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6505/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6504
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6504/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6504/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6504/events
https://github.com/NVIDIA/NeMo/pull/6504
1,685,700,881
PR_kwDOC_bI7s5PPHwS
6,504
fix broken links r1.18.0
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4418253970, "node_id": "LA_kwDOC_bI7s8AAAABB1k0kg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/TTS", "name": "TTS", "color": "49AF28", "default": false, "description": "" }, { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
null
2023-04-26T20:47:11
2023-04-26T20:52:50
2023-04-26T20:52:49
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6504", "html_url": "https://github.com/NVIDIA/NeMo/pull/6504", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6504.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6504.patch", "merged_at": "2023-04-26T20:52:49" }
# What does this PR do ? Add a one line overview of what this PR aims to accomplish. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ X] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6504/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6504/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6503
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6503/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6503/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6503/events
https://github.com/NVIDIA/NeMo/issues/6503
1,685,216,847
I_kwDOC_bI7s5kcl5P
6,503
Broken Notebook
{ "login": "muxitox", "id": 26285625, "node_id": "MDQ6VXNlcjI2Mjg1NjI1", "avatar_url": "https://avatars.githubusercontent.com/u/26285625?v=4", "gravatar_id": "", "url": "https://api.github.com/users/muxitox", "html_url": "https://github.com/muxitox", "followers_url": "https://api.github.com/users/muxitox/followers", "following_url": "https://api.github.com/users/muxitox/following{/other_user}", "gists_url": "https://api.github.com/users/muxitox/gists{/gist_id}", "starred_url": "https://api.github.com/users/muxitox/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/muxitox/subscriptions", "organizations_url": "https://api.github.com/users/muxitox/orgs", "repos_url": "https://api.github.com/users/muxitox/repos", "events_url": "https://api.github.com/users/muxitox/events{/privacy}", "received_events_url": "https://api.github.com/users/muxitox/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1485815557, "node_id": "MDU6TGFiZWwxNDg1ODE1NTU3", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/bug", "name": "bug", "color": "d73a4a", "default": true, "description": "Something isn't working" } ]
closed
false
null
[]
null
null
2023-04-26T15:06:11
2023-05-04T16:21:26
2023-05-04T16:21:12
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Describe the bug** The notebook in https://github.com/NVIDIA/NeMo/blob/main/tutorials/asr/Offline_ASR.ipynb cannot be visualized as it says "The Notebook Does Not Appear to Be Valid JSON" **Steps/Code to reproduce bug** Open https://github.com/NVIDIA/NeMo/blob/main/tutorials/asr/Offline_ASR.ipynb
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6503/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6503/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6502
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6502/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6502/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6502/events
https://github.com/NVIDIA/NeMo/pull/6502
1,684,978,569
PR_kwDOC_bI7s5PMr_R
6,502
Fix error appearing when using tar datasets
{ "login": "Jorjeous", "id": 37293288, "node_id": "MDQ6VXNlcjM3MjkzMjg4", "avatar_url": "https://avatars.githubusercontent.com/u/37293288?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Jorjeous", "html_url": "https://github.com/Jorjeous", "followers_url": "https://api.github.com/users/Jorjeous/followers", "following_url": "https://api.github.com/users/Jorjeous/following{/other_user}", "gists_url": "https://api.github.com/users/Jorjeous/gists{/gist_id}", "starred_url": "https://api.github.com/users/Jorjeous/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Jorjeous/subscriptions", "organizations_url": "https://api.github.com/users/Jorjeous/orgs", "repos_url": "https://api.github.com/users/Jorjeous/repos", "events_url": "https://api.github.com/users/Jorjeous/events{/privacy}", "received_events_url": "https://api.github.com/users/Jorjeous/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-26T12:55:57
2023-04-26T16:33:02
2023-04-26T16:33:01
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6502", "html_url": "https://github.com/NVIDIA/NeMo/pull/6502", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6502.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6502.patch", "merged_at": "2023-04-26T16:33:01" }
When using tar dataset this error appears due to undefined reference: datastore_path_to_webdataset_url(p) if is_datastore_path(p) and is_tarred_path(p) else p NameError: name 'is_tarred_path' is not defined # What does this PR do ? fixes error mentioned above Add a one line overview of what this PR aims to accomplish. **Collection**: [ASR] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "Jorjeous", "id": 37293288, "node_id": "MDQ6VXNlcjM3MjkzMjg4", "avatar_url": "https://avatars.githubusercontent.com/u/37293288?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Jorjeous", "html_url": "https://github.com/Jorjeous", "followers_url": "https://api.github.com/users/Jorjeous/followers", "following_url": "https://api.github.com/users/Jorjeous/following{/other_user}", "gists_url": "https://api.github.com/users/Jorjeous/gists{/gist_id}", "starred_url": "https://api.github.com/users/Jorjeous/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Jorjeous/subscriptions", "organizations_url": "https://api.github.com/users/Jorjeous/orgs", "repos_url": "https://api.github.com/users/Jorjeous/repos", "events_url": "https://api.github.com/users/Jorjeous/events{/privacy}", "received_events_url": "https://api.github.com/users/Jorjeous/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6502/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6502/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6501
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6501/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6501/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6501/events
https://github.com/NVIDIA/NeMo/pull/6501
1,684,163,004
PR_kwDOC_bI7s5PJ91X
6,501
fix broken links r1.18.0
{ "login": "ekmb", "id": 10428420, "node_id": "MDQ6VXNlcjEwNDI4NDIw", "avatar_url": "https://avatars.githubusercontent.com/u/10428420?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ekmb", "html_url": "https://github.com/ekmb", "followers_url": "https://api.github.com/users/ekmb/followers", "following_url": "https://api.github.com/users/ekmb/following{/other_user}", "gists_url": "https://api.github.com/users/ekmb/gists{/gist_id}", "starred_url": "https://api.github.com/users/ekmb/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ekmb/subscriptions", "organizations_url": "https://api.github.com/users/ekmb/orgs", "repos_url": "https://api.github.com/users/ekmb/repos", "events_url": "https://api.github.com/users/ekmb/events{/privacy}", "received_events_url": "https://api.github.com/users/ekmb/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4418253970, "node_id": "LA_kwDOC_bI7s8AAAABB1k0kg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/TTS", "name": "TTS", "color": "49AF28", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-26T02:33:48
2023-04-26T20:46:47
2023-04-26T20:46:46
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6501", "html_url": "https://github.com/NVIDIA/NeMo/pull/6501", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6501.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6501.patch", "merged_at": "2023-04-26T20:46:46" }
# What does this PR do ? Add a one line overview of what this PR aims to accomplish. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ X] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "ekmb", "id": 10428420, "node_id": "MDQ6VXNlcjEwNDI4NDIw", "avatar_url": "https://avatars.githubusercontent.com/u/10428420?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ekmb", "html_url": "https://github.com/ekmb", "followers_url": "https://api.github.com/users/ekmb/followers", "following_url": "https://api.github.com/users/ekmb/following{/other_user}", "gists_url": "https://api.github.com/users/ekmb/gists{/gist_id}", "starred_url": "https://api.github.com/users/ekmb/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ekmb/subscriptions", "organizations_url": "https://api.github.com/users/ekmb/orgs", "repos_url": "https://api.github.com/users/ekmb/repos", "events_url": "https://api.github.com/users/ekmb/events{/privacy}", "received_events_url": "https://api.github.com/users/ekmb/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6501/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6501/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6500
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6500/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6500/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6500/events
https://github.com/NVIDIA/NeMo/pull/6500
1,684,162,354
PR_kwDOC_bI7s5PJ9tr
6,500
[BugFix] Force _get_batch_preds() to keep logits in decoder timestamp…
{ "login": "tango4j", "id": 13211483, "node_id": "MDQ6VXNlcjEzMjExNDgz", "avatar_url": "https://avatars.githubusercontent.com/u/13211483?v=4", "gravatar_id": "", "url": "https://api.github.com/users/tango4j", "html_url": "https://github.com/tango4j", "followers_url": "https://api.github.com/users/tango4j/followers", "following_url": "https://api.github.com/users/tango4j/following{/other_user}", "gists_url": "https://api.github.com/users/tango4j/gists{/gist_id}", "starred_url": "https://api.github.com/users/tango4j/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/tango4j/subscriptions", "organizations_url": "https://api.github.com/users/tango4j/orgs", "repos_url": "https://api.github.com/users/tango4j/repos", "events_url": "https://api.github.com/users/tango4j/events{/privacy}", "received_events_url": "https://api.github.com/users/tango4j/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-26T02:32:53
2023-04-28T16:39:11
2023-04-28T16:39:10
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6500", "html_url": "https://github.com/NVIDIA/NeMo/pull/6500", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6500.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6500.patch", "merged_at": "2023-04-28T16:39:10" }
…stamps generators # What does this PR do ? The argument of `_get_batch_preds` in `FrameBatchASRLogits` class has not been updated when `FrameBatchASR` is updated. Now, this PR force `_get_batch_preds()` to keep logits in decoder timestamps generators. This is for r1.18.0 of PR #6499. **Collection**: [Note which collection this PR will affect] ASR # Changelog - Added `force_keep_logits` for `_get_batch_preds` function in class `FrameBatchASRLogits` in `decoder_timestamp_utils.py` - Changed class name `FrameBatchASR_Logits` to `FrameBatchASRLogits` # Usage * You can potentially add a usage example below ```python python offline_diar_with_asr_infer.py \ diarizer.manifest_filepath=<path to manifest file> \ diarizer.out_dir='demo_asr_output' \ diarizer.speaker_embeddings.model_path=<pretrained modelname or path to .nemo> \ diarizer.asr.model_path=<pretrained modelname or path to .nemo> \ diarizer.asr.parameters.asr_based_vad=True \ diarizer.speaker_embeddings.parameters.save_embeddings=False ``` # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [x] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? ASR contributors # Additional Information This is for main, and there will be another PR for r1.18
{ "login": "tango4j", "id": 13211483, "node_id": "MDQ6VXNlcjEzMjExNDgz", "avatar_url": "https://avatars.githubusercontent.com/u/13211483?v=4", "gravatar_id": "", "url": "https://api.github.com/users/tango4j", "html_url": "https://github.com/tango4j", "followers_url": "https://api.github.com/users/tango4j/followers", "following_url": "https://api.github.com/users/tango4j/following{/other_user}", "gists_url": "https://api.github.com/users/tango4j/gists{/gist_id}", "starred_url": "https://api.github.com/users/tango4j/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/tango4j/subscriptions", "organizations_url": "https://api.github.com/users/tango4j/orgs", "repos_url": "https://api.github.com/users/tango4j/repos", "events_url": "https://api.github.com/users/tango4j/events{/privacy}", "received_events_url": "https://api.github.com/users/tango4j/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6500/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6500/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6499
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6499/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6499/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6499/events
https://github.com/NVIDIA/NeMo/pull/6499
1,684,153,740
PR_kwDOC_bI7s5PJ7-0
6,499
[BugFix] Force _get_batch_preds() to keep logits in decoder timestamps generator
{ "login": "tango4j", "id": 13211483, "node_id": "MDQ6VXNlcjEzMjExNDgz", "avatar_url": "https://avatars.githubusercontent.com/u/13211483?v=4", "gravatar_id": "", "url": "https://api.github.com/users/tango4j", "html_url": "https://github.com/tango4j", "followers_url": "https://api.github.com/users/tango4j/followers", "following_url": "https://api.github.com/users/tango4j/following{/other_user}", "gists_url": "https://api.github.com/users/tango4j/gists{/gist_id}", "starred_url": "https://api.github.com/users/tango4j/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/tango4j/subscriptions", "organizations_url": "https://api.github.com/users/tango4j/orgs", "repos_url": "https://api.github.com/users/tango4j/repos", "events_url": "https://api.github.com/users/tango4j/events{/privacy}", "received_events_url": "https://api.github.com/users/tango4j/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-26T02:22:33
2023-04-28T16:39:25
2023-04-28T16:39:24
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6499", "html_url": "https://github.com/NVIDIA/NeMo/pull/6499", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6499.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6499.patch", "merged_at": "2023-04-28T16:39:24" }
# What does this PR do ? The argument of `_get_batch_preds` in `FrameBatchASRLogits` class has not been updated when `FrameBatchASR` is updated. Now, this PR force `_get_batch_preds()` to keep logits in decoder timestamps generators. **Collection**: [Note which collection this PR will affect] ASR # Changelog - Added `force_keep_logits` for `_get_batch_preds` function in class `FrameBatchASRLogits` in `decoder_timestamp_utils.py` - Changed class name `FrameBatchASR_Logits` to `FrameBatchASRLogits` # Usage * You can potentially add a usage example below ```python python offline_diar_with_asr_infer.py \ diarizer.manifest_filepath=<path to manifest file> \ diarizer.out_dir='demo_asr_output' \ diarizer.speaker_embeddings.model_path=<pretrained modelname or path to .nemo> \ diarizer.asr.model_path=<pretrained modelname or path to .nemo> \ diarizer.asr.parameters.asr_based_vad=True \ diarizer.speaker_embeddings.parameters.save_embeddings=False ``` # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [x] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? ASR contributors # Additional Information This is for main, and there will be another PR for r1.18
{ "login": "tango4j", "id": 13211483, "node_id": "MDQ6VXNlcjEzMjExNDgz", "avatar_url": "https://avatars.githubusercontent.com/u/13211483?v=4", "gravatar_id": "", "url": "https://api.github.com/users/tango4j", "html_url": "https://github.com/tango4j", "followers_url": "https://api.github.com/users/tango4j/followers", "following_url": "https://api.github.com/users/tango4j/following{/other_user}", "gists_url": "https://api.github.com/users/tango4j/gists{/gist_id}", "starred_url": "https://api.github.com/users/tango4j/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/tango4j/subscriptions", "organizations_url": "https://api.github.com/users/tango4j/orgs", "repos_url": "https://api.github.com/users/tango4j/repos", "events_url": "https://api.github.com/users/tango4j/events{/privacy}", "received_events_url": "https://api.github.com/users/tango4j/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6499/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6499/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6498
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6498/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6498/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6498/events
https://github.com/NVIDIA/NeMo/pull/6498
1,684,104,777
PR_kwDOC_bI7s5PJx6Y
6,498
Add interleaved pp support
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-26T01:27:25
2023-04-28T23:30:46
2023-04-28T23:30:43
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6498", "html_url": "https://github.com/NVIDIA/NeMo/pull/6498", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6498.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6498.patch", "merged_at": "2023-04-28T23:30:43" }
# What does this PR do ? Add support for virtual pipeline parallelism conversion of Megatron GPT models **Collection**: [NLP] # Changelog - # Usage ```python python megatron_change_num_partitions.py \ --model_extracted_dir="<Directory of Pytorch Lightning ckpt folders>" \ --target_file="<Name of the target NeMo file>" \ --ckpt_name="<Name of a single Pytorch Lightning ckpt file inside the extracted dir>" \ --tensor_model_parallel_size=<TP SIZE> \ --target_tensor_model_parallel_size=<TARGET TP SIZE> \ --pipeline_model_parallel_size=<PP SIZE> \ --target_pipeline_model_parallel_size=<TARGET PP SIZE> \ --virtual_pipeline_model_parallel_size=<VP SIZE> \ --hparams_file="<Path to HPARAMS.yaml file>" \ --precision=bf16 ``` # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [x] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6498/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6498/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6497
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6497/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6497/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6497/events
https://github.com/NVIDIA/NeMo/issues/6497
1,684,044,233
I_kwDOC_bI7s5kYHnJ
6,497
How to create pickle files, which include out, output_sizes, conv, rnn_0, rnn_1, rnn_2, rnn_3, rnn_4 using the STT De Conformer-Transducer Large for an german audio files smaples?
{ "login": "MohamedMesto", "id": 44340777, "node_id": "MDQ6VXNlcjQ0MzQwNzc3", "avatar_url": "https://avatars.githubusercontent.com/u/44340777?v=4", "gravatar_id": "", "url": "https://api.github.com/users/MohamedMesto", "html_url": "https://github.com/MohamedMesto", "followers_url": "https://api.github.com/users/MohamedMesto/followers", "following_url": "https://api.github.com/users/MohamedMesto/following{/other_user}", "gists_url": "https://api.github.com/users/MohamedMesto/gists{/gist_id}", "starred_url": "https://api.github.com/users/MohamedMesto/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/MohamedMesto/subscriptions", "organizations_url": "https://api.github.com/users/MohamedMesto/orgs", "repos_url": "https://api.github.com/users/MohamedMesto/repos", "events_url": "https://api.github.com/users/MohamedMesto/events{/privacy}", "received_events_url": "https://api.github.com/users/MohamedMesto/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1485815557, "node_id": "MDU6TGFiZWwxNDg1ODE1NTU3", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/bug", "name": "bug", "color": "d73a4a", "default": true, "description": "Something isn't working" }, { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
null
2023-04-26T00:24:51
2023-06-02T02:03:04
2023-06-02T02:03:04
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Describe the bug** How to create pickle files, which include out, output_sizes, conv, rnn_0, rnn_1, rnn_2, rnn_3, rnn_4 layers using the STT De Conformer-Transducer Large for an german audio files samples?
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6497/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6497/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6496
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6496/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6496/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6496/events
https://github.com/NVIDIA/NeMo/pull/6496
1,684,037,879
PR_kwDOC_bI7s5PJjv8
6,496
Add disclaimer about dataset for ASR
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-26T00:19:05
2023-04-26T00:19:26
2023-04-26T00:19:25
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6496", "html_url": "https://github.com/NVIDIA/NeMo/pull/6496", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6496.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6496.patch", "merged_at": "2023-04-26T00:19:25" }
# What does this PR do ? **Collection**: [ASR] # Changelog - Add disclaimer to all ASR tutorials regarding dataset usage. # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [x] Documentation
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6496/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6496/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6495
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6495/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6495/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6495/events
https://github.com/NVIDIA/NeMo/pull/6495
1,684,022,780
PR_kwDOC_bI7s5PJgns
6,495
Fix typos
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4418253970, "node_id": "LA_kwDOC_bI7s8AAAABB1k0kg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/TTS", "name": "TTS", "color": "49AF28", "default": false, "description": "" }, { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null }, { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" }, { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" }, { "id": 4811888028, "node_id": "LA_kwDOC_bI7s8AAAABHs-VnA", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/Speaker%20Tasks", "name": "Speaker Tasks", "color": "871AD4", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-25T23:59:33
2023-04-26T00:03:29
2023-04-26T00:03:27
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6495", "html_url": "https://github.com/NVIDIA/NeMo/pull/6495", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6495.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6495.patch", "merged_at": "2023-04-26T00:03:27" }
# What does this PR do ? **Collection**: [Doc] **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR.
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6495/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6495/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6494
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6494/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6494/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6494/events
https://github.com/NVIDIA/NeMo/pull/6494
1,684,022,161
PR_kwDOC_bI7s5PJgfP
6,494
Fix typos
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4418253970, "node_id": "LA_kwDOC_bI7s8AAAABB1k0kg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/TTS", "name": "TTS", "color": "49AF28", "default": false, "description": "" }, { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" }, { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" }, { "id": 4811888028, "node_id": "LA_kwDOC_bI7s8AAAABHs-VnA", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/Speaker%20Tasks", "name": "Speaker Tasks", "color": "871AD4", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-25T23:58:47
2023-04-25T23:59:04
2023-04-25T23:59:03
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6494", "html_url": "https://github.com/NVIDIA/NeMo/pull/6494", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6494.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6494.patch", "merged_at": "2023-04-25T23:59:03" }
# What does this PR do ? **Collection**: [Doc] **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR.
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6494/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6494/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6493
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6493/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6493/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6493/events
https://github.com/NVIDIA/NeMo/issues/6493
1,683,999,011
I_kwDOC_bI7s5kX8kj
6,493
done
{ "login": "MohamedMesto", "id": 44340777, "node_id": "MDQ6VXNlcjQ0MzQwNzc3", "avatar_url": "https://avatars.githubusercontent.com/u/44340777?v=4", "gravatar_id": "", "url": "https://api.github.com/users/MohamedMesto", "html_url": "https://github.com/MohamedMesto", "followers_url": "https://api.github.com/users/MohamedMesto/followers", "following_url": "https://api.github.com/users/MohamedMesto/following{/other_user}", "gists_url": "https://api.github.com/users/MohamedMesto/gists{/gist_id}", "starred_url": "https://api.github.com/users/MohamedMesto/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/MohamedMesto/subscriptions", "organizations_url": "https://api.github.com/users/MohamedMesto/orgs", "repos_url": "https://api.github.com/users/MohamedMesto/repos", "events_url": "https://api.github.com/users/MohamedMesto/events{/privacy}", "received_events_url": "https://api.github.com/users/MohamedMesto/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
{ "login": "okuchaiev", "id": 22035961, "node_id": "MDQ6VXNlcjIyMDM1OTYx", "avatar_url": "https://avatars.githubusercontent.com/u/22035961?v=4", "gravatar_id": "", "url": "https://api.github.com/users/okuchaiev", "html_url": "https://github.com/okuchaiev", "followers_url": "https://api.github.com/users/okuchaiev/followers", "following_url": "https://api.github.com/users/okuchaiev/following{/other_user}", "gists_url": "https://api.github.com/users/okuchaiev/gists{/gist_id}", "starred_url": "https://api.github.com/users/okuchaiev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/okuchaiev/subscriptions", "organizations_url": "https://api.github.com/users/okuchaiev/orgs", "repos_url": "https://api.github.com/users/okuchaiev/repos", "events_url": "https://api.github.com/users/okuchaiev/events{/privacy}", "received_events_url": "https://api.github.com/users/okuchaiev/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "login": "okuchaiev", "id": 22035961, "node_id": "MDQ6VXNlcjIyMDM1OTYx", "avatar_url": "https://avatars.githubusercontent.com/u/22035961?v=4", "gravatar_id": "", "url": "https://api.github.com/users/okuchaiev", "html_url": "https://github.com/okuchaiev", "followers_url": "https://api.github.com/users/okuchaiev/followers", "following_url": "https://api.github.com/users/okuchaiev/following{/other_user}", "gists_url": "https://api.github.com/users/okuchaiev/gists{/gist_id}", "starred_url": "https://api.github.com/users/okuchaiev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/okuchaiev/subscriptions", "organizations_url": "https://api.github.com/users/okuchaiev/orgs", "repos_url": "https://api.github.com/users/okuchaiev/repos", "events_url": "https://api.github.com/users/okuchaiev/events{/privacy}", "received_events_url": "https://api.github.com/users/okuchaiev/received_events", "type": "User", "user_view_type": "public", "site_admin": false } ]
null
null
2023-04-25T23:21:46
2023-05-05T18:02:43
2023-05-05T18:02:16
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
Done
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6493/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6493/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6492
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6492/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6492/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6492/events
https://github.com/NVIDIA/NeMo/pull/6492
1,683,872,481
PR_kwDOC_bI7s5PJAR_
6,492
A quickstart speech enhancement tutorial
{ "login": "anteju", "id": 108555623, "node_id": "U_kgDOBnhtZw", "avatar_url": "https://avatars.githubusercontent.com/u/108555623?v=4", "gravatar_id": "", "url": "https://api.github.com/users/anteju", "html_url": "https://github.com/anteju", "followers_url": "https://api.github.com/users/anteju/followers", "following_url": "https://api.github.com/users/anteju/following{/other_user}", "gists_url": "https://api.github.com/users/anteju/gists{/gist_id}", "starred_url": "https://api.github.com/users/anteju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/anteju/subscriptions", "organizations_url": "https://api.github.com/users/anteju/orgs", "repos_url": "https://api.github.com/users/anteju/repos", "events_url": "https://api.github.com/users/anteju/events{/privacy}", "received_events_url": "https://api.github.com/users/anteju/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-25T21:08:37
2023-08-02T23:17:54
2023-08-02T23:17:54
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6492", "html_url": "https://github.com/NVIDIA/NeMo/pull/6492", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6492.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6492.patch", "merged_at": "2023-08-02T23:17:54" }
# What does this PR do ? This PR adds a quickstart tutorial for training a simple speech enhancement model with NeMo. **Collection**: ASR, Tutorials # Changelog - added a simple tutorial for speech enhancement - moved examples from `asr` to `audio_tasks` - added an option to save noise in `add_noise.py` - minor fixes in `audio_models` # Usage Check `Speech_Enhancement_with_NeMo.ipynb`. Tested locally and on Google Colab with GPU runtime. # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "anteju", "id": 108555623, "node_id": "U_kgDOBnhtZw", "avatar_url": "https://avatars.githubusercontent.com/u/108555623?v=4", "gravatar_id": "", "url": "https://api.github.com/users/anteju", "html_url": "https://github.com/anteju", "followers_url": "https://api.github.com/users/anteju/followers", "following_url": "https://api.github.com/users/anteju/following{/other_user}", "gists_url": "https://api.github.com/users/anteju/gists{/gist_id}", "starred_url": "https://api.github.com/users/anteju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/anteju/subscriptions", "organizations_url": "https://api.github.com/users/anteju/orgs", "repos_url": "https://api.github.com/users/anteju/repos", "events_url": "https://api.github.com/users/anteju/events{/privacy}", "received_events_url": "https://api.github.com/users/anteju/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6492/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6492/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6491
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6491/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6491/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6491/events
https://github.com/NVIDIA/NeMo/pull/6491
1,683,677,999
PR_kwDOC_bI7s5PIVs-
6,491
Change to spawn mp and persistent_wokers for T5
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-25T18:47:27
2023-05-09T17:13:42
2023-05-09T17:13:33
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6491", "html_url": "https://github.com/NVIDIA/NeMo/pull/6491", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6491.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6491.patch", "merged_at": null }
# What does this PR do ? Fix BigNLP mT5 pre-training mp bug **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6491/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6491/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6490
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6490/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6490/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6490/events
https://github.com/NVIDIA/NeMo/pull/6490
1,683,649,244
PR_kwDOC_bI7s5PIPTC
6,490
Dummy PTL 2.0 PR
{ "login": "athitten", "id": 47577437, "node_id": "MDQ6VXNlcjQ3NTc3NDM3", "avatar_url": "https://avatars.githubusercontent.com/u/47577437?v=4", "gravatar_id": "", "url": "https://api.github.com/users/athitten", "html_url": "https://github.com/athitten", "followers_url": "https://api.github.com/users/athitten/followers", "following_url": "https://api.github.com/users/athitten/following{/other_user}", "gists_url": "https://api.github.com/users/athitten/gists{/gist_id}", "starred_url": "https://api.github.com/users/athitten/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/athitten/subscriptions", "organizations_url": "https://api.github.com/users/athitten/orgs", "repos_url": "https://api.github.com/users/athitten/repos", "events_url": "https://api.github.com/users/athitten/events{/privacy}", "received_events_url": "https://api.github.com/users/athitten/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
null
2023-04-25T18:30:11
2023-06-23T16:53:36
2023-05-17T01:53:43
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
true
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6490", "html_url": "https://github.com/NVIDIA/NeMo/pull/6490", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6490.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6490.patch", "merged_at": null }
# What does this PR do ? Add a one line overview of what this PR aims to accomplish. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6490/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6490/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6489
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6489/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6489/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6489/events
https://github.com/NVIDIA/NeMo/pull/6489
1,683,621,926
PR_kwDOC_bI7s5PIJXg
6,489
Update README to add core installation
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
null
2023-04-25T18:10:08
2023-04-25T18:10:34
2023-04-25T18:10:33
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6489", "html_url": "https://github.com/NVIDIA/NeMo/pull/6489", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6489.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6489.patch", "merged_at": "2023-04-25T18:10:33" }
# What does this PR do ? Update README to add core installation **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "ericharper", "id": 11999610, "node_id": "MDQ6VXNlcjExOTk5NjEw", "avatar_url": "https://avatars.githubusercontent.com/u/11999610?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ericharper", "html_url": "https://github.com/ericharper", "followers_url": "https://api.github.com/users/ericharper/followers", "following_url": "https://api.github.com/users/ericharper/following{/other_user}", "gists_url": "https://api.github.com/users/ericharper/gists{/gist_id}", "starred_url": "https://api.github.com/users/ericharper/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ericharper/subscriptions", "organizations_url": "https://api.github.com/users/ericharper/orgs", "repos_url": "https://api.github.com/users/ericharper/repos", "events_url": "https://api.github.com/users/ericharper/events{/privacy}", "received_events_url": "https://api.github.com/users/ericharper/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6489/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6489/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6488
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6488/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6488/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6488/events
https://github.com/NVIDIA/NeMo/pull/6488
1,683,609,018
PR_kwDOC_bI7s5PIGjl
6,488
Update README to add core installation
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
null
[]
null
null
2023-04-25T18:00:28
2023-04-25T18:09:45
2023-04-25T18:09:43
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6488", "html_url": "https://github.com/NVIDIA/NeMo/pull/6488", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6488.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6488.patch", "merged_at": "2023-04-25T18:09:43" }
# What does this PR do ? Update README to add core installation **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "ericharper", "id": 11999610, "node_id": "MDQ6VXNlcjExOTk5NjEw", "avatar_url": "https://avatars.githubusercontent.com/u/11999610?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ericharper", "html_url": "https://github.com/ericharper", "followers_url": "https://api.github.com/users/ericharper/followers", "following_url": "https://api.github.com/users/ericharper/following{/other_user}", "gists_url": "https://api.github.com/users/ericharper/gists{/gist_id}", "starred_url": "https://api.github.com/users/ericharper/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ericharper/subscriptions", "organizations_url": "https://api.github.com/users/ericharper/orgs", "repos_url": "https://api.github.com/users/ericharper/repos", "events_url": "https://api.github.com/users/ericharper/events{/privacy}", "received_events_url": "https://api.github.com/users/ericharper/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6488/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6488/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6487
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6487/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6487/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6487/events
https://github.com/NVIDIA/NeMo/issues/6487
1,682,805,226
I_kwDOC_bI7s5kTZHq
6,487
WFST for inverse text normalization (ITN)
{ "login": "zahramahani", "id": 23641494, "node_id": "MDQ6VXNlcjIzNjQxNDk0", "avatar_url": "https://avatars.githubusercontent.com/u/23641494?v=4", "gravatar_id": "", "url": "https://api.github.com/users/zahramahani", "html_url": "https://github.com/zahramahani", "followers_url": "https://api.github.com/users/zahramahani/followers", "following_url": "https://api.github.com/users/zahramahani/following{/other_user}", "gists_url": "https://api.github.com/users/zahramahani/gists{/gist_id}", "starred_url": "https://api.github.com/users/zahramahani/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/zahramahani/subscriptions", "organizations_url": "https://api.github.com/users/zahramahani/orgs", "repos_url": "https://api.github.com/users/zahramahani/repos", "events_url": "https://api.github.com/users/zahramahani/events{/privacy}", "received_events_url": "https://api.github.com/users/zahramahani/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1485815557, "node_id": "MDU6TGFiZWwxNDg1ODE1NTU3", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/bug", "name": "bug", "color": "d73a4a", "default": true, "description": "Something isn't working" }, { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
null
2023-04-25T09:36:48
2023-06-02T02:03:06
2023-06-02T02:03:06
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Describe the bug** when i declare some states with pynini.string_map it cant find the shortest pass of its inverse for no reason **Steps/Code to reproduce bug** ``` import pynini from pynini.lib import pynutil def apply_fst(text, fst): """ Given a string input, returns the output string produced by traversing the path with lowest weight. If no valid path accepts input string, returns an error. """ try: print(pynini.shortestpath(text @ fst).string()) return pynini.shortestpath(text @ fst).string() except pynini.FstOpError: print(f"Error: No valid output with given input: '{text}'") teens = pynini.string_map([ ("ده", "10"), ("یازده", "11"), ("دوازده", "12"), ("سیزده", "13"), ("چهارده", "14"), ("چاهارده", "14"), ("پونزده", "15"), ("1پا نزده", "5"), ("1پانزده", "5"), ("شانزده", "16"), ("1شونزده", "6"), ("1هفده", "7"), ("1هیفده", "7"), ("هجده", "18"), ("هیجده", "18"), ("19", "نوزده") ]) graph_tens = teens apply_fst("یازده", graph_tens) apply_fst("دوازده", graph_tens) apply_fst("سیزده", graph_tens) apply_fst("چهارده", graph_tens) apply_fst("چاهارده", graph_tens) apply_fst("پونزده", graph_tens) apply_fst("پانزده", graph_tens) apply_fst("شانزده", graph_tens) apply_fst("شونزده", graph_tens) apply_fst("هفده", graph_tens) apply_fst("هیفده", graph_tens) apply_fst("هیجده", graph_tens) apply_fst("هجده", graph_tens) apply_fst("نوزده", graph_tens) ``` **Expected behavior** 11 12 13 14 14 15 15 16 16 17 17 18 18 19 **produced output** 11 12 13 14 14 15 Error: No valid output with given input: 'پانزده' 16 Error: No valid output with given input: 'شونزده' Error: No valid output with given input: 'هفده' Error: No valid output with given input: 'هیفده' 18 18 Error: No valid output with given input: 'نوزده' Error: No valid output with given input: 'یک' ERROR: StringFstToOutputLabels: Invalid start state ERROR: StringFstToOutputLabels: Invalid start state ERROR: StringFstToOutputLabels: Invalid start state ERROR: StringFstToOutputLabels: Invalid start state ERROR: StringFstToOutputLabels: Invalid start state ERROR: StringFstToOutputLabels: Invalid start state Process finished with exit code 0 **Environment overview (please complete the following information)** - Environment location: my pc - Method of NeMo install: conda install pynini - **Environment details** - OS version : ubuntu 20 - PyTorch version - Python version : 3.8
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6487/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6487/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6486
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6486/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6486/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6486/events
https://github.com/NVIDIA/NeMo/issues/6486
1,682,381,565
I_kwDOC_bI7s5kRxr9
6,486
Error when exporting from nemo to riva
{ "login": "nharodig", "id": 110415743, "node_id": "U_kgDOBpTPfw", "avatar_url": "https://avatars.githubusercontent.com/u/110415743?v=4", "gravatar_id": "", "url": "https://api.github.com/users/nharodig", "html_url": "https://github.com/nharodig", "followers_url": "https://api.github.com/users/nharodig/followers", "following_url": "https://api.github.com/users/nharodig/following{/other_user}", "gists_url": "https://api.github.com/users/nharodig/gists{/gist_id}", "starred_url": "https://api.github.com/users/nharodig/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/nharodig/subscriptions", "organizations_url": "https://api.github.com/users/nharodig/orgs", "repos_url": "https://api.github.com/users/nharodig/repos", "events_url": "https://api.github.com/users/nharodig/events{/privacy}", "received_events_url": "https://api.github.com/users/nharodig/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1485815557, "node_id": "MDU6TGFiZWwxNDg1ODE1NTU3", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/bug", "name": "bug", "color": "d73a4a", "default": true, "description": "Something isn't working" }, { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
null
2023-04-25T03:52:01
2023-06-02T02:03:09
2023-06-02T02:03:09
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Describe the bug** I'm following the tutorial to finetune the Fastpitch and hifigan models through the NeMo 23.02 container. After updating paths, following the tutorial and fine tuning both models, I couldn't make inferences from the models or export nemo models to riva. **Steps/Code to reproduce bug** Please list *minimal* steps or code snippet for us to be able to reproduce the bug. Download docker image by: docker pull nvcr.io/nvidia/nemo:23.02 Running the NeMo 23.02 docker container by sudo docker run --runtime=nvidia -it --name nemo -v /dev/shm:/dev/shm --shm-size=16g -p 8888:8888 -p 6006:6006 --ulimit memlock=-1 - -ulimit stack=67108864 nvcr.io/nvidia/nemo:23.02 Download the NeMo-main folder from github inside the container Download the fine-tuning notebook tutorial **Expected behavior** when executing this cell: hifigan_nemo_file_path = '/workspace/nemo/finetuning/NeMo/results_dir/HifiGan/2023-04-25_03-04-02/checkpoints/HifiGan.nemo' hifigan_riva_file_path = hifigan_nemo_file_path[:-5]+".riva" fastpitch_nemo_file_path = '/workspace/nemo/finetuning/NeMo/results_dir/FastPitch/2023-04-25_01-27-33/checkpoints/FastPitch.nemo' fastpitch_riva_file_path = fastpitch_nemo_file_path[:-5]+".riva" !nemo2riva --out {fastpitch_riva_file_path} --key=nemotoriva {fastpitch_nemo_file_path} !nemo2riva --out {hifigan_riva_file_path} --key=nemotoriva {hifigan_nemo_file_path} However i got this error: INFO: Created a temporary directory at /tmp/tmp04gd3x52 INFO: Writing /tmp/tmp04gd3x52/_remote_module_non_scriptable.py [NeMo W 2023-04-25 03:39:33 experimental:27] Module <class 'nemo.collections.tts.models.fastpitch_ssl.FastPitchModel_SSL'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo W 2023-04-25 03:39:33 experimental:27] Module <class 'nemo.collections.common.tokenizers.text_to_speech.tts_tokenizers.IPATokenizer'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo W 2023-04-25 03:39:33 experimental:27] Module <class 'nemo.collections.tts.models.radtts.RadTTSModel'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo W 2023-04-25 03:39:33 experimental:27] Module <class 'nemo.collections.asr.modules.audio_modules.SpectrogramToMultichannelFeatures'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo W 2023-04-25 03:39:33 experimental:27] Module <class 'nemo.collections.tts.models.ssl_tts.SSLDisentangler'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo W 2023-04-25 03:39:33 experimental:27] Module <class 'nemo.collections.tts.models.vits.VitsModel'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo I 2023-04-25 03:39:33 nemo2riva:44] Logging level set to 20 [NeMo I 2023-04-25 03:39:33 convert:41] Restoring NeMo model from '/workspace/nemo/finetuning/NeMo/results_dir/FastPitch/2023-04-25_01-27-33/checkpoints/FastPitch.nemo' WARNING: Logging before flag parsing goes to stderr. I0425 03:39:33.679497 140719000115008 setup.py:163] GPU available: True (cuda), used: False I0425 03:39:33.679834 140719000115008 setup.py:166] TPU available: False, using: 0 TPU cores I0425 03:39:33.679970 140719000115008 setup.py:169] IPU available: False, using: 0 IPUs I0425 03:39:33.680056 140719000115008 setup.py:172] HPU available: False, using: 0 HPUs [NeMo W 2023-04-25 03:39:33 nemo_logging:349] /usr/local/lib/python3.8/dist-packages/pytorch_lightning/trainer/setup.py:176: PossibleUserWarning: GPU available but not used. Set `accelerator` and `devices` using `Trainer(accelerator='gpu', devices=1)`. rank_zero_warn( [NeMo W 2023-04-25 03:40:05 fastpitch:209] This checkpoint support will be dropped after r1.18.0. [NeMo E 2023-04-25 03:40:05 common:506] Model instantiation failed! Target class: nemo.collections.tts.models.fastpitch.FastPitchModel Error(s): Error locating target 'nemo.collections.tts.g2p.models.en_us_arpabet.EnglishG2p', see chained exception above. full_key: text_tokenizer.g2p Traceback (most recent call last): File "/usr/local/lib/python3.8/dist-packages/hydra/_internal/utils.py", line 639, in _locate obj = getattr(obj, part) AttributeError: module 'nemo.collections.tts.g2p' has no attribute 'models' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/usr/local/lib/python3.8/dist-packages/hydra/_internal/utils.py", line 645, in _locate obj = import_module(mod) File "/usr/lib/python3.8/importlib/__init__.py", line 127, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "<frozen importlib._bootstrap>", line 1014, in _gcd_import File "<frozen importlib._bootstrap>", line 991, in _find_and_load File "<frozen importlib._bootstrap>", line 973, in _find_and_load_unlocked ModuleNotFoundError: No module named 'nemo.collections.tts.g2p.models' The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/usr/local/lib/python3.8/dist-packages/hydra/_internal/instantiate/_instantiate2.py", line 134, in _resolve_target target = _locate(target) File "/usr/local/lib/python3.8/dist-packages/hydra/_internal/utils.py", line 648, in _locate raise ImportError( ImportError: Error loading 'nemo.collections.tts.g2p.models.en_us_arpabet.EnglishG2p': ModuleNotFoundError("No module named 'nemo.collections.tts.g2p.models'") Are you sure that 'models' is importable from module 'nemo.collections.tts.g2p'? The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/usr/local/lib/python3.8/dist-packages/nemo/core/classes/common.py", line 485, in from_config_dict instance = imported_cls(cfg=config, trainer=trainer) File "/usr/local/lib/python3.8/dist-packages/nemo/collections/tts/models/fastpitch.py", line 100, in __init__ self._setup_tokenizer(cfg) File "/usr/local/lib/python3.8/dist-packages/nemo/collections/tts/models/fastpitch.py", line 224, in _setup_tokenizer text_tokenizer_kwargs["g2p"] = instantiate(cfg.text_tokenizer.g2p, **g2p_kwargs) File "/usr/local/lib/python3.8/dist-packages/hydra/_internal/instantiate/_instantiate2.py", line 222, in instantiate return instantiate_node( File "/usr/local/lib/python3.8/dist-packages/hydra/_internal/instantiate/_instantiate2.py", line 325, in instantiate_node _target_ = _resolve_target(node.get(_Keys.TARGET), full_key) File "/usr/local/lib/python3.8/dist-packages/hydra/_internal/instantiate/_instantiate2.py", line 139, in _resolve_target raise InstantiationException(msg) from e hydra.errors.InstantiationException: Error locating target 'nemo.collections.tts.g2p.models.en_us_arpabet.EnglishG2p', see chained exception above. full_key: text_tokenizer.g2p [NeMo E 2023-04-25 03:40:05 convert:56] Failed to restore model from NeMo file : /workspace/nemo/finetuning/NeMo/results_dir/FastPitch/2023-04-25_01-27-33/checkpoints/FastPitch.nemo. Please make sure you have the latest NeMo package installed with [all] dependencies. Traceback (most recent call last): File "/usr/local/bin/nemo2riva", line 8, in <module> sys.exit(nemo2riva()) File "/usr/local/lib/python3.8/dist-packages/nemo2riva/cli/nemo2riva.py", line 55, in nemo2riva Nemo2Riva(args) File "/usr/local/lib/python3.8/dist-packages/nemo2riva/convert.py", line 61, in Nemo2Riva raise e File "/usr/local/lib/python3.8/dist-packages/nemo2riva/convert.py", line 54, in Nemo2Riva model = ModelPT.restore_from(restore_path=nemo_in, trainer=trainer) File "/usr/local/lib/python3.8/dist-packages/nemo/core/classes/modelPT.py", line 436, in restore_from instance = cls._save_restore_connector.restore_from( File "/usr/local/lib/python3.8/dist-packages/nemo/core/connectors/save_restore_connector.py", line 239, in restore_from loaded_params = self.load_config_and_state_dict( File "/usr/local/lib/python3.8/dist-packages/nemo/core/connectors/save_restore_connector.py", line 162, in load_config_and_state_dict instance = calling_cls.from_config_dict(config=conf, trainer=trainer) File "/usr/local/lib/python3.8/dist-packages/nemo/core/classes/common.py", line 507, in from_config_dict raise e File "/usr/local/lib/python3.8/dist-packages/nemo/core/classes/common.py", line 499, in from_config_dict instance = cls(cfg=config, trainer=trainer) TypeError: Can't instantiate abstract class ModelPT with abstract methods list_available_models, setup_training_data, setup_validation_data INFO: Created a temporary directory at /tmp/tmprpbstve7 INFO: Writing /tmp/tmprpbstve7/_remote_module_non_scriptable.py [NeMo W 2023-04-25 03:40:12 experimental:27] Module <class 'nemo.collections.tts.models.fastpitch_ssl.FastPitchModel_SSL'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo W 2023-04-25 03:40:12 experimental:27] Module <class 'nemo.collections.common.tokenizers.text_to_speech.tts_tokenizers.IPATokenizer'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo W 2023-04-25 03:40:12 experimental:27] Module <class 'nemo.collections.tts.models.radtts.RadTTSModel'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo W 2023-04-25 03:40:13 experimental:27] Module <class 'nemo.collections.asr.modules.audio_modules.SpectrogramToMultichannelFeatures'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo W 2023-04-25 03:40:13 experimental:27] Module <class 'nemo.collections.tts.models.ssl_tts.SSLDisentangler'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo W 2023-04-25 03:40:13 experimental:27] Module <class 'nemo.collections.tts.models.vits.VitsModel'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo I 2023-04-25 03:40:13 nemo2riva:44] Logging level set to 20 [NeMo I 2023-04-25 03:40:13 convert:41] Restoring NeMo model from '/workspace/nemo/finetuning/NeMo/results_dir/HifiGan/2023-04-25_03-04-02/checkpoints/HifiGan.nemo' WARNING: Logging before flag parsing goes to stderr. I0425 03:40:14.087827 140341964519232 setup.py:163] GPU available: True (cuda), used: False I0425 03:40:14.088244 140341964519232 setup.py:166] TPU available: False, using: 0 TPU cores I0425 03:40:14.088342 140341964519232 setup.py:169] IPU available: False, using: 0 IPUs I0425 03:40:14.088403 140341964519232 setup.py:172] HPU available: False, using: 0 HPUs [NeMo W 2023-04-25 03:40:14 nemo_logging:349] /usr/local/lib/python3.8/dist-packages/pytorch_lightning/trainer/setup.py:176: PossibleUserWarning: GPU available but not used. Set `accelerator` and `devices` using `Trainer(accelerator='gpu', devices=1)`. rank_zero_warn( [NeMo W 2023-04-25 03:40:14 modelPT:161] If you intend to do training or fine-tuning, please call the ModelPT.setup_training_data() method and provide a valid configuration file to setup the train data loader. Train config : dataset: _target_: nemo.collections.tts.data.tts_dataset.VocoderDataset manifest_filepath: data_dir/es_cl_female/mels/merged_train_mel.json sample_rate: 22050 n_segments: 8192 max_duration: null min_duration: 0.75 load_precomputed_mel: true hop_length: 256 dataloader_params: drop_last: false shuffle: true batch_size: 32 num_workers: 4 pin_memory: true [NeMo W 2023-04-25 03:40:14 modelPT:168] If you intend to do validation, please call the ModelPT.setup_validation_data() or ModelPT.setup_multiple_validation_data() method and provide a valid configuration file to setup the validation data loader(s). Validation config : dataset: _target_: nemo.collections.tts.data.tts_dataset.VocoderDataset manifest_filepath: data_dir/es_cl_female/mels/merged_val_mel.json sample_rate: 22050 n_segments: 66048 max_duration: null min_duration: 3 load_precomputed_mel: true hop_length: 256 dataloader_params: drop_last: false shuffle: false batch_size: 16 num_workers: 4 pin_memory: true [NeMo I 2023-04-25 03:40:14 features:287] PADDING: 0 [NeMo I 2023-04-25 03:40:14 features:295] STFT using exact pad [NeMo I 2023-04-25 03:40:14 features:287] PADDING: 0 [NeMo I 2023-04-25 03:40:14 features:295] STFT using exact pad [NeMo I 2023-04-25 03:40:16 save_restore_connector:247] Model HifiGanModel was successfully restored from /workspace/nemo/finetuning/NeMo/results_dir/HifiGan/2023-04-25_03-04-02/checkpoints/HifiGan.nemo. [NeMo I 2023-04-25 03:40:16 schema:154] Loaded schema file /usr/local/lib/python3.8/dist-packages/nemo2riva/validation_schemas/nlp-tkc-exported-bert.yaml for nemo.collections.nlp.models.TokenClassificationModel [NeMo I 2023-04-25 03:40:16 schema:154] Loaded schema file /usr/local/lib/python3.8/dist-packages/nemo2riva/validation_schemas/nlp-pc-exported-bert.yaml for nemo.collections.nlp.models.PunctuationCapitalizationModel [NeMo I 2023-04-25 03:40:16 schema:154] Loaded schema file /usr/local/lib/python3.8/dist-packages/nemo2riva/validation_schemas/asr-stt-exported-encdecctcmodel.yaml for nemo.collections.asr.models.EncDecCTCModel [NeMo I 2023-04-25 03:40:16 schema:154] Loaded schema file /usr/local/lib/python3.8/dist-packages/nemo2riva/validation_schemas/tts-exported-hifiganmodel.yaml for nemo.collections.tts.models.HifiGanModel [NeMo I 2023-04-25 03:40:16 schema:154] Loaded schema file /usr/local/lib/python3.8/dist-packages/nemo2riva/validation_schemas/nlp-isc-exported-bert.yaml for nemo.collections.nlp.models.IntentSlotClassificationModel [NeMo I 2023-04-25 03:40:16 schema:154] Loaded schema file /usr/local/lib/python3.8/dist-packages/nemo2riva/validation_schemas/tts-exported-fastpitchmodel.yaml for nemo.collections.tts.models.FastPitchModel [NeMo I 2023-04-25 03:40:16 schema:154] Loaded schema file /usr/local/lib/python3.8/dist-packages/nemo2riva/validation_schemas/nlp-mt-exported-encdecmtmodel.yaml for nemo.collections.nlp.models.MTEncDecModel [NeMo I 2023-04-25 03:40:16 schema:154] Loaded schema file /usr/local/lib/python3.8/dist-packages/nemo2riva/validation_schemas/nlp-qa-exported-bert.yaml for nemo.collections.nlp.models.QAModel [NeMo I 2023-04-25 03:40:16 schema:154] Loaded schema file /usr/local/lib/python3.8/dist-packages/nemo2riva/validation_schemas/nlp-tc-exported-bert.yaml for nemo.collections.nlp.models.TextClassificationModel [NeMo I 2023-04-25 03:40:16 schema:154] Loaded schema file /usr/local/lib/python3.8/dist-packages/nemo2riva/validation_schemas/asr-scr-exported-encdecclsmodel.yaml for nemo.collections.asr.models.classification_models.EncDecClassificationModel [NeMo I 2023-04-25 03:40:16 schema:154] Loaded schema file /usr/local/lib/python3.8/dist-packages/nemo2riva/validation_schemas/asr-stt-exported-encdectcmodelbpe.yaml for nemo.collections.asr.models.EncDecCTCModelBPE [NeMo I 2023-04-25 03:40:16 schema:154] Loaded schema file /usr/local/lib/python3.8/dist-packages/nemo2riva/validation_schemas/tts-exported-radttsmodel.yaml for nemo.collections.tts.models.RadTTSModel [NeMo I 2023-04-25 03:40:16 schema:193] Found validation schema for nemo.collections.tts.models.HifiGanModel at /usr/local/lib/python3.8/dist-packages/nemo2riva/validation_schemas/tts-exported-hifiganmodel.yaml [NeMo I 2023-04-25 03:40:16 schema:222] Checking installed NeMo version ... 1.17.0 OK (>=1.1) [NeMo I 2023-04-25 03:40:16 artifacts:65] Found model at ./model_weights.ckpt [NeMo E 2023-04-25 03:40:16 artifacts:112] nemo2riva's get_artifacts() was called but was unable to continue due to missing modules. Please ensure that nemo_toolkit and it's dependencies are all installed before re-running nemo2riva. Traceback (most recent call last): File "/usr/local/bin/nemo2riva", line 8, in <module> sys.exit(nemo2riva()) File "/usr/local/lib/python3.8/dist-packages/nemo2riva/cli/nemo2riva.py", line 55, in nemo2riva Nemo2Riva(args) File "/usr/local/lib/python3.8/dist-packages/nemo2riva/convert.py", line 85, in Nemo2Riva artifacts, manifest = get_artifacts(restore_path=nemo_in, model=model, passphrase=key, **patch_kwargs) File "/usr/local/lib/python3.8/dist-packages/nemo2riva/artifacts.py", line 117, in get_artifacts if isinstance(_HAVE_PATCHES_ERROR_MSG, exception): TypeError: isinstance() arg 2 must be a type or tuple of types **Additional context** I'm using a T4 in AWS
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6486/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6486/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6485
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6485/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6485/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6485/events
https://github.com/NVIDIA/NeMo/pull/6485
1,682,275,240
PR_kwDOC_bI7s5PDn_H
6,485
Update SDP docs
{ "login": "erastorgueva-nv", "id": 80532067, "node_id": "MDQ6VXNlcjgwNTMyMDY3", "avatar_url": "https://avatars.githubusercontent.com/u/80532067?v=4", "gravatar_id": "", "url": "https://api.github.com/users/erastorgueva-nv", "html_url": "https://github.com/erastorgueva-nv", "followers_url": "https://api.github.com/users/erastorgueva-nv/followers", "following_url": "https://api.github.com/users/erastorgueva-nv/following{/other_user}", "gists_url": "https://api.github.com/users/erastorgueva-nv/gists{/gist_id}", "starred_url": "https://api.github.com/users/erastorgueva-nv/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/erastorgueva-nv/subscriptions", "organizations_url": "https://api.github.com/users/erastorgueva-nv/orgs", "repos_url": "https://api.github.com/users/erastorgueva-nv/repos", "events_url": "https://api.github.com/users/erastorgueva-nv/events{/privacy}", "received_events_url": "https://api.github.com/users/erastorgueva-nv/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
null
[]
null
null
2023-04-25T01:38:37
2023-05-08T20:57:13
2023-05-08T20:57:12
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6485", "html_url": "https://github.com/NVIDIA/NeMo/pull/6485", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6485.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6485.patch", "merged_at": "2023-05-08T20:57:12" }
# What does this PR do ? Add more detail to SDP section in NeMo docs, and add link to that page in the NeMo README.rst. **Collection**: docs # Changelog - update SDP section in NeMo docs - update NeMo README # Usage N/A # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [N/A] Did you write any new necessary tests? - [x] Did you add or update any necessary documentation? - [ N/A ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [x] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6485/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6485/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6484
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6484/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6484/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6484/events
https://github.com/NVIDIA/NeMo/pull/6484
1,682,267,677
PR_kwDOC_bI7s5PDmf7
6,484
Fix cache aware hybrid bugs
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null }, { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
{ "login": "VahidooX", "id": 23551647, "node_id": "MDQ6VXNlcjIzNTUxNjQ3", "avatar_url": "https://avatars.githubusercontent.com/u/23551647?v=4", "gravatar_id": "", "url": "https://api.github.com/users/VahidooX", "html_url": "https://github.com/VahidooX", "followers_url": "https://api.github.com/users/VahidooX/followers", "following_url": "https://api.github.com/users/VahidooX/following{/other_user}", "gists_url": "https://api.github.com/users/VahidooX/gists{/gist_id}", "starred_url": "https://api.github.com/users/VahidooX/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/VahidooX/subscriptions", "organizations_url": "https://api.github.com/users/VahidooX/orgs", "repos_url": "https://api.github.com/users/VahidooX/repos", "events_url": "https://api.github.com/users/VahidooX/events{/privacy}", "received_events_url": "https://api.github.com/users/VahidooX/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "login": "VahidooX", "id": 23551647, "node_id": "MDQ6VXNlcjIzNTUxNjQ3", "avatar_url": "https://avatars.githubusercontent.com/u/23551647?v=4", "gravatar_id": "", "url": "https://api.github.com/users/VahidooX", "html_url": "https://github.com/VahidooX", "followers_url": "https://api.github.com/users/VahidooX/followers", "following_url": "https://api.github.com/users/VahidooX/following{/other_user}", "gists_url": "https://api.github.com/users/VahidooX/gists{/gist_id}", "starred_url": "https://api.github.com/users/VahidooX/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/VahidooX/subscriptions", "organizations_url": "https://api.github.com/users/VahidooX/orgs", "repos_url": "https://api.github.com/users/VahidooX/repos", "events_url": "https://api.github.com/users/VahidooX/events{/privacy}", "received_events_url": "https://api.github.com/users/VahidooX/received_events", "type": "User", "user_view_type": "public", "site_admin": false } ]
null
null
2023-04-25T01:24:09
2023-04-25T19:42:30
2023-04-25T19:42:29
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6484", "html_url": "https://github.com/NVIDIA/NeMo/pull/6484", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6484.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6484.patch", "merged_at": "2023-04-25T19:42:29" }
# What does this PR do ? Fixes some bugs to support Hybrid and FastConformer variants of cache-aware streaming models. # Changelog - Fixed a bug which prevented switching between decoders for Hybrid models - Added support of Hybrid models to the cache-aware streaming inference scripts - Added the feature to switch between decoders to the cache-aware streaming simulation script - Added support of causal downsamling for dw_striding approach. # Usage Users may use the --set_decoder "rnnt" or "ctc" to change the decoder with speech_to_text_cache_aware_streaming_infer.py. They may use asr_model.change_decoding_strategy(decoder_type='ctc' or 'rnnt') to change the decoding for a Hybrid model in general. **PR Type**: - [X] New Feature - [X] Bugfix - [ ] Documentation
{ "login": "VahidooX", "id": 23551647, "node_id": "MDQ6VXNlcjIzNTUxNjQ3", "avatar_url": "https://avatars.githubusercontent.com/u/23551647?v=4", "gravatar_id": "", "url": "https://api.github.com/users/VahidooX", "html_url": "https://github.com/VahidooX", "followers_url": "https://api.github.com/users/VahidooX/followers", "following_url": "https://api.github.com/users/VahidooX/following{/other_user}", "gists_url": "https://api.github.com/users/VahidooX/gists{/gist_id}", "starred_url": "https://api.github.com/users/VahidooX/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/VahidooX/subscriptions", "organizations_url": "https://api.github.com/users/VahidooX/orgs", "repos_url": "https://api.github.com/users/VahidooX/repos", "events_url": "https://api.github.com/users/VahidooX/events{/privacy}", "received_events_url": "https://api.github.com/users/VahidooX/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6484/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6484/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6483
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6483/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6483/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6483/events
https://github.com/NVIDIA/NeMo/pull/6483
1,682,169,552
PR_kwDOC_bI7s5PDRqT
6,483
Support in external sample mapping for Megatron datasets
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null }, { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-24T23:06:10
2023-04-25T13:44:24
2023-04-25T13:44:22
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6483", "html_url": "https://github.com/NVIDIA/NeMo/pull/6483", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6483.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6483.patch", "merged_at": "2023-04-25T13:44:22" }
This PR adds support in external sample mapping (to be able to compute on the fly). # What does this PR do ? The added support does not add any new functionality, but allows providing the sample mapping externally to be able to avoid loading dataset samples. **Collection**: Megatron `dataset_utils`. # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [x] Did you write any new necessary tests? - [x] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "michalivne", "id": 7453913, "node_id": "MDQ6VXNlcjc0NTM5MTM=", "avatar_url": "https://avatars.githubusercontent.com/u/7453913?v=4", "gravatar_id": "", "url": "https://api.github.com/users/michalivne", "html_url": "https://github.com/michalivne", "followers_url": "https://api.github.com/users/michalivne/followers", "following_url": "https://api.github.com/users/michalivne/following{/other_user}", "gists_url": "https://api.github.com/users/michalivne/gists{/gist_id}", "starred_url": "https://api.github.com/users/michalivne/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/michalivne/subscriptions", "organizations_url": "https://api.github.com/users/michalivne/orgs", "repos_url": "https://api.github.com/users/michalivne/repos", "events_url": "https://api.github.com/users/michalivne/events{/privacy}", "received_events_url": "https://api.github.com/users/michalivne/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6483/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6483/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6482
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6482/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6482/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6482/events
https://github.com/NVIDIA/NeMo/pull/6482
1,682,158,229
PR_kwDOC_bI7s5PDPFK
6,482
Manual garbage collection with an interval
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null }, { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-24T22:57:14
2023-05-09T22:07:35
2023-05-09T22:07:34
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6482", "html_url": "https://github.com/NVIDIA/NeMo/pull/6482", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6482.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6482.patch", "merged_at": "2023-05-09T22:07:34" }
# What does this PR do ? Set garbage collection interval manually. This helps align garbage collection execution across GPUs, which mitigates CPU overhead dramatically. Using an integer value for `gc_interval` set the garbage collection interval in global-batch steps. # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "ericharper", "id": 11999610, "node_id": "MDQ6VXNlcjExOTk5NjEw", "avatar_url": "https://avatars.githubusercontent.com/u/11999610?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ericharper", "html_url": "https://github.com/ericharper", "followers_url": "https://api.github.com/users/ericharper/followers", "following_url": "https://api.github.com/users/ericharper/following{/other_user}", "gists_url": "https://api.github.com/users/ericharper/gists{/gist_id}", "starred_url": "https://api.github.com/users/ericharper/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ericharper/subscriptions", "organizations_url": "https://api.github.com/users/ericharper/orgs", "repos_url": "https://api.github.com/users/ericharper/repos", "events_url": "https://api.github.com/users/ericharper/events{/privacy}", "received_events_url": "https://api.github.com/users/ericharper/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6482/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6482/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6481
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6481/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6481/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6481/events
https://github.com/NVIDIA/NeMo/pull/6481
1,682,067,041
PR_kwDOC_bI7s5PC7Fu
6,481
removing unnecessary avoid_bfloat16_autocast_context
{ "login": "bmwshop", "id": 482416, "node_id": "MDQ6VXNlcjQ4MjQxNg==", "avatar_url": "https://avatars.githubusercontent.com/u/482416?v=4", "gravatar_id": "", "url": "https://api.github.com/users/bmwshop", "html_url": "https://github.com/bmwshop", "followers_url": "https://api.github.com/users/bmwshop/followers", "following_url": "https://api.github.com/users/bmwshop/following{/other_user}", "gists_url": "https://api.github.com/users/bmwshop/gists{/gist_id}", "starred_url": "https://api.github.com/users/bmwshop/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/bmwshop/subscriptions", "organizations_url": "https://api.github.com/users/bmwshop/orgs", "repos_url": "https://api.github.com/users/bmwshop/repos", "events_url": "https://api.github.com/users/bmwshop/events{/privacy}", "received_events_url": "https://api.github.com/users/bmwshop/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-24T21:24:28
2023-05-03T05:41:59
2023-05-03T05:41:58
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6481", "html_url": "https://github.com/NVIDIA/NeMo/pull/6481", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6481.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6481.patch", "merged_at": "2023-05-03T05:41:58" }
# What does this PR do ? Removes the no longer unnecessary avoid_bfloat16_autocast_context in conv2d subsampling **Collection**: ASR # Changelog In `nemo/collections/asr/parts/submodules/subsampling.py`, no longer wrapping conv2d calls in the avoid... context # Usage Use bf16 precision as usual, performance should improve a few % because the conv2d subsampling is no longer wrapped in fp32. Performance in fp16 and fp32 is not affected. ```python n/a ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6481/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6481/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6480
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6480/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6480/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6480/events
https://github.com/NVIDIA/NeMo/pull/6480
1,681,687,240
PR_kwDOC_bI7s5PBoGE
6,480
Megatron KERPLE positional embeddings
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null }, { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" }, { "id": 4840216855, "node_id": "LA_kwDOC_bI7s8AAAABIH_ZFw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/CI", "name": "CI", "color": "1D76DB", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-24T16:59:42
2023-04-24T20:03:27
2023-04-24T20:03:26
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6480", "html_url": "https://github.com/NVIDIA/NeMo/pull/6480", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6480.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6480.patch", "merged_at": "2023-04-24T20:03:26" }
# What does this PR do ? This PR adds support to KERPLE (https://arxiv.org/abs/2205.09921) positional embeddings for Megatron encoder-decoder classes. **Collection**: nlp megatron # Changelog - Added implementation of KERPLE - Added Jenkins test - Added comment to document feature in YAML file (`examples/nlp/language_modeling/conf/megatron_model_base_config.yaml`) # Usage Set config ``` model.encoder.position_embedding_type: 'kerple' model.decoder.position_embedding_type: 'kerple' ``` # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [x] Did you write any new necessary tests? - [x] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "michalivne", "id": 7453913, "node_id": "MDQ6VXNlcjc0NTM5MTM=", "avatar_url": "https://avatars.githubusercontent.com/u/7453913?v=4", "gravatar_id": "", "url": "https://api.github.com/users/michalivne", "html_url": "https://github.com/michalivne", "followers_url": "https://api.github.com/users/michalivne/followers", "following_url": "https://api.github.com/users/michalivne/following{/other_user}", "gists_url": "https://api.github.com/users/michalivne/gists{/gist_id}", "starred_url": "https://api.github.com/users/michalivne/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/michalivne/subscriptions", "organizations_url": "https://api.github.com/users/michalivne/orgs", "repos_url": "https://api.github.com/users/michalivne/repos", "events_url": "https://api.github.com/users/michalivne/events{/privacy}", "received_events_url": "https://api.github.com/users/michalivne/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6480/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6480/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6479
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6479/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6479/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6479/events
https://github.com/NVIDIA/NeMo/pull/6479
1,680,340,566
PR_kwDOC_bI7s5O9EzK
6,479
Add conformer post attn and non pos_emb
{ "login": "ArtyomZemlyak", "id": 42967602, "node_id": "MDQ6VXNlcjQyOTY3NjAy", "avatar_url": "https://avatars.githubusercontent.com/u/42967602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ArtyomZemlyak", "html_url": "https://github.com/ArtyomZemlyak", "followers_url": "https://api.github.com/users/ArtyomZemlyak/followers", "following_url": "https://api.github.com/users/ArtyomZemlyak/following{/other_user}", "gists_url": "https://api.github.com/users/ArtyomZemlyak/gists{/gist_id}", "starred_url": "https://api.github.com/users/ArtyomZemlyak/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ArtyomZemlyak/subscriptions", "organizations_url": "https://api.github.com/users/ArtyomZemlyak/orgs", "repos_url": "https://api.github.com/users/ArtyomZemlyak/repos", "events_url": "https://api.github.com/users/ArtyomZemlyak/events{/privacy}", "received_events_url": "https://api.github.com/users/ArtyomZemlyak/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null }, { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-24T02:25:40
2023-05-22T01:56:40
2023-05-22T01:56:40
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6479", "html_url": "https://github.com/NVIDIA/NeMo/pull/6479", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6479.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6479.patch", "merged_at": null }
# What does this PR do ? Add post attention for conformer and off pos_emb computation **Collection**: ASR # Changelog - Using prefix `post_` for all `self_attention_model` options will move attention after conv - New `non_pos` option for `self_attention_model` for off computation of positional emb # Usage * You can potentially add a usage example below # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6479/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6479/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6478
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6478/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6478/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6478/events
https://github.com/NVIDIA/NeMo/pull/6478
1,680,218,118
PR_kwDOC_bI7s5O8qpw
6,478
Megatron KERPLE positional embeddings
{ "login": "michalivne", "id": 7453913, "node_id": "MDQ6VXNlcjc0NTM5MTM=", "avatar_url": "https://avatars.githubusercontent.com/u/7453913?v=4", "gravatar_id": "", "url": "https://api.github.com/users/michalivne", "html_url": "https://github.com/michalivne", "followers_url": "https://api.github.com/users/michalivne/followers", "following_url": "https://api.github.com/users/michalivne/following{/other_user}", "gists_url": "https://api.github.com/users/michalivne/gists{/gist_id}", "starred_url": "https://api.github.com/users/michalivne/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/michalivne/subscriptions", "organizations_url": "https://api.github.com/users/michalivne/orgs", "repos_url": "https://api.github.com/users/michalivne/repos", "events_url": "https://api.github.com/users/michalivne/events{/privacy}", "received_events_url": "https://api.github.com/users/michalivne/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" }, { "id": 4840216855, "node_id": "LA_kwDOC_bI7s8AAAABIH_ZFw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/CI", "name": "CI", "color": "1D76DB", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-23T23:24:18
2023-04-24T16:59:13
2023-04-24T16:59:12
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6478", "html_url": "https://github.com/NVIDIA/NeMo/pull/6478", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6478.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6478.patch", "merged_at": "2023-04-24T16:59:12" }
# What does this PR do ? This PR adds support to KERPLE (https://arxiv.org/abs/2205.09921) positional embeddings for Megatron encoder-decoder classes. **Collection**: nlp megatron # Changelog - Added implementation of KERPLE - Added Jenkins test - Added comment to document feature in YAML file (`examples/nlp/language_modeling/conf/megatron_model_base_config.yaml`) # Usage Set config ``` model.encoder.position_embedding_type: 'kerple' model.decoder.position_embedding_type: 'kerple' ``` # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [x] Did you write any new necessary tests? - [x] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "yzhang123", "id": 4204271, "node_id": "MDQ6VXNlcjQyMDQyNzE=", "avatar_url": "https://avatars.githubusercontent.com/u/4204271?v=4", "gravatar_id": "", "url": "https://api.github.com/users/yzhang123", "html_url": "https://github.com/yzhang123", "followers_url": "https://api.github.com/users/yzhang123/followers", "following_url": "https://api.github.com/users/yzhang123/following{/other_user}", "gists_url": "https://api.github.com/users/yzhang123/gists{/gist_id}", "starred_url": "https://api.github.com/users/yzhang123/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yzhang123/subscriptions", "organizations_url": "https://api.github.com/users/yzhang123/orgs", "repos_url": "https://api.github.com/users/yzhang123/repos", "events_url": "https://api.github.com/users/yzhang123/events{/privacy}", "received_events_url": "https://api.github.com/users/yzhang123/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6478/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6478/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6477
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6477/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6477/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6477/events
https://github.com/NVIDIA/NeMo/issues/6477
1,679,685,229
I_kwDOC_bI7s5kHfZt
6,477
Training MSDD on multiple GPUs
{ "login": "mabajec", "id": 16853936, "node_id": "MDQ6VXNlcjE2ODUzOTM2", "avatar_url": "https://avatars.githubusercontent.com/u/16853936?v=4", "gravatar_id": "", "url": "https://api.github.com/users/mabajec", "html_url": "https://github.com/mabajec", "followers_url": "https://api.github.com/users/mabajec/followers", "following_url": "https://api.github.com/users/mabajec/following{/other_user}", "gists_url": "https://api.github.com/users/mabajec/gists{/gist_id}", "starred_url": "https://api.github.com/users/mabajec/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/mabajec/subscriptions", "organizations_url": "https://api.github.com/users/mabajec/orgs", "repos_url": "https://api.github.com/users/mabajec/repos", "events_url": "https://api.github.com/users/mabajec/events{/privacy}", "received_events_url": "https://api.github.com/users/mabajec/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1485815557, "node_id": "MDU6TGFiZWwxNDg1ODE1NTU3", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/bug", "name": "bug", "color": "d73a4a", "default": true, "description": "Something isn't working" }, { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null } ]
closed
false
{ "login": "tango4j", "id": 13211483, "node_id": "MDQ6VXNlcjEzMjExNDgz", "avatar_url": "https://avatars.githubusercontent.com/u/13211483?v=4", "gravatar_id": "", "url": "https://api.github.com/users/tango4j", "html_url": "https://github.com/tango4j", "followers_url": "https://api.github.com/users/tango4j/followers", "following_url": "https://api.github.com/users/tango4j/following{/other_user}", "gists_url": "https://api.github.com/users/tango4j/gists{/gist_id}", "starred_url": "https://api.github.com/users/tango4j/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/tango4j/subscriptions", "organizations_url": "https://api.github.com/users/tango4j/orgs", "repos_url": "https://api.github.com/users/tango4j/repos", "events_url": "https://api.github.com/users/tango4j/events{/privacy}", "received_events_url": "https://api.github.com/users/tango4j/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "login": "tango4j", "id": 13211483, "node_id": "MDQ6VXNlcjEzMjExNDgz", "avatar_url": "https://avatars.githubusercontent.com/u/13211483?v=4", "gravatar_id": "", "url": "https://api.github.com/users/tango4j", "html_url": "https://github.com/tango4j", "followers_url": "https://api.github.com/users/tango4j/followers", "following_url": "https://api.github.com/users/tango4j/following{/other_user}", "gists_url": "https://api.github.com/users/tango4j/gists{/gist_id}", "starred_url": "https://api.github.com/users/tango4j/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/tango4j/subscriptions", "organizations_url": "https://api.github.com/users/tango4j/orgs", "repos_url": "https://api.github.com/users/tango4j/repos", "events_url": "https://api.github.com/users/tango4j/events{/privacy}", "received_events_url": "https://api.github.com/users/tango4j/received_events", "type": "User", "user_view_type": "public", "site_admin": false }, { "login": "nithinraok", "id": 19668129, "node_id": "MDQ6VXNlcjE5NjY4MTI5", "avatar_url": "https://avatars.githubusercontent.com/u/19668129?v=4", "gravatar_id": "", "url": "https://api.github.com/users/nithinraok", "html_url": "https://github.com/nithinraok", "followers_url": "https://api.github.com/users/nithinraok/followers", "following_url": "https://api.github.com/users/nithinraok/following{/other_user}", "gists_url": "https://api.github.com/users/nithinraok/gists{/gist_id}", "starred_url": "https://api.github.com/users/nithinraok/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/nithinraok/subscriptions", "organizations_url": "https://api.github.com/users/nithinraok/orgs", "repos_url": "https://api.github.com/users/nithinraok/repos", "events_url": "https://api.github.com/users/nithinraok/events{/privacy}", "received_events_url": "https://api.github.com/users/nithinraok/received_events", "type": "User", "user_view_type": "public", "site_admin": false } ]
null
null
2023-04-22T20:06:19
2023-06-01T02:13:02
2023-06-01T02:13:02
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**How to train MSDD on multiple GPUs?** When training MSDD model for speaker diarization on multiple GPU units, an error is thrown in the manifest generation step. FileNotFoundError: [Errno 2] No such file or directory: `<temp_dir>/speaker_outputs/oracle_vad_manifest.json` where `<temp_dir>` refers to what we set up in the config for `model.train_ds.emb_dir` or `model.valid_ds.emb_dir`. This happens in the init of the `EncDecDiarLabelModel` class. Below is the complete error trace. If training is initiated on a single GPU, the `EncDecDiarLabelModel` gets initialised without any problems. Is this a known limitation of the MSDD model training code or there is something else I need to do to initi the training on multiple GPUs? Thanks ``` Error executing job with overrides: ['num_workers=20', 'batch_size=15', 'model.train_ds.manifest_filepath=/data/multispeaker-dataset/msdd_manifest_train_for_trainer.json', 'model.validation_ds.manifest_filepath=/data/multispeaker-dataset/msdd_manifest_valid_for_trainer.json', 'model.train_ds.emb_dir=/data/multispeaker-dataset/temp_dir_train', 'model.validation_ds.emb_dir=/data/multispeaker-dataset/temp_dir_valid', 'model.diarizer.speaker_embeddings.model_path=titanet_large', 'model.emb_batch_size=100', 'exp_manager.name=msdd_v1', '+exp_manager.exp_dir=/experiments', '+exp_manager.version=20230422-0827', '+exp_manager.resume_if_exists=true', '+exp_manager.resume_ignore_no_checkpoint=true', '+exp_manager.checkpoint_callback_params.always_save_nemo=true', '+exp_manager.checkpoint_callback_params.save_best_model=false', 'trainer.devices=-1', 'trainer.num_nodes=1', 'trainer.strategy=ddp', 'trainer.accelerator=gpu', '+trainer.check_val_every_n_epoch=1', 'trainer.max_epochs=1000'] Traceback (most recent call last): File "/examples/speaker_tasks/diarization/neural_diarizer/multiscale_diar_decoder.py", line 51, in <module> main() File "/usr/local/lib/python3.8/dist-packages/nemo/core/config/hydra_runner.py", line 105, in wrapper _run_hydra( File "/usr/local/lib/python3.8/dist-packages/hydra/_internal/utils.py", line 389, in _run_hydra _run_app( File "/usr/local/lib/python3.8/dist-packages/hydra/_internal/utils.py", line 452, in _run_app run_and_report( File "/usr/local/lib/python3.8/dist-packages/hydra/_internal/utils.py", line 216, in run_and_report raise ex File "/usr/local/lib/python3.8/dist-packages/hydra/_internal/utils.py", line 213, in run_and_report return func() File "/usr/local/lib/python3.8/dist-packages/hydra/_internal/utils.py", line 453, in <lambda> lambda: hydra.run( File "/usr/local/lib/python3.8/dist-packages/hydra/_internal/hydra.py", line 132, in run _ = ret.return_value File "/usr/local/lib/python3.8/dist-packages/hydra/core/utils.py", line 260, in return_value raise self._return_value File "/usr/local/lib/python3.8/dist-packages/hydra/core/utils.py", line 186, in run_job ret.return_value = task_function(task_cfg) File "/examples/speaker_tasks/diarization/neural_diarizer/multiscale_diar_decoder.py", line 46, in main msdd_model = EncDecDiarLabelModel(cfg=cfg.model, trainer=trainer) File "/usr/local/lib/python3.8/dist-packages/nemo/collections/asr/models/msdd_models.py", line 123, in __init__ super().__init__(cfg=self.cfg_msdd_model, trainer=trainer) File "/usr/local/lib/python3.8/dist-packages/nemo/core/classes/modelPT.py", line 143, in __init__ self.setup_training_data(self._cfg.train_ds) File "/usr/local/lib/python3.8/dist-packages/nemo/collections/asr/models/msdd_models.py", line 278, in setup_training_data self._train_dl = self.__setup_dataloader_from_config(config=train_data_config,) File "/usr/local/lib/python3.8/dist-packages/nemo/collections/asr/models/msdd_models.py", line 217, in __setup_dataloader_from_config dataset = AudioToSpeechMSDDTrainDataset( File "/usr/local/lib/python3.8/dist-packages/nemo/collections/asr/data/audio_to_diar_label.py", line 774, in __init__ super().__init__( File "/usr/local/lib/python3.8/dist-packages/nemo/collections/asr/data/audio_to_diar_label.py", line 226, in __init__ self.multiscale_timestamp_dict = prepare_split_data( File "/usr/local/lib/python3.8/dist-packages/nemo/collections/asr/parts/utils/speaker_utils.py", line 1469, in prepare_split_data write_rttm2manifest(split_audio_rttm_map, _speaker_manifest_path, include_uniq_id=True) File "/usr/local/lib/python3.8/dist-packages/nemo/collections/asr/parts/utils/speaker_utils.py", line 854, in write_rttm2manifest with open(manifest_file, 'w') as outfile: FileNotFoundError: [Errno 2] No such file or directory: '/data/multispeaker-dataset/temp_dir_train/speaker_outputs/oracle_vad_manifest.json' ```
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6477/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6477/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6476
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6476/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6476/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6476/events
https://github.com/NVIDIA/NeMo/pull/6476
1,679,589,426
PR_kwDOC_bI7s5O6vDJ
6,476
conv_pointwise_type parameter
{ "login": "bmwshop", "id": 482416, "node_id": "MDQ6VXNlcjQ4MjQxNg==", "avatar_url": "https://avatars.githubusercontent.com/u/482416?v=4", "gravatar_id": "", "url": "https://api.github.com/users/bmwshop", "html_url": "https://github.com/bmwshop", "followers_url": "https://api.github.com/users/bmwshop/followers", "following_url": "https://api.github.com/users/bmwshop/following{/other_user}", "gists_url": "https://api.github.com/users/bmwshop/gists{/gist_id}", "starred_url": "https://api.github.com/users/bmwshop/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/bmwshop/subscriptions", "organizations_url": "https://api.github.com/users/bmwshop/orgs", "repos_url": "https://api.github.com/users/bmwshop/repos", "events_url": "https://api.github.com/users/bmwshop/events{/privacy}", "received_events_url": "https://api.github.com/users/bmwshop/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-22T15:37:09
2023-05-15T03:31:00
2023-05-10T03:01:05
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6476", "html_url": "https://github.com/NVIDIA/NeMo/pull/6476", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6476.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6476.patch", "merged_at": null }
# What does this PR do ? Adding the conv_pointwise_type parameter that to ConformerEncoder enabling the use of nn.Linear() for a 10% acceleration **Collection**: ASR # Changelog Adding the conv_pointwise_type parameter to - nemo/collections/asr/modules/conformer_encoder.py : adding the conv_pointwise_type parameter and propagating it to ConformerLayer - nemo/collections/asr/parts/submodules/conformer_modules.py: adding conv_pointwise_type parameter to ConformerLayer and propagating it to ConformerConvolution. - in ConformerConvolution, if conv_pointwise_type is 'linear', use nn.Linear() instead of nn.Conv1d() # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this +model.encoder.conv_pointwise_type='linear' ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "bmwshop", "id": 482416, "node_id": "MDQ6VXNlcjQ4MjQxNg==", "avatar_url": "https://avatars.githubusercontent.com/u/482416?v=4", "gravatar_id": "", "url": "https://api.github.com/users/bmwshop", "html_url": "https://github.com/bmwshop", "followers_url": "https://api.github.com/users/bmwshop/followers", "following_url": "https://api.github.com/users/bmwshop/following{/other_user}", "gists_url": "https://api.github.com/users/bmwshop/gists{/gist_id}", "starred_url": "https://api.github.com/users/bmwshop/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/bmwshop/subscriptions", "organizations_url": "https://api.github.com/users/bmwshop/orgs", "repos_url": "https://api.github.com/users/bmwshop/repos", "events_url": "https://api.github.com/users/bmwshop/events{/privacy}", "received_events_url": "https://api.github.com/users/bmwshop/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6476/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6476/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6475
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6475/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6475/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6475/events
https://github.com/NVIDIA/NeMo/pull/6475
1,679,331,714
PR_kwDOC_bI7s5O56jJ
6,475
Switch to NVIDIA Megatron repo
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null }, { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" }, { "id": 4840216855, "node_id": "LA_kwDOC_bI7s8AAAABIH_ZFw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/CI", "name": "CI", "color": "1D76DB", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-22T04:45:20
2023-04-24T16:35:20
2023-04-24T16:35:18
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6475", "html_url": "https://github.com/NVIDIA/NeMo/pull/6475", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6475.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6475.patch", "merged_at": "2023-04-24T16:35:18" }
# What does this PR do ? Move core lib to NVIDIA/Megatron-LM from custom fork **Collection**: NLP # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6475/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6475/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6474
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6474/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6474/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6474/events
https://github.com/NVIDIA/NeMo/pull/6474
1,679,162,645
PR_kwDOC_bI7s5O5Wzq
6,474
Reduce workers on NMT CI
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null }, { "id": 4840216855, "node_id": "LA_kwDOC_bI7s8AAAABIH_ZFw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/CI", "name": "CI", "color": "1D76DB", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-21T22:18:11
2023-04-22T00:10:07
2023-04-22T00:10:06
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6474", "html_url": "https://github.com/NVIDIA/NeMo/pull/6474", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6474.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6474.patch", "merged_at": "2023-04-22T00:10:06" }
# What does this PR do ? Reduce data workers on NMT CI for speedup **Collection**: NLP # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6474/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6474/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6473
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6473/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6473/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6473/events
https://github.com/NVIDIA/NeMo/pull/6473
1,679,019,474
PR_kwDOC_bI7s5O43Ou
6,473
FC models in menu
{ "login": "bmwshop", "id": 482416, "node_id": "MDQ6VXNlcjQ4MjQxNg==", "avatar_url": "https://avatars.githubusercontent.com/u/482416?v=4", "gravatar_id": "", "url": "https://api.github.com/users/bmwshop", "html_url": "https://github.com/bmwshop", "followers_url": "https://api.github.com/users/bmwshop/followers", "following_url": "https://api.github.com/users/bmwshop/following{/other_user}", "gists_url": "https://api.github.com/users/bmwshop/gists{/gist_id}", "starred_url": "https://api.github.com/users/bmwshop/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/bmwshop/subscriptions", "organizations_url": "https://api.github.com/users/bmwshop/orgs", "repos_url": "https://api.github.com/users/bmwshop/repos", "events_url": "https://api.github.com/users/bmwshop/events{/privacy}", "received_events_url": "https://api.github.com/users/bmwshop/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-21T20:00:26
2023-05-03T14:54:01
2023-05-03T14:54:00
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6473", "html_url": "https://github.com/NVIDIA/NeMo/pull/6473", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6473.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6473.patch", "merged_at": "2023-05-03T14:54:00" }
# What does this PR do ? Add a one line overview of what this PR aims to accomplish. **Collection**: ASR # Changelog - Adds FC models to the catalog # Usage When loading pre-trained models, we can now specify: stt_en_fastconformer_transducer_large stt_en_fastconformer_ctc_large stt_en_fastconformer_transducer_large_ls stt_en_fastconformer_ctc_large_ls ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [X ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "bmwshop", "id": 482416, "node_id": "MDQ6VXNlcjQ4MjQxNg==", "avatar_url": "https://avatars.githubusercontent.com/u/482416?v=4", "gravatar_id": "", "url": "https://api.github.com/users/bmwshop", "html_url": "https://github.com/bmwshop", "followers_url": "https://api.github.com/users/bmwshop/followers", "following_url": "https://api.github.com/users/bmwshop/following{/other_user}", "gists_url": "https://api.github.com/users/bmwshop/gists{/gist_id}", "starred_url": "https://api.github.com/users/bmwshop/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/bmwshop/subscriptions", "organizations_url": "https://api.github.com/users/bmwshop/orgs", "repos_url": "https://api.github.com/users/bmwshop/repos", "events_url": "https://api.github.com/users/bmwshop/events{/privacy}", "received_events_url": "https://api.github.com/users/bmwshop/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6473/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6473/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6472
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6472/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6472/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6472/events
https://github.com/NVIDIA/NeMo/pull/6472
1,678,980,492
PR_kwDOC_bI7s5O4uyw
6,472
Reduce workers on NMT CI
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4840216855, "node_id": "LA_kwDOC_bI7s8AAAABIH_ZFw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/CI", "name": "CI", "color": "1D76DB", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-21T19:18:16
2023-04-21T22:17:46
2023-04-21T22:17:45
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6472", "html_url": "https://github.com/NVIDIA/NeMo/pull/6472", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6472.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6472.patch", "merged_at": "2023-04-21T22:17:45" }
# What does this PR do ? Reduce data workers on NMT CI for speedup **Collection**: NLP # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6472/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6472/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6471
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6471/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6471/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6471/events
https://github.com/NVIDIA/NeMo/issues/6471
1,678,266,294
I_kwDOC_bI7s5kCE-2
6,471
how to finetune fastpitch_finetune_adapters.py ?
{ "login": "ontheway-arch", "id": 56793829, "node_id": "MDQ6VXNlcjU2NzkzODI5", "avatar_url": "https://avatars.githubusercontent.com/u/56793829?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ontheway-arch", "html_url": "https://github.com/ontheway-arch", "followers_url": "https://api.github.com/users/ontheway-arch/followers", "following_url": "https://api.github.com/users/ontheway-arch/following{/other_user}", "gists_url": "https://api.github.com/users/ontheway-arch/gists{/gist_id}", "starred_url": "https://api.github.com/users/ontheway-arch/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ontheway-arch/subscriptions", "organizations_url": "https://api.github.com/users/ontheway-arch/orgs", "repos_url": "https://api.github.com/users/ontheway-arch/repos", "events_url": "https://api.github.com/users/ontheway-arch/events{/privacy}", "received_events_url": "https://api.github.com/users/ontheway-arch/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
null
2023-04-21T10:11:22
2023-05-30T01:56:22
2023-05-30T01:56:22
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
I try the same config with fastpitch_finetune in tutorial,but it doesn't work the code I run with: ![image](https://user-images.githubusercontent.com/56793829/233610378-0f84bbb2-09bf-41c1-a9c2-7da65a236d3e.png) ![image](https://user-images.githubusercontent.com/56793829/233610207-614f8b57-4476-4adc-aaf5-225700bb9ac4.png)
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6471/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6471/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6470
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6470/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6470/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6470/events
https://github.com/NVIDIA/NeMo/issues/6470
1,678,220,487
I_kwDOC_bI7s5kB5zH
6,470
Mac m1 arm
{ "login": "PabloSergi", "id": 106373652, "node_id": "U_kgDOBlciFA", "avatar_url": "https://avatars.githubusercontent.com/u/106373652?v=4", "gravatar_id": "", "url": "https://api.github.com/users/PabloSergi", "html_url": "https://github.com/PabloSergi", "followers_url": "https://api.github.com/users/PabloSergi/followers", "following_url": "https://api.github.com/users/PabloSergi/following{/other_user}", "gists_url": "https://api.github.com/users/PabloSergi/gists{/gist_id}", "starred_url": "https://api.github.com/users/PabloSergi/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/PabloSergi/subscriptions", "organizations_url": "https://api.github.com/users/PabloSergi/orgs", "repos_url": "https://api.github.com/users/PabloSergi/repos", "events_url": "https://api.github.com/users/PabloSergi/events{/privacy}", "received_events_url": "https://api.github.com/users/PabloSergi/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1485815557, "node_id": "MDU6TGFiZWwxNDg1ODE1NTU3", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/bug", "name": "bug", "color": "d73a4a", "default": true, "description": "Something isn't working" }, { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
null
2023-04-21T09:40:47
2023-05-30T01:56:24
2023-05-30T01:56:24
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
Hello, i cant make docker container on mac m1, I get this error: failed to copy: httpReadSeeker: failed open: failed to authorize: rpc error: code = Unknown desc = failed to fetch anonymous token: unexpected status: 401 Unauthorized What to do with it?Authorization doesnt help.
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6470/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6470/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6469
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6469/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6469/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6469/events
https://github.com/NVIDIA/NeMo/pull/6469
1,677,782,760
PR_kwDOC_bI7s5O0s_F
6,469
Manual garbage collection with an interval
{ "login": "erhoo82", "id": 15861259, "node_id": "MDQ6VXNlcjE1ODYxMjU5", "avatar_url": "https://avatars.githubusercontent.com/u/15861259?v=4", "gravatar_id": "", "url": "https://api.github.com/users/erhoo82", "html_url": "https://github.com/erhoo82", "followers_url": "https://api.github.com/users/erhoo82/followers", "following_url": "https://api.github.com/users/erhoo82/following{/other_user}", "gists_url": "https://api.github.com/users/erhoo82/gists{/gist_id}", "starred_url": "https://api.github.com/users/erhoo82/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/erhoo82/subscriptions", "organizations_url": "https://api.github.com/users/erhoo82/orgs", "repos_url": "https://api.github.com/users/erhoo82/repos", "events_url": "https://api.github.com/users/erhoo82/events{/privacy}", "received_events_url": "https://api.github.com/users/erhoo82/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-21T04:33:30
2023-04-24T22:56:49
2023-04-24T22:56:48
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6469", "html_url": "https://github.com/NVIDIA/NeMo/pull/6469", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6469.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6469.patch", "merged_at": "2023-04-24T22:56:48" }
# What does this PR do ? Set garbage collection interval manually. This helps align garbage collection execution across GPUs, which mitigates CPU overhead dramatically. Using an integer value for `gc_interval` set the garbage collection interval in global-batch steps. # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "ericharper", "id": 11999610, "node_id": "MDQ6VXNlcjExOTk5NjEw", "avatar_url": "https://avatars.githubusercontent.com/u/11999610?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ericharper", "html_url": "https://github.com/ericharper", "followers_url": "https://api.github.com/users/ericharper/followers", "following_url": "https://api.github.com/users/ericharper/following{/other_user}", "gists_url": "https://api.github.com/users/ericharper/gists{/gist_id}", "starred_url": "https://api.github.com/users/ericharper/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ericharper/subscriptions", "organizations_url": "https://api.github.com/users/ericharper/orgs", "repos_url": "https://api.github.com/users/ericharper/repos", "events_url": "https://api.github.com/users/ericharper/events{/privacy}", "received_events_url": "https://api.github.com/users/ericharper/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6469/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6469/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6468
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6468/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6468/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6468/events
https://github.com/NVIDIA/NeMo/pull/6468
1,677,540,917
PR_kwDOC_bI7s5Oz5s3
6,468
Try removing spawn from scripts
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-20T23:14:22
2023-04-21T19:18:48
2023-04-21T19:18:48
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6468", "html_url": "https://github.com/NVIDIA/NeMo/pull/6468", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6468.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6468.patch", "merged_at": null }
# What does this PR do ? Commeting out `mp.set_start_method("spawn", force=True)` from scripts and just using persistent_workers **Collection**: NLP # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6468/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6468/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6467
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6467/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6467/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6467/events
https://github.com/NVIDIA/NeMo/pull/6467
1,677,490,514
PR_kwDOC_bI7s5Ozu08
6,467
Added/updated new Conformer configs
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null }, { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-20T22:03:40
2023-04-21T21:41:39
2023-04-21T21:41:37
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6467", "html_url": "https://github.com/NVIDIA/NeMo/pull/6467", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6467.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6467.patch", "merged_at": "2023-04-21T21:41:37" }
# What does this PR do ? Added some new configurations and updated some of the older configuration files for Conformer models. # Changelog - Added configs for cache-aware fastconformer and hybrid ASR. - Added more info on batch size and precision suggestions in the configs. **PR Type**: - [X] New Feature - [ ] Bugfix - [ ] Documentation
{ "login": "VahidooX", "id": 23551647, "node_id": "MDQ6VXNlcjIzNTUxNjQ3", "avatar_url": "https://avatars.githubusercontent.com/u/23551647?v=4", "gravatar_id": "", "url": "https://api.github.com/users/VahidooX", "html_url": "https://github.com/VahidooX", "followers_url": "https://api.github.com/users/VahidooX/followers", "following_url": "https://api.github.com/users/VahidooX/following{/other_user}", "gists_url": "https://api.github.com/users/VahidooX/gists{/gist_id}", "starred_url": "https://api.github.com/users/VahidooX/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/VahidooX/subscriptions", "organizations_url": "https://api.github.com/users/VahidooX/orgs", "repos_url": "https://api.github.com/users/VahidooX/repos", "events_url": "https://api.github.com/users/VahidooX/events{/privacy}", "received_events_url": "https://api.github.com/users/VahidooX/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6467/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6467/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6466
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6466/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6466/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6466/events
https://github.com/NVIDIA/NeMo/pull/6466
1,677,416,131
PR_kwDOC_bI7s5Ozedb
6,466
Fix cache aware hybrid bugs
{ "login": "VahidooX", "id": 23551647, "node_id": "MDQ6VXNlcjIzNTUxNjQ3", "avatar_url": "https://avatars.githubusercontent.com/u/23551647?v=4", "gravatar_id": "", "url": "https://api.github.com/users/VahidooX", "html_url": "https://github.com/VahidooX", "followers_url": "https://api.github.com/users/VahidooX/followers", "following_url": "https://api.github.com/users/VahidooX/following{/other_user}", "gists_url": "https://api.github.com/users/VahidooX/gists{/gist_id}", "starred_url": "https://api.github.com/users/VahidooX/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/VahidooX/subscriptions", "organizations_url": "https://api.github.com/users/VahidooX/orgs", "repos_url": "https://api.github.com/users/VahidooX/repos", "events_url": "https://api.github.com/users/VahidooX/events{/privacy}", "received_events_url": "https://api.github.com/users/VahidooX/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-20T20:53:22
2023-04-25T01:23:45
2023-04-25T01:23:45
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6466", "html_url": "https://github.com/NVIDIA/NeMo/pull/6466", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6466.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6466.patch", "merged_at": "2023-04-25T01:23:45" }
# What does this PR do ? Fixes some bugs to support Hybrid and FastConformer variants of cache-aware streaming models. # Changelog - Fixed a bug which prevented switching between decoders for Hybrid models - Added support of Hybrid models to the cache-aware streaming inference scripts - Added the feature to switch between decoders to the cache-aware streaming simulation script - Added support of causal downsamling for dw_striding approach. # Usage Users may use the --set_decoder "rnnt" or "ctc" to change the decoder with speech_to_text_cache_aware_streaming_infer.py. They may use asr_model.change_decoding_strategy(decoder_type='ctc' or 'rnnt') to change the decoding for a Hybrid model in general. **PR Type**: - [X] New Feature - [X] Bugfix - [ ] Documentation
{ "login": "VahidooX", "id": 23551647, "node_id": "MDQ6VXNlcjIzNTUxNjQ3", "avatar_url": "https://avatars.githubusercontent.com/u/23551647?v=4", "gravatar_id": "", "url": "https://api.github.com/users/VahidooX", "html_url": "https://github.com/VahidooX", "followers_url": "https://api.github.com/users/VahidooX/followers", "following_url": "https://api.github.com/users/VahidooX/following{/other_user}", "gists_url": "https://api.github.com/users/VahidooX/gists{/gist_id}", "starred_url": "https://api.github.com/users/VahidooX/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/VahidooX/subscriptions", "organizations_url": "https://api.github.com/users/VahidooX/orgs", "repos_url": "https://api.github.com/users/VahidooX/repos", "events_url": "https://api.github.com/users/VahidooX/events{/privacy}", "received_events_url": "https://api.github.com/users/VahidooX/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6466/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6466/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6465
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6465/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6465/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6465/events
https://github.com/NVIDIA/NeMo/pull/6465
1,677,290,232
PR_kwDOC_bI7s5OzCdf
6,465
Switch to NVIDIA Megatron repo
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" }, { "id": 4840216855, "node_id": "LA_kwDOC_bI7s8AAAABIH_ZFw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/CI", "name": "CI", "color": "1D76DB", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-20T19:25:49
2023-04-22T04:44:50
2023-04-22T04:44:49
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6465", "html_url": "https://github.com/NVIDIA/NeMo/pull/6465", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6465.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6465.patch", "merged_at": "2023-04-22T04:44:49" }
# What does this PR do ? Move core lib to NVIDIA/Megatron-LM from custom fork **Collection**: NLP # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6465/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6465/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6464
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6464/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6464/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6464/events
https://github.com/NVIDIA/NeMo/pull/6464
1,677,034,280
PR_kwDOC_bI7s5OyM6q
6,464
Add Frame-VAD to ASR+VAD pipeline
{ "login": "stevehuang52", "id": 105218074, "node_id": "U_kgDOBkWAGg", "avatar_url": "https://avatars.githubusercontent.com/u/105218074?v=4", "gravatar_id": "", "url": "https://api.github.com/users/stevehuang52", "html_url": "https://github.com/stevehuang52", "followers_url": "https://api.github.com/users/stevehuang52/followers", "following_url": "https://api.github.com/users/stevehuang52/following{/other_user}", "gists_url": "https://api.github.com/users/stevehuang52/gists{/gist_id}", "starred_url": "https://api.github.com/users/stevehuang52/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/stevehuang52/subscriptions", "organizations_url": "https://api.github.com/users/stevehuang52/orgs", "repos_url": "https://api.github.com/users/stevehuang52/repos", "events_url": "https://api.github.com/users/stevehuang52/events{/privacy}", "received_events_url": "https://api.github.com/users/stevehuang52/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-20T16:17:15
2023-06-13T17:28:21
2023-06-13T17:28:20
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6464", "html_url": "https://github.com/NVIDIA/NeMo/pull/6464", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6464.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6464.patch", "merged_at": "2023-06-13T17:28:20" }
# What does this PR do ? This is the third PR for Frame-VAD. Please merge the previous two before this: https://github.com/NVIDIA/NeMo/pull/6441, https://github.com/NVIDIA/NeMo/pull/6463 This PR adds Frame-VAD to ASR+VAD pipeline, and also adds the drop-frame mode to ASR+VAD, which previously only supports masking mode. **Collection**: [ASR] # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation
{ "login": "stevehuang52", "id": 105218074, "node_id": "U_kgDOBkWAGg", "avatar_url": "https://avatars.githubusercontent.com/u/105218074?v=4", "gravatar_id": "", "url": "https://api.github.com/users/stevehuang52", "html_url": "https://github.com/stevehuang52", "followers_url": "https://api.github.com/users/stevehuang52/followers", "following_url": "https://api.github.com/users/stevehuang52/following{/other_user}", "gists_url": "https://api.github.com/users/stevehuang52/gists{/gist_id}", "starred_url": "https://api.github.com/users/stevehuang52/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/stevehuang52/subscriptions", "organizations_url": "https://api.github.com/users/stevehuang52/orgs", "repos_url": "https://api.github.com/users/stevehuang52/repos", "events_url": "https://api.github.com/users/stevehuang52/events{/privacy}", "received_events_url": "https://api.github.com/users/stevehuang52/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6464/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6464/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6463
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6463/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6463/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6463/events
https://github.com/NVIDIA/NeMo/pull/6463
1,677,016,237
PR_kwDOC_bI7s5OyJBI
6,463
Add Frame-VAD examples and utils
{ "login": "stevehuang52", "id": 105218074, "node_id": "U_kgDOBkWAGg", "avatar_url": "https://avatars.githubusercontent.com/u/105218074?v=4", "gravatar_id": "", "url": "https://api.github.com/users/stevehuang52", "html_url": "https://github.com/stevehuang52", "followers_url": "https://api.github.com/users/stevehuang52/followers", "following_url": "https://api.github.com/users/stevehuang52/following{/other_user}", "gists_url": "https://api.github.com/users/stevehuang52/gists{/gist_id}", "starred_url": "https://api.github.com/users/stevehuang52/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/stevehuang52/subscriptions", "organizations_url": "https://api.github.com/users/stevehuang52/orgs", "repos_url": "https://api.github.com/users/stevehuang52/repos", "events_url": "https://api.github.com/users/stevehuang52/events{/privacy}", "received_events_url": "https://api.github.com/users/stevehuang52/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-20T16:04:41
2023-06-01T18:55:59
2023-06-01T18:55:57
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6463", "html_url": "https://github.com/NVIDIA/NeMo/pull/6463", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6463.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6463.patch", "merged_at": "2023-06-01T18:55:57" }
# What does this PR do ? The second PR of Frame-VAD. Please merge the first PR first: https://github.com/NVIDIA/NeMo/pull/6441 **Collection**: [ASR] # Changelog - Add specific line by line info of high level changes in this PR. # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [x] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation
{ "login": "stevehuang52", "id": 105218074, "node_id": "U_kgDOBkWAGg", "avatar_url": "https://avatars.githubusercontent.com/u/105218074?v=4", "gravatar_id": "", "url": "https://api.github.com/users/stevehuang52", "html_url": "https://github.com/stevehuang52", "followers_url": "https://api.github.com/users/stevehuang52/followers", "following_url": "https://api.github.com/users/stevehuang52/following{/other_user}", "gists_url": "https://api.github.com/users/stevehuang52/gists{/gist_id}", "starred_url": "https://api.github.com/users/stevehuang52/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/stevehuang52/subscriptions", "organizations_url": "https://api.github.com/users/stevehuang52/orgs", "repos_url": "https://api.github.com/users/stevehuang52/repos", "events_url": "https://api.github.com/users/stevehuang52/events{/privacy}", "received_events_url": "https://api.github.com/users/stevehuang52/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6463/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6463/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6462
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6462/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6462/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6462/events
https://github.com/NVIDIA/NeMo/pull/6462
1,676,203,184
PR_kwDOC_bI7s5OvZVz
6,462
Support in external sample mapping for Megatron datasets
{ "login": "michalivne", "id": 7453913, "node_id": "MDQ6VXNlcjc0NTM5MTM=", "avatar_url": "https://avatars.githubusercontent.com/u/7453913?v=4", "gravatar_id": "", "url": "https://api.github.com/users/michalivne", "html_url": "https://github.com/michalivne", "followers_url": "https://api.github.com/users/michalivne/followers", "following_url": "https://api.github.com/users/michalivne/following{/other_user}", "gists_url": "https://api.github.com/users/michalivne/gists{/gist_id}", "starred_url": "https://api.github.com/users/michalivne/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/michalivne/subscriptions", "organizations_url": "https://api.github.com/users/michalivne/orgs", "repos_url": "https://api.github.com/users/michalivne/repos", "events_url": "https://api.github.com/users/michalivne/events{/privacy}", "received_events_url": "https://api.github.com/users/michalivne/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-20T07:54:15
2023-04-24T23:05:46
2023-04-24T23:05:44
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6462", "html_url": "https://github.com/NVIDIA/NeMo/pull/6462", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6462.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6462.patch", "merged_at": "2023-04-24T23:05:44" }
This PR adds support in external sample mapping (to be able to compute on the fly). # What does this PR do ? The added support does not add any new functionality, but allows providing the sample mapping externally to be able to avoid loading dataset samples. **Collection**: Megatron `dataset_utils`. # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [x] Did you write any new necessary tests? - [x] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "michalivne", "id": 7453913, "node_id": "MDQ6VXNlcjc0NTM5MTM=", "avatar_url": "https://avatars.githubusercontent.com/u/7453913?v=4", "gravatar_id": "", "url": "https://api.github.com/users/michalivne", "html_url": "https://github.com/michalivne", "followers_url": "https://api.github.com/users/michalivne/followers", "following_url": "https://api.github.com/users/michalivne/following{/other_user}", "gists_url": "https://api.github.com/users/michalivne/gists{/gist_id}", "starred_url": "https://api.github.com/users/michalivne/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/michalivne/subscriptions", "organizations_url": "https://api.github.com/users/michalivne/orgs", "repos_url": "https://api.github.com/users/michalivne/repos", "events_url": "https://api.github.com/users/michalivne/events{/privacy}", "received_events_url": "https://api.github.com/users/michalivne/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6462/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6462/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6461
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6461/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6461/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6461/events
https://github.com/NVIDIA/NeMo/pull/6461
1,676,187,058
PR_kwDOC_bI7s5OvV7b
6,461
Meagtron encoder decoder fix for empty validation outputs
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null }, { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-20T07:42:00
2023-04-20T19:20:50
2023-04-20T19:20:49
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6461", "html_url": "https://github.com/NVIDIA/NeMo/pull/6461", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6461.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6461.patch", "merged_at": "2023-04-20T19:20:49" }
# What does this PR do ? This PR fixes a bug where `MegatronLMEncoderDecoderModel.validation_epoch_end` might get empty outputs. **Collection**: nlp # Changelog - nemo/collections/nlp/models/language_modeling/megatron_lm_encoder_decoder_model.py:validation_epoch_end # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [x] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "michalivne", "id": 7453913, "node_id": "MDQ6VXNlcjc0NTM5MTM=", "avatar_url": "https://avatars.githubusercontent.com/u/7453913?v=4", "gravatar_id": "", "url": "https://api.github.com/users/michalivne", "html_url": "https://github.com/michalivne", "followers_url": "https://api.github.com/users/michalivne/followers", "following_url": "https://api.github.com/users/michalivne/following{/other_user}", "gists_url": "https://api.github.com/users/michalivne/gists{/gist_id}", "starred_url": "https://api.github.com/users/michalivne/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/michalivne/subscriptions", "organizations_url": "https://api.github.com/users/michalivne/orgs", "repos_url": "https://api.github.com/users/michalivne/repos", "events_url": "https://api.github.com/users/michalivne/events{/privacy}", "received_events_url": "https://api.github.com/users/michalivne/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6461/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6461/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6459
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6459/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6459/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6459/events
https://github.com/NVIDIA/NeMo/pull/6459
1,675,773,314
PR_kwDOC_bI7s5Ot_Ii
6,459
Meagtron encoder decoder fix for empty validation outputs
{ "login": "michalivne", "id": 7453913, "node_id": "MDQ6VXNlcjc0NTM5MTM=", "avatar_url": "https://avatars.githubusercontent.com/u/7453913?v=4", "gravatar_id": "", "url": "https://api.github.com/users/michalivne", "html_url": "https://github.com/michalivne", "followers_url": "https://api.github.com/users/michalivne/followers", "following_url": "https://api.github.com/users/michalivne/following{/other_user}", "gists_url": "https://api.github.com/users/michalivne/gists{/gist_id}", "starred_url": "https://api.github.com/users/michalivne/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/michalivne/subscriptions", "organizations_url": "https://api.github.com/users/michalivne/orgs", "repos_url": "https://api.github.com/users/michalivne/repos", "events_url": "https://api.github.com/users/michalivne/events{/privacy}", "received_events_url": "https://api.github.com/users/michalivne/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-19T23:37:19
2023-04-20T14:44:29
2023-04-20T07:41:36
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6459", "html_url": "https://github.com/NVIDIA/NeMo/pull/6459", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6459.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6459.patch", "merged_at": "2023-04-20T07:41:36" }
# What does this PR do ? This PR fixes a bug where `MegatronLMEncoderDecoderModel.validation_epoch_end` might get empty outputs. **Collection**: nlp # Changelog - nemo/collections/nlp/models/language_modeling/megatron_lm_encoder_decoder_model.py:validation_epoch_end # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [x] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "michalivne", "id": 7453913, "node_id": "MDQ6VXNlcjc0NTM5MTM=", "avatar_url": "https://avatars.githubusercontent.com/u/7453913?v=4", "gravatar_id": "", "url": "https://api.github.com/users/michalivne", "html_url": "https://github.com/michalivne", "followers_url": "https://api.github.com/users/michalivne/followers", "following_url": "https://api.github.com/users/michalivne/following{/other_user}", "gists_url": "https://api.github.com/users/michalivne/gists{/gist_id}", "starred_url": "https://api.github.com/users/michalivne/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/michalivne/subscriptions", "organizations_url": "https://api.github.com/users/michalivne/orgs", "repos_url": "https://api.github.com/users/michalivne/repos", "events_url": "https://api.github.com/users/michalivne/events{/privacy}", "received_events_url": "https://api.github.com/users/michalivne/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6459/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6459/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6458
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6458/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6458/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6458/events
https://github.com/NVIDIA/NeMo/pull/6458
1,675,767,048
PR_kwDOC_bI7s5Ot90A
6,458
Enable ONNX export of 5B GPT trained with TE FP8 modules
{ "login": "asfiyab-nvidia", "id": 117682710, "node_id": "U_kgDOBwOyFg", "avatar_url": "https://avatars.githubusercontent.com/u/117682710?v=4", "gravatar_id": "", "url": "https://api.github.com/users/asfiyab-nvidia", "html_url": "https://github.com/asfiyab-nvidia", "followers_url": "https://api.github.com/users/asfiyab-nvidia/followers", "following_url": "https://api.github.com/users/asfiyab-nvidia/following{/other_user}", "gists_url": "https://api.github.com/users/asfiyab-nvidia/gists{/gist_id}", "starred_url": "https://api.github.com/users/asfiyab-nvidia/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/asfiyab-nvidia/subscriptions", "organizations_url": "https://api.github.com/users/asfiyab-nvidia/orgs", "repos_url": "https://api.github.com/users/asfiyab-nvidia/repos", "events_url": "https://api.github.com/users/asfiyab-nvidia/events{/privacy}", "received_events_url": "https://api.github.com/users/asfiyab-nvidia/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-19T23:26:10
2023-06-01T22:02:29
2023-05-22T17:54:21
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6458", "html_url": "https://github.com/NVIDIA/NeMo/pull/6458", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6458.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6458.patch", "merged_at": "2023-05-22T17:54:21" }
# What does this PR do ? Adds export functionality for GPT model trained with FP8 enabled **Collection**: [NLP] # Changelog - Add export script - Add export config - Update export_utils to enable support for this model - Bugfix: Typecast precision check for 16 and 32 # Usage ```bash python3 examples/nlp/language_modeling/megatron_gpt_export.py gpt_model_file=5b_fp8_tp1.nemo onnx_model_file=5b_fp8_tp1.onnx ``` # Before your PR is "Ready for review" **Pre checks**: - [X] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [X] Did you add or update any necessary documentation? **PR Type**: - [ ] New Feature - [ ] Bugfix - [X] Documentation
{ "login": "Davood-M", "id": 3964285, "node_id": "MDQ6VXNlcjM5NjQyODU=", "avatar_url": "https://avatars.githubusercontent.com/u/3964285?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Davood-M", "html_url": "https://github.com/Davood-M", "followers_url": "https://api.github.com/users/Davood-M/followers", "following_url": "https://api.github.com/users/Davood-M/following{/other_user}", "gists_url": "https://api.github.com/users/Davood-M/gists{/gist_id}", "starred_url": "https://api.github.com/users/Davood-M/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Davood-M/subscriptions", "organizations_url": "https://api.github.com/users/Davood-M/orgs", "repos_url": "https://api.github.com/users/Davood-M/repos", "events_url": "https://api.github.com/users/Davood-M/events{/privacy}", "received_events_url": "https://api.github.com/users/Davood-M/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6458/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6458/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6457
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6457/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6457/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6457/events
https://github.com/NVIDIA/NeMo/issues/6457
1,675,693,176
I_kwDOC_bI7s5j4Qx4
6,457
Error following the Megatron GPT pre-training example
{ "login": "yupei-ms", "id": 113569503, "node_id": "U_kgDOBsTu3w", "avatar_url": "https://avatars.githubusercontent.com/u/113569503?v=4", "gravatar_id": "", "url": "https://api.github.com/users/yupei-ms", "html_url": "https://github.com/yupei-ms", "followers_url": "https://api.github.com/users/yupei-ms/followers", "following_url": "https://api.github.com/users/yupei-ms/following{/other_user}", "gists_url": "https://api.github.com/users/yupei-ms/gists{/gist_id}", "starred_url": "https://api.github.com/users/yupei-ms/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yupei-ms/subscriptions", "organizations_url": "https://api.github.com/users/yupei-ms/orgs", "repos_url": "https://api.github.com/users/yupei-ms/repos", "events_url": "https://api.github.com/users/yupei-ms/events{/privacy}", "received_events_url": "https://api.github.com/users/yupei-ms/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1485815557, "node_id": "MDU6TGFiZWwxNDg1ODE1NTU3", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/bug", "name": "bug", "color": "d73a4a", "default": true, "description": "Something isn't working" }, { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
null
2023-04-19T21:49:34
2023-05-27T01:51:41
2023-05-27T01:51:41
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Describe the bug** Following the example from here: https://docs.nvidia.com/deeplearning/nemo/user-guide/docs/en/stable/nlp/nemo_megatron/gpt/gpt_training.html I downloaded and processed the data to run GPT pretraining. But I encountered the following error. I am using the latest nemo docker container (docker pull nvcr.io/nvidia/nemo:23.01) and did everything from within the container. ``` File "/usr/local/lib/python3.8/dist-packages/apex/transformer/pipeline_parallel/schedules/fwd_bwd_no_pipelining.py", line 80, in forward_backward_no_pipelining cur_micro_batch = get_kth_microbatch(batch, i) File "/usr/local/lib/python3.8/dist-packages/apex/transformer/pipeline_parallel/utils.py", line 135, in get_kth_microbatch size = x.size(0) AttributeError: 'dict' object has no attribute 'size' ``` **Steps/Code to reproduce bug** I followed the steps outlined in the above link, trying both GPT2 or SPM options. **Expected behavior** training on a single GPU **Environment overview (please complete the following information)** docker pull nvcr.io/nvidia/nemo:23.01 **Additional context** * Files: root@bd75e03a74c9:/workspace/data# ls enwiki-latest-pages-articles.xml.bz2 hfbpe_gpt_training_data_text_document_test_indexmap_9648ns_1024sl_1234s_doc_idx.npy gpt2-merges.txt hfbpe_gpt_training_data_text_document_test_indexmap_9648ns_1024sl_1234s_sample_idx.npy gpt2-vocab.json hfbpe_gpt_training_data_text_document_test_indexmap_9648ns_1024sl_1234s_shuffle_idx.npy gpt_training_data_text_document.bin hfbpe_gpt_training_data_text_document_train_indexmap_57888000ns_1024sl_1234s_doc_idx.npy gpt_training_data_text_document.idx hfbpe_gpt_training_data_text_document_train_indexmap_57888000ns_1024sl_1234s_sample_idx.npy gpt_training_data_text_document_test_indexmap_9648ns_1024sl_1234s_doc_idx.npy hfbpe_gpt_training_data_text_document_train_indexmap_57888000ns_1024sl_1234s_shuffle_idx.npy gpt_training_data_text_document_test_indexmap_9648ns_1024sl_1234s_sample_idx.npy hfbpe_gpt_training_data_text_document_valid_indexmap_0ns_1024sl_1234s_doc_idx.npy gpt_training_data_text_document_test_indexmap_9648ns_1024sl_1234s_shuffle_idx.npy hfbpe_gpt_training_data_text_document_valid_indexmap_0ns_1024sl_1234s_sample_idx.npy gpt_training_data_text_document_train_indexmap_57888000ns_1024sl_1234s_doc_idx.npy hfbpe_gpt_training_data_text_document_valid_indexmap_0ns_1024sl_1234s_shuffle_idx.npy gpt_training_data_text_document_train_indexmap_57888000ns_1024sl_1234s_sample_idx.npy hfbpe_gpt_training_data_text_document_valid_indexmap_9657648ns_1024sl_1234s_doc_idx.npy gpt_training_data_text_document_train_indexmap_57888000ns_1024sl_1234s_shuffle_idx.npy hfbpe_gpt_training_data_text_document_valid_indexmap_9657648ns_1024sl_1234s_sample_idx.npy gpt_training_data_text_document_valid_indexmap_9657648ns_1024sl_1234s_doc_idx.npy hfbpe_gpt_training_data_text_document_valid_indexmap_9657648ns_1024sl_1234s_shuffle_idx.npy gpt_training_data_text_document_valid_indexmap_9657648ns_1024sl_1234s_sample_idx.npy nemo_experiments gpt_training_data_text_document_valid_indexmap_9657648ns_1024sl_1234s_shuffle_idx.npy sentencepiece hfbpe_gpt_training_data_text_document.bin spm_32k_wiki.model hfbpe_gpt_training_data_text_document.idx spm_32k_wiki.vocab hfbpe_gpt_training_data_text_document_test_indexmap_193ns_1024sl_1234s_doc_idx.npy text hfbpe_gpt_training_data_text_document_test_indexmap_193ns_1024sl_1234s_sample_idx.npy text_for_tokenizer.txt hfbpe_gpt_training_data_text_document_test_indexmap_193ns_1024sl_1234s_shuffle_idx.npy train_data.jsonl * Detailed command line and outputlog: Epoch 0: 0%| | 0/351750 [00:00<?, ?it/s][NeMo W 2023-04-19 21:40:25 experimental:27] Module <class 'nemo.collections.asr.modules.audio_modules.SpectrogramToMultichannelFeatures'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo W 2023-04-19 21:40:27 experimental:27] Module <class 'nemo.collections.nlp.data.language_modeling.megatron.megatron_batch_samplers.MegatronPretrainingRandomBatchSampler'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo W 2023-04-19 21:40:27 experimental:27] Module <class 'nemo.collections.nlp.models.text_normalization_as_tagging.thutmose_tagger.ThutmoseTaggerModel'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo I 2023-04-19 21:40:27 indexed_dataset:454] reading sizes... [NeMo I 2023-04-19 21:40:27 indexed_dataset:456] reading pointers... [NeMo I 2023-04-19 21:40:27 indexed_dataset:460] reading document index... [NeMo I 2023-04-19 21:40:27 indexed_dataset:513] creating numpy buffer of mmap... [NeMo I 2023-04-19 21:40:27 indexed_dataset:515] creating memory view of numpy buffer... [NeMo W 2023-04-19 21:40:33 experimental:27] Module <class 'nemo.collections.asr.modules.audio_modules.SpectrogramToMultichannelFeatures'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo W 2023-04-19 21:40:35 experimental:27] Module <class 'nemo.collections.nlp.data.language_modeling.megatron.megatron_batch_samplers.MegatronPretrainingRandomBatchSampler'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo W 2023-04-19 21:40:35 experimental:27] Module <class 'nemo.collections.nlp.models.text_normalization_as_tagging.thutmose_tagger.ThutmoseTaggerModel'> is experimental, not ready for production and is not fully supported. Use at your own risk. [NeMo I 2023-04-19 21:40:35 indexed_dataset:454] reading sizes... [NeMo I 2023-04-19 21:40:35 indexed_dataset:456] reading pointers... [NeMo I 2023-04-19 21:40:35 indexed_dataset:460] reading document index... [NeMo I 2023-04-19 21:40:35 indexed_dataset:513] creating numpy buffer of mmap... [NeMo I 2023-04-19 21:40:35 indexed_dataset:515] creating memory view of numpy buffer... Error executing job with overrides: ['trainer.devices=1', 'trainer.num_nodes=1', 'trainer.max_epochs=null', 'trainer.max_steps=300000', 'trainer.val_check_interval=300', 'trainer.log_every_n_steps=50', 'trainer.limit_val_batches=50', 'trainer.limit_test_batches=50', 'trainer.accumulate_grad_batches=1', 'trainer.precision=16', 'model.micro_batch_size=6', 'model.global_batch_size=192', 'model.tensor_model_parallel_size=1', 'model.pipeline_model_parallel_size=1', 'model.max_position_embeddings=1024', 'model.encoder_seq_length=1024', 'model.hidden_size=768', 'model.ffn_hidden_size=3072', 'model.num_layers=12', 'model.num_attention_heads=12', 'model.init_method_std=0.021', 'model.hidden_dropout=0.1', 'model.layernorm_epsilon=1e-5', 'model.tokenizer.vocab_file=gpt2-vocab.json', 'model.tokenizer.merge_file=gpt2-merges.txt', 'model.data.data_prefix=[1.0,hfbpe_gpt_training_data_text_document]', 'model.data.num_workers=2', 'model.data.seq_length=1024', "model.data.splits_string='980,10,10'", 'model.optim.name=fused_adam', 'model.optim.lr=6e-4', 'model.optim.betas=[0.9,0.95]', 'model.optim.weight_decay=0.1', 'model.optim.sched.name=CosineAnnealing', 'model.optim.sched.warmup_steps=750', 'model.optim.sched.constant_steps=80000', 'model.optim.sched.min_lr=6e-5', 'exp_manager.resume_if_exists=True', 'exp_manager.resume_ignore_no_checkpoint=True', 'exp_manager.create_checkpoint_callback=True', 'exp_manager.checkpoint_callback_params.monitor=val_loss', 'exp_manager.checkpoint_callback_params.save_top_k=3', 'exp_manager.checkpoint_callback_params.mode=min', 'exp_manager.checkpoint_callback_params.always_save_nemo=False'] Traceback (most recent call last): File "/workspace/nemo/examples/nlp/language_modeling/megatron_gpt_pretraining.py", line 86, in main trainer.fit(model) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/trainer/trainer.py", line 608, in fit call._call_and_handle_interrupt( File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/trainer/call.py", line 36, in _call_and_handle_interrupt return trainer.strategy.launcher.launch(trainer_fn, *args, trainer=trainer, **kwargs) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/strategies/launchers/subprocess_script.py", line 88, in launch return function(*args, **kwargs) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/trainer/trainer.py", line 650, in _fit_impl self._run(model, ckpt_path=self.ckpt_path) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/trainer/trainer.py", line 1103, in _run results = self._run_stage() File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/trainer/trainer.py", line 1182, in _run_stage self._run_train() File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/trainer/trainer.py", line 1205, in _run_train self.fit_loop.run() File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/loops/loop.py", line 199, in run self.advance(*args, **kwargs) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/loops/fit_loop.py", line 267, in advance self._outputs = self.epoch_loop.run(self._data_fetcher) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/loops/loop.py", line 199, in run self.advance(*args, **kwargs) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/loops/epoch/training_epoch_loop.py", line 213, in advance batch_output = self.batch_loop.run(kwargs) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/loops/loop.py", line 199, in run self.advance(*args, **kwargs) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/loops/batch/training_batch_loop.py", line 88, in advance outputs = self.optimizer_loop.run(optimizers, kwargs) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/loops/loop.py", line 199, in run self.advance(*args, **kwargs) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/loops/optimization/optimizer_loop.py", line 202, in advance result = self._run_optimization(kwargs, self._optimizers[self.optim_progress.optimizer_position]) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/loops/optimization/optimizer_loop.py", line 249, in _run_optimization self._optimizer_step(optimizer, opt_idx, kwargs.get("batch_idx", 0), closure) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/loops/optimization/optimizer_loop.py", line 370, in _optimizer_step self.trainer._call_lightning_module_hook( File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/trainer/trainer.py", line 1347, in _call_lightning_module_hook output = fn(*args, **kwargs) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/core/module.py", line 1744, in optimizer_step optimizer.step(closure=optimizer_closure) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/core/optimizer.py", line 169, in step step_output = self._strategy.optimizer_step(self._optimizer, self._optimizer_idx, closure, **kwargs) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/strategies/ddp.py", line 280, in optimizer_step optimizer_output = super().optimizer_step(optimizer, opt_idx, closure, model, **kwargs) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/strategies/strategy.py", line 234, in optimizer_step return self.precision_plugin.optimizer_step( File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/plugins/precision/native_amp.py", line 75, in optimizer_step closure_result = closure() File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/loops/optimization/optimizer_loop.py", line 149, in __call__ self._result = self.closure(*args, **kwargs) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/loops/optimization/optimizer_loop.py", line 135, in closure step_output = self._step_fn() File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/loops/optimization/optimizer_loop.py", line 419, in _training_step training_step_output = self.trainer._call_strategy_hook("training_step", *kwargs.values()) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/trainer/trainer.py", line 1485, in _call_strategy_hook output = fn(*args, **kwargs) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/strategies/ddp.py", line 351, in training_step return self.model(*args, **kwargs) File "/usr/local/lib/python3.8/dist-packages/torch/nn/modules/module.py", line 1480, in _call_impl return forward_call(*args, **kwargs) File "/usr/local/lib/python3.8/dist-packages/torch/nn/parallel/distributed.py", line 1098, in forward output = self._run_ddp_forward(*inputs, **kwargs) File "/usr/local/lib/python3.8/dist-packages/torch/nn/parallel/distributed.py", line 1054, in _run_ddp_forward return module_to_run(*inputs, **kwargs) File "/usr/local/lib/python3.8/dist-packages/torch/nn/modules/module.py", line 1480, in _call_impl return forward_call(*args, **kwargs) File "/usr/local/lib/python3.8/dist-packages/pytorch_lightning/overrides/base.py", line 98, in forward output = self._forward_module.training_step(*inputs, **kwargs) File "/usr/local/lib/python3.8/dist-packages/nemo/utils/model_utils.py", line 362, in wrap_training_step output_dict = wrapped(*args, **kwargs) File "/usr/local/lib/python3.8/dist-packages/nemo/collections/nlp/models/language_modeling/megatron_gpt_model.py", line 367, in training_step losses_reduced_per_micro_batch = fwd_bwd_function( File "/usr/local/lib/python3.8/dist-packages/apex/transformer/pipeline_parallel/schedules/fwd_bwd_no_pipelining.py", line 80, in forward_backward_no_pipelining cur_micro_batch = get_kth_microbatch(batch, i) File "/usr/local/lib/python3.8/dist-packages/apex/transformer/pipeline_parallel/utils.py", line 135, in get_kth_microbatch size = x.size(0) AttributeError: 'dict' object has no attribute 'size' Set the environment variable HYDRA_FULL_ERROR=1 for a complete stack trace. * GPU is H100.
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6457/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6457/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6456
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6456/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6456/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6456/events
https://github.com/NVIDIA/NeMo/pull/6456
1,675,633,126
PR_kwDOC_bI7s5Otgfa
6,456
Fix an invalid link in get_data.py of ljspeech
{ "login": "pythinker", "id": 29832479, "node_id": "MDQ6VXNlcjI5ODMyNDc5", "avatar_url": "https://avatars.githubusercontent.com/u/29832479?v=4", "gravatar_id": "", "url": "https://api.github.com/users/pythinker", "html_url": "https://github.com/pythinker", "followers_url": "https://api.github.com/users/pythinker/followers", "following_url": "https://api.github.com/users/pythinker/following{/other_user}", "gists_url": "https://api.github.com/users/pythinker/gists{/gist_id}", "starred_url": "https://api.github.com/users/pythinker/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/pythinker/subscriptions", "organizations_url": "https://api.github.com/users/pythinker/orgs", "repos_url": "https://api.github.com/users/pythinker/repos", "events_url": "https://api.github.com/users/pythinker/events{/privacy}", "received_events_url": "https://api.github.com/users/pythinker/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
null
[]
null
null
2023-04-19T21:04:49
2023-04-24T23:23:32
2023-04-24T23:23:17
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6456", "html_url": "https://github.com/NVIDIA/NeMo/pull/6456", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6456.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6456.patch", "merged_at": "2023-04-24T23:23:16" }
# What does this PR do ? It fixes an invalid link in get_data.py of ljspeech. Usage of the link in line 63 leads to downloading a html file not a tsv file, so we need to change it to a raw link. **Collection**: [TTS] **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation
{ "login": "rlangman", "id": 9942053, "node_id": "MDQ6VXNlcjk5NDIwNTM=", "avatar_url": "https://avatars.githubusercontent.com/u/9942053?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rlangman", "html_url": "https://github.com/rlangman", "followers_url": "https://api.github.com/users/rlangman/followers", "following_url": "https://api.github.com/users/rlangman/following{/other_user}", "gists_url": "https://api.github.com/users/rlangman/gists{/gist_id}", "starred_url": "https://api.github.com/users/rlangman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rlangman/subscriptions", "organizations_url": "https://api.github.com/users/rlangman/orgs", "repos_url": "https://api.github.com/users/rlangman/repos", "events_url": "https://api.github.com/users/rlangman/events{/privacy}", "received_events_url": "https://api.github.com/users/rlangman/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6456/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6456/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6455
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6455/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6455/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6455/events
https://github.com/NVIDIA/NeMo/pull/6455
1,675,605,919
PR_kwDOC_bI7s5OtaY1
6,455
Fix an invalid link in get_data.py of ljspeech
{ "login": "pythinker", "id": 29832479, "node_id": "MDQ6VXNlcjI5ODMyNDc5", "avatar_url": "https://avatars.githubusercontent.com/u/29832479?v=4", "gravatar_id": "", "url": "https://api.github.com/users/pythinker", "html_url": "https://github.com/pythinker", "followers_url": "https://api.github.com/users/pythinker/followers", "following_url": "https://api.github.com/users/pythinker/following{/other_user}", "gists_url": "https://api.github.com/users/pythinker/gists{/gist_id}", "starred_url": "https://api.github.com/users/pythinker/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/pythinker/subscriptions", "organizations_url": "https://api.github.com/users/pythinker/orgs", "repos_url": "https://api.github.com/users/pythinker/repos", "events_url": "https://api.github.com/users/pythinker/events{/privacy}", "received_events_url": "https://api.github.com/users/pythinker/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4418253970, "node_id": "LA_kwDOC_bI7s8AAAABB1k0kg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/TTS", "name": "TTS", "color": "49AF28", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-19T20:46:38
2023-04-19T20:58:25
2023-04-19T20:48:35
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6455", "html_url": "https://github.com/NVIDIA/NeMo/pull/6455", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6455.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6455.patch", "merged_at": null }
# What does this PR do ? It fixes an invalid link in get_data.py of ljspeech. Usage of the link in line 63 leads to downloading a html file not a tsv file, so we need to change it to a raw link. **Collection**: [TTS] **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation
{ "login": "pythinker", "id": 29832479, "node_id": "MDQ6VXNlcjI5ODMyNDc5", "avatar_url": "https://avatars.githubusercontent.com/u/29832479?v=4", "gravatar_id": "", "url": "https://api.github.com/users/pythinker", "html_url": "https://github.com/pythinker", "followers_url": "https://api.github.com/users/pythinker/followers", "following_url": "https://api.github.com/users/pythinker/following{/other_user}", "gists_url": "https://api.github.com/users/pythinker/gists{/gist_id}", "starred_url": "https://api.github.com/users/pythinker/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/pythinker/subscriptions", "organizations_url": "https://api.github.com/users/pythinker/orgs", "repos_url": "https://api.github.com/users/pythinker/repos", "events_url": "https://api.github.com/users/pythinker/events{/privacy}", "received_events_url": "https://api.github.com/users/pythinker/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6455/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6455/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6454
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6454/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6454/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6454/events
https://github.com/NVIDIA/NeMo/pull/6454
1,675,476,085
PR_kwDOC_bI7s5Os-C-
6,454
BERT pre-training mp fork to spawn
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null }, { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-19T19:15:30
2023-04-22T00:09:27
2023-04-22T00:09:26
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6454", "html_url": "https://github.com/NVIDIA/NeMo/pull/6454", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6454.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6454.patch", "merged_at": "2023-04-22T00:09:26" }
# What does this PR do ? Uses spawn for mp for BERT pre-training **Collection**: NLP # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6454/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6454/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6453
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6453/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6453/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6453/events
https://github.com/NVIDIA/NeMo/pull/6453
1,675,234,026
PR_kwDOC_bI7s5OsJ6u
6,453
fix to set model in the eval mode during validation with virtual pipelining
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null }, { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null }, { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-19T16:21:10
2023-05-17T21:37:52
2023-05-09T23:14:34
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6453", "html_url": "https://github.com/NVIDIA/NeMo/pull/6453", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6453.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6453.patch", "merged_at": null }
…lining # What does this PR do ? Add a one line overview of what this PR aims to accomplish. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "ericharper", "id": 11999610, "node_id": "MDQ6VXNlcjExOTk5NjEw", "avatar_url": "https://avatars.githubusercontent.com/u/11999610?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ericharper", "html_url": "https://github.com/ericharper", "followers_url": "https://api.github.com/users/ericharper/followers", "following_url": "https://api.github.com/users/ericharper/following{/other_user}", "gists_url": "https://api.github.com/users/ericharper/gists{/gist_id}", "starred_url": "https://api.github.com/users/ericharper/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ericharper/subscriptions", "organizations_url": "https://api.github.com/users/ericharper/orgs", "repos_url": "https://api.github.com/users/ericharper/repos", "events_url": "https://api.github.com/users/ericharper/events{/privacy}", "received_events_url": "https://api.github.com/users/ericharper/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6453/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6453/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6452
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6452/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6452/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6452/events
https://github.com/NVIDIA/NeMo/pull/6452
1,674,167,063
PR_kwDOC_bI7s5OojnQ
6,452
Cache and reuse inputs when no reset
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null }, { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null }, { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-19T04:51:18
2023-05-07T22:38:15
2023-05-07T22:38:14
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6452", "html_url": "https://github.com/NVIDIA/NeMo/pull/6452", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6452.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6452.patch", "merged_at": "2023-05-07T22:38:14" }
# What does this PR do ? Cache inputs (attention mask, loss mask, and position ids) and reuse. This mitigates CPU-side overhead. # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "ericharper", "id": 11999610, "node_id": "MDQ6VXNlcjExOTk5NjEw", "avatar_url": "https://avatars.githubusercontent.com/u/11999610?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ericharper", "html_url": "https://github.com/ericharper", "followers_url": "https://api.github.com/users/ericharper/followers", "following_url": "https://api.github.com/users/ericharper/following{/other_user}", "gists_url": "https://api.github.com/users/ericharper/gists{/gist_id}", "starred_url": "https://api.github.com/users/ericharper/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ericharper/subscriptions", "organizations_url": "https://api.github.com/users/ericharper/orgs", "repos_url": "https://api.github.com/users/ericharper/repos", "events_url": "https://api.github.com/users/ericharper/events{/privacy}", "received_events_url": "https://api.github.com/users/ericharper/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6452/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6452/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6451
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6451/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6451/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6451/events
https://github.com/NVIDIA/NeMo/pull/6451
1,674,094,235
PR_kwDOC_bI7s5OoUaa
6,451
Support Swiglu in TP PP Conversion
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null }, { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-19T02:59:32
2023-04-19T03:07:33
2023-04-19T03:07:32
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6451", "html_url": "https://github.com/NVIDIA/NeMo/pull/6451", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6451.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6451.patch", "merged_at": "2023-04-19T03:07:32" }
# What does this PR do ? Add support for swiglu in weight conversion script **Collection**: [NLP] # Changelog - Update TP PP weight conversion logic with swiglu config # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6451/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6451/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6450
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6450/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6450/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6450/events
https://github.com/NVIDIA/NeMo/pull/6450
1,674,058,015
PR_kwDOC_bI7s5OoM5f
6,450
Fix replace_bos_with_pad not found
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null }, { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-19T02:02:42
2023-04-22T00:09:40
2023-04-22T00:09:39
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6450", "html_url": "https://github.com/NVIDIA/NeMo/pull/6450", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6450.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6450.patch", "merged_at": "2023-04-22T00:09:39" }
# What does this PR do ? minor fix for replace_bos_with_pad not found error in CI **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6450/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6450/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6449
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6449/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6449/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6449/events
https://github.com/NVIDIA/NeMo/pull/6449
1,674,030,039
PR_kwDOC_bI7s5OoHKG
6,449
fix to set model in the eval mode during validation with virtual pipelining
{ "login": "anmolgupt", "id": 14880251, "node_id": "MDQ6VXNlcjE0ODgwMjUx", "avatar_url": "https://avatars.githubusercontent.com/u/14880251?v=4", "gravatar_id": "", "url": "https://api.github.com/users/anmolgupt", "html_url": "https://github.com/anmolgupt", "followers_url": "https://api.github.com/users/anmolgupt/followers", "following_url": "https://api.github.com/users/anmolgupt/following{/other_user}", "gists_url": "https://api.github.com/users/anmolgupt/gists{/gist_id}", "starred_url": "https://api.github.com/users/anmolgupt/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/anmolgupt/subscriptions", "organizations_url": "https://api.github.com/users/anmolgupt/orgs", "repos_url": "https://api.github.com/users/anmolgupt/repos", "events_url": "https://api.github.com/users/anmolgupt/events{/privacy}", "received_events_url": "https://api.github.com/users/anmolgupt/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-19T01:18:34
2023-04-19T16:20:44
2023-04-19T16:20:44
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6449", "html_url": "https://github.com/NVIDIA/NeMo/pull/6449", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6449.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6449.patch", "merged_at": "2023-04-19T16:20:44" }
…lining # What does this PR do ? Add a one line overview of what this PR aims to accomplish. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "ericharper", "id": 11999610, "node_id": "MDQ6VXNlcjExOTk5NjEw", "avatar_url": "https://avatars.githubusercontent.com/u/11999610?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ericharper", "html_url": "https://github.com/ericharper", "followers_url": "https://api.github.com/users/ericharper/followers", "following_url": "https://api.github.com/users/ericharper/following{/other_user}", "gists_url": "https://api.github.com/users/ericharper/gists{/gist_id}", "starred_url": "https://api.github.com/users/ericharper/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ericharper/subscriptions", "organizations_url": "https://api.github.com/users/ericharper/orgs", "repos_url": "https://api.github.com/users/ericharper/repos", "events_url": "https://api.github.com/users/ericharper/events{/privacy}", "received_events_url": "https://api.github.com/users/ericharper/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6449/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6449/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6448
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6448/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6448/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6448/events
https://github.com/NVIDIA/NeMo/pull/6448
1,673,989,160
PR_kwDOC_bI7s5On_Gc
6,448
Code-Switching dataset creation - upgrading to aggregate tokenizer manifest format
{ "login": "KunalDhawan", "id": 15515031, "node_id": "MDQ6VXNlcjE1NTE1MDMx", "avatar_url": "https://avatars.githubusercontent.com/u/15515031?v=4", "gravatar_id": "", "url": "https://api.github.com/users/KunalDhawan", "html_url": "https://github.com/KunalDhawan", "followers_url": "https://api.github.com/users/KunalDhawan/followers", "following_url": "https://api.github.com/users/KunalDhawan/following{/other_user}", "gists_url": "https://api.github.com/users/KunalDhawan/gists{/gist_id}", "starred_url": "https://api.github.com/users/KunalDhawan/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/KunalDhawan/subscriptions", "organizations_url": "https://api.github.com/users/KunalDhawan/orgs", "repos_url": "https://api.github.com/users/KunalDhawan/repos", "events_url": "https://api.github.com/users/KunalDhawan/events{/privacy}", "received_events_url": "https://api.github.com/users/KunalDhawan/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
null
[]
null
null
2023-04-19T00:19:11
2023-04-21T19:03:09
2023-04-21T19:03:09
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6448", "html_url": "https://github.com/NVIDIA/NeMo/pull/6448", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6448.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6448.patch", "merged_at": "2023-04-21T19:03:09" }
# What does this PR do ? Added functionality to create synthetic code-switching (CS) audio data and manifest in the multi-sample lid format. Added flag (--is_lid_manifest) to choose between standard flat text format and the multi-sample lid format, to ensure backward compatibility. **Collection**: ASR # Changelog - in scripts/speech_recognition/code_switching/code_switching_audio_data_creation.py, - added flag '--is_lid_manifest' which default to True - modified the 'create_cs_data' function to now create the text field in the format “text”: [{“str”:“esta muestra ” “lang”:”es”},{“str”:“was generated synthetically”: “lang”:”en”}] - updated the README to add the new functionality # Usage 1. Create the (intermediate) manifest file using `code_switching_manifest_creation.py`. It's usage is as follows: `python code_switching_manifest_creation.py --manifest_language1 <absolute path of Language 1's manifest file> --manifest_language2 <absolute path of Language 2's manifest file> --manifest_save_path <absolute path to save the created manifest> --id_language1 <language code for language 1 (e.g. en)> --id_language2 <language code for language 2 (e.g. es)> --max_sample_duration_sec <maximum duration of generated sample in seconds> --min_sample_duration_sec <maximum duration of generated sample in seconds> --dataset_size_required_hrs <size of generated synthetic dataset required in hrs>` 2. Create the synthetic audio data and the corresponding manifest file using `code_switching_audio_data_creation.py` It's usage is as follows: `python code_switching_audio_data_creation.py --manifest_path <absolute path to intermediate CS manifest generated in step 1> --audio_save_folder_path <absolute path to directory where you want to save the synthesized audios> --manifest_save_path <absolute path to save the created manifest> --audio_normalized_amplitude <scaled normalized amplitude desired> --cs_data_sampling_rate <desired sampling rate for generated audios> --sample_beginning_pause_msec <pause to be added to the beginning of the generated sample in milli seconds> --sample_joining_pause_msec <pause to be added between segments while joining, in milli seconds> --sample_end_pause_msec <pause to be added to the end of the generated sample in milli seconds> --is_lid_manifest <boolean to create manifest in the multi-sample lid format for the text field, true by default> --workers <number of worker processes>` # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [x] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas.
{ "login": "KunalDhawan", "id": 15515031, "node_id": "MDQ6VXNlcjE1NTE1MDMx", "avatar_url": "https://avatars.githubusercontent.com/u/15515031?v=4", "gravatar_id": "", "url": "https://api.github.com/users/KunalDhawan", "html_url": "https://github.com/KunalDhawan", "followers_url": "https://api.github.com/users/KunalDhawan/followers", "following_url": "https://api.github.com/users/KunalDhawan/following{/other_user}", "gists_url": "https://api.github.com/users/KunalDhawan/gists{/gist_id}", "starred_url": "https://api.github.com/users/KunalDhawan/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/KunalDhawan/subscriptions", "organizations_url": "https://api.github.com/users/KunalDhawan/orgs", "repos_url": "https://api.github.com/users/KunalDhawan/repos", "events_url": "https://api.github.com/users/KunalDhawan/events{/privacy}", "received_events_url": "https://api.github.com/users/KunalDhawan/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6448/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6448/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6447
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6447/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6447/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6447/events
https://github.com/NVIDIA/NeMo/pull/6447
1,673,985,567
PR_kwDOC_bI7s5On-bV
6,447
Fix scheduler params registration
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 1923495043, "node_id": "MDU6TGFiZWwxOTIzNDk1MDQz", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/core", "name": "core", "color": "f25e3a", "default": false, "description": "Changes to NeMo Core" }, { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
null
2023-04-19T00:13:44
2023-05-17T21:37:01
2023-04-20T16:48:03
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6447", "html_url": "https://github.com/NVIDIA/NeMo/pull/6447", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6447.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6447.patch", "merged_at": null }
# What does this PR do ? Fixes an issue with scheduler param registration. The only way to override the scheduler args is via Hydra / OmegaConf at the moment, all defaults are picked directly from the constructor of the scheduler instead of the defaults of the dataclass. In effect, it sidesteps the validation and defaults of the dataclass of the scheduler entirely. There is no significant effect as it can still be fully overridden from the yaml config. **Collection**: [Core] # Changelog - Fix issue with scheduler dataclass registration - Fix issue with scheduler dataclass validation with config overrides # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [x] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6447/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6447/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6446
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6446/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6446/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6446/events
https://github.com/NVIDIA/NeMo/pull/6446
1,673,967,778
PR_kwDOC_bI7s5On6-3
6,446
Fix scheduler params registration
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1923495043, "node_id": "MDU6TGFiZWwxOTIzNDk1MDQz", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/core", "name": "core", "color": "f25e3a", "default": false, "description": "Changes to NeMo Core" } ]
closed
false
null
[]
null
null
2023-04-18T23:48:43
2023-04-19T00:13:06
2023-04-19T00:13:06
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
true
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6446", "html_url": "https://github.com/NVIDIA/NeMo/pull/6446", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6446.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6446.patch", "merged_at": null }
# What does this PR do ? Fixes an issue with scheduler param registration. The only way to override the scheduler args is via Hydra / OmegaConf at the moment, all defaults are picked directly from the constructor of the scheduler instead of the defaults of the dataclass. In effect, it sidesteps the validation and defaults of the dataclass of the scheduler entirely. There is no significant effect as it can still be fully overridden from the yaml config. **Collection**: [Core] # Changelog - Fix issue with scheduler dataclass registration - Fix issue with scheduler dataclass validation with config overrides # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [x] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6446/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6446/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6445
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6445/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6445/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6445/events
https://github.com/NVIDIA/NeMo/pull/6445
1,673,941,479
PR_kwDOC_bI7s5On1cv
6,445
New noise_norm perturbation based on Riva work
{ "login": "trias702", "id": 25867060, "node_id": "MDQ6VXNlcjI1ODY3MDYw", "avatar_url": "https://avatars.githubusercontent.com/u/25867060?v=4", "gravatar_id": "", "url": "https://api.github.com/users/trias702", "html_url": "https://github.com/trias702", "followers_url": "https://api.github.com/users/trias702/followers", "following_url": "https://api.github.com/users/trias702/following{/other_user}", "gists_url": "https://api.github.com/users/trias702/gists{/gist_id}", "starred_url": "https://api.github.com/users/trias702/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/trias702/subscriptions", "organizations_url": "https://api.github.com/users/trias702/orgs", "repos_url": "https://api.github.com/users/trias702/repos", "events_url": "https://api.github.com/users/trias702/events{/privacy}", "received_events_url": "https://api.github.com/users/trias702/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-18T23:05:09
2023-05-02T16:42:15
2023-05-02T16:07:00
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6445", "html_url": "https://github.com/NVIDIA/NeMo/pull/6445", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6445.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6445.patch", "merged_at": "2023-05-02T16:07:00" }
# What does this PR do ? This adds a new normalisation-based noise perturbation to Nemo ASR based on experiments done by Riva **Collection**: ASR # Changelog - nemo/collections/asr/data/audio_to_text.py Added new logic to check for infinite datasets in RandomizedChainDataset - nemo/collections/asr/data/audio_to_text_dataset.py Amended the process_augmentations API to pass global_rank and world_size - nemo/collections/asr/parts/preprocessing/perturb.py Added new NoiseNormPerturbation class Fixed up the AugmentationDataset to make it an Iterable instead of Iterator and bring it into line with all other IterableDataset classes in Nemo Added passing of global_rank and world_size to main perturbation constructor for those perturbations who might need this info (the new one uses it) - nemo/utils/model_utils.py Added a new bypass mechanism for multi-validation dataloaders which allows you to flatten all validation datasets into one single one, tested and working for both manifest.jsons and tarred audio sets. I know this one will be controversional, but it's something we very much need on Riva. # Usage * You can use the new perturbation class as follows: ```yaml ++model.train_ds.augmentor.noise_norm.prob=0.3 ++model.train_ds.augmentor.noise_norm.snr_samples=[5,10,15] ++model.train_ds.augmentor.noise_norm.norm_to_db=-25.0 ++model.train_ds.augmentor.noise_norm.rng=123 ++model.train_ds.augmentor.noise_norm.manifest_path=['/path/to/tars1/tarred_audio_manifest.json','/path/to/tars2/tarred_audio_manifest.json'] ++model.train_ds.augmentor.noise_norm.audio_tar_filepaths=['/path/to/tars1/audio__OP_0..255_CL_.tar','/path/to/tars2/audio__OP_0..127_CL_.tar'] ``` # Before your PR is "Ready for review" **Pre checks**: - [X] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [X] New Feature - [X] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas.
{ "login": "anteju", "id": 108555623, "node_id": "U_kgDOBnhtZw", "avatar_url": "https://avatars.githubusercontent.com/u/108555623?v=4", "gravatar_id": "", "url": "https://api.github.com/users/anteju", "html_url": "https://github.com/anteju", "followers_url": "https://api.github.com/users/anteju/followers", "following_url": "https://api.github.com/users/anteju/following{/other_user}", "gists_url": "https://api.github.com/users/anteju/gists{/gist_id}", "starred_url": "https://api.github.com/users/anteju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/anteju/subscriptions", "organizations_url": "https://api.github.com/users/anteju/orgs", "repos_url": "https://api.github.com/users/anteju/repos", "events_url": "https://api.github.com/users/anteju/events{/privacy}", "received_events_url": "https://api.github.com/users/anteju/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6445/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6445/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6444
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6444/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6444/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6444/events
https://github.com/NVIDIA/NeMo/pull/6444
1,673,927,989
PR_kwDOC_bI7s5Onyh8
6,444
Tensor-parallel communication overlap with userbuffer backend
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
[ { "id": 1923495043, "node_id": "MDU6TGFiZWwxOTIzNDk1MDQz", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/core", "name": "core", "color": "f25e3a", "default": false, "description": "Changes to NeMo Core" }, { "id": 4418253970, "node_id": "LA_kwDOC_bI7s8AAAABB1k0kg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/TTS", "name": "TTS", "color": "49AF28", "default": false, "description": "" }, { "id": 4556669155, "node_id": "LA_kwDOC_bI7s8AAAABD5lA4w", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/cherry-pick", "name": "cherry-pick", "color": "ededed", "default": false, "description": null }, { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" }, { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" }, { "id": 4840216855, "node_id": "LA_kwDOC_bI7s8AAAABIH_ZFw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/CI", "name": "CI", "color": "1D76DB", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-18T22:50:09
2023-05-31T23:07:36
2023-05-31T23:07:36
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6444", "html_url": "https://github.com/NVIDIA/NeMo/pull/6444", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6444.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6444.patch", "merged_at": null }
# What does this PR do ? Add (1) interfaces to TE and initialized (2) process group setting to support tensor-parallel communication overlap with userbuffer backend. # Changelog - Add specific line by line info of high level changes in this PR. # Usage Set `ub_tp_comm_overlap` to `True` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "ericharper", "id": 11999610, "node_id": "MDQ6VXNlcjExOTk5NjEw", "avatar_url": "https://avatars.githubusercontent.com/u/11999610?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ericharper", "html_url": "https://github.com/ericharper", "followers_url": "https://api.github.com/users/ericharper/followers", "following_url": "https://api.github.com/users/ericharper/following{/other_user}", "gists_url": "https://api.github.com/users/ericharper/gists{/gist_id}", "starred_url": "https://api.github.com/users/ericharper/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ericharper/subscriptions", "organizations_url": "https://api.github.com/users/ericharper/orgs", "repos_url": "https://api.github.com/users/ericharper/repos", "events_url": "https://api.github.com/users/ericharper/events{/privacy}", "received_events_url": "https://api.github.com/users/ericharper/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6444/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6444/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6443
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6443/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6443/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6443/events
https://github.com/NVIDIA/NeMo/pull/6443
1,673,829,851
PR_kwDOC_bI7s5OndXR
6,443
Fix replace_bos_with_pad not found
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-18T21:03:23
2023-04-19T02:02:18
2023-04-19T02:02:16
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6443", "html_url": "https://github.com/NVIDIA/NeMo/pull/6443", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6443.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6443.patch", "merged_at": "2023-04-19T02:02:16" }
# What does this PR do ? minor fix for replace_bos_with_pad not found error in CI **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "MaximumEntropy", "id": 9114321, "node_id": "MDQ6VXNlcjkxMTQzMjE=", "avatar_url": "https://avatars.githubusercontent.com/u/9114321?v=4", "gravatar_id": "", "url": "https://api.github.com/users/MaximumEntropy", "html_url": "https://github.com/MaximumEntropy", "followers_url": "https://api.github.com/users/MaximumEntropy/followers", "following_url": "https://api.github.com/users/MaximumEntropy/following{/other_user}", "gists_url": "https://api.github.com/users/MaximumEntropy/gists{/gist_id}", "starred_url": "https://api.github.com/users/MaximumEntropy/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/MaximumEntropy/subscriptions", "organizations_url": "https://api.github.com/users/MaximumEntropy/orgs", "repos_url": "https://api.github.com/users/MaximumEntropy/repos", "events_url": "https://api.github.com/users/MaximumEntropy/events{/privacy}", "received_events_url": "https://api.github.com/users/MaximumEntropy/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6443/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6443/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6442
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6442/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6442/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6442/events
https://github.com/NVIDIA/NeMo/pull/6442
1,673,823,263
PR_kwDOC_bI7s5Onb85
6,442
BERT pre-training mp fork to spawn
{ "login": "aklife97", "id": 16078071, "node_id": "MDQ6VXNlcjE2MDc4MDcx", "avatar_url": "https://avatars.githubusercontent.com/u/16078071?v=4", "gravatar_id": "", "url": "https://api.github.com/users/aklife97", "html_url": "https://github.com/aklife97", "followers_url": "https://api.github.com/users/aklife97/followers", "following_url": "https://api.github.com/users/aklife97/following{/other_user}", "gists_url": "https://api.github.com/users/aklife97/gists{/gist_id}", "starred_url": "https://api.github.com/users/aklife97/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aklife97/subscriptions", "organizations_url": "https://api.github.com/users/aklife97/orgs", "repos_url": "https://api.github.com/users/aklife97/repos", "events_url": "https://api.github.com/users/aklife97/events{/privacy}", "received_events_url": "https://api.github.com/users/aklife97/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-18T20:57:49
2023-04-19T19:14:47
2023-04-19T19:14:46
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6442", "html_url": "https://github.com/NVIDIA/NeMo/pull/6442", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6442.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6442.patch", "merged_at": "2023-04-19T19:14:46" }
# What does this PR do ? Uses spawn for mp for BERT pre-training **Collection**: NLP # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "ericharper", "id": 11999610, "node_id": "MDQ6VXNlcjExOTk5NjEw", "avatar_url": "https://avatars.githubusercontent.com/u/11999610?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ericharper", "html_url": "https://github.com/ericharper", "followers_url": "https://api.github.com/users/ericharper/followers", "following_url": "https://api.github.com/users/ericharper/following{/other_user}", "gists_url": "https://api.github.com/users/ericharper/gists{/gist_id}", "starred_url": "https://api.github.com/users/ericharper/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ericharper/subscriptions", "organizations_url": "https://api.github.com/users/ericharper/orgs", "repos_url": "https://api.github.com/users/ericharper/repos", "events_url": "https://api.github.com/users/ericharper/events{/privacy}", "received_events_url": "https://api.github.com/users/ericharper/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6442/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6442/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6441
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6441/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6441/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6441/events
https://github.com/NVIDIA/NeMo/pull/6441
1,673,708,803
PR_kwDOC_bI7s5OnDKx
6,441
Add Frame-VAD model and datasets
{ "login": "stevehuang52", "id": 105218074, "node_id": "U_kgDOBkWAGg", "avatar_url": "https://avatars.githubusercontent.com/u/105218074?v=4", "gravatar_id": "", "url": "https://api.github.com/users/stevehuang52", "html_url": "https://github.com/stevehuang52", "followers_url": "https://api.github.com/users/stevehuang52/followers", "following_url": "https://api.github.com/users/stevehuang52/following{/other_user}", "gists_url": "https://api.github.com/users/stevehuang52/gists{/gist_id}", "starred_url": "https://api.github.com/users/stevehuang52/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/stevehuang52/subscriptions", "organizations_url": "https://api.github.com/users/stevehuang52/orgs", "repos_url": "https://api.github.com/users/stevehuang52/repos", "events_url": "https://api.github.com/users/stevehuang52/events{/privacy}", "received_events_url": "https://api.github.com/users/stevehuang52/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" }, { "id": 4847373924, "node_id": "LA_kwDOC_bI7s8AAAABIO0OZA", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/common", "name": "common", "color": "c5def5", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-18T19:25:16
2023-05-02T20:29:45
2023-05-02T20:29:44
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6441", "html_url": "https://github.com/NVIDIA/NeMo/pull/6441", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6441.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6441.patch", "merged_at": "2023-05-02T20:29:44" }
# What does this PR do ? Add model and dataset files for frame-VAD, as well as related tests. Future PRs: - Add Frame-VAD examples: train/infer, configs - Update ASR+VAD pipeline to support Frame-VAD - Add tutorials and update docs **Collection**: [ASR] # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [x] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation
{ "login": "fayejf", "id": 36722593, "node_id": "MDQ6VXNlcjM2NzIyNTkz", "avatar_url": "https://avatars.githubusercontent.com/u/36722593?v=4", "gravatar_id": "", "url": "https://api.github.com/users/fayejf", "html_url": "https://github.com/fayejf", "followers_url": "https://api.github.com/users/fayejf/followers", "following_url": "https://api.github.com/users/fayejf/following{/other_user}", "gists_url": "https://api.github.com/users/fayejf/gists{/gist_id}", "starred_url": "https://api.github.com/users/fayejf/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/fayejf/subscriptions", "organizations_url": "https://api.github.com/users/fayejf/orgs", "repos_url": "https://api.github.com/users/fayejf/repos", "events_url": "https://api.github.com/users/fayejf/events{/privacy}", "received_events_url": "https://api.github.com/users/fayejf/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6441/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6441/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6440
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6440/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6440/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6440/events
https://github.com/NVIDIA/NeMo/pull/6440
1,673,310,765
PR_kwDOC_bI7s5OltqB
6,440
Add frame vad
{ "login": "stevehuang52", "id": 105218074, "node_id": "U_kgDOBkWAGg", "avatar_url": "https://avatars.githubusercontent.com/u/105218074?v=4", "gravatar_id": "", "url": "https://api.github.com/users/stevehuang52", "html_url": "https://github.com/stevehuang52", "followers_url": "https://api.github.com/users/stevehuang52/followers", "following_url": "https://api.github.com/users/stevehuang52/following{/other_user}", "gists_url": "https://api.github.com/users/stevehuang52/gists{/gist_id}", "starred_url": "https://api.github.com/users/stevehuang52/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/stevehuang52/subscriptions", "organizations_url": "https://api.github.com/users/stevehuang52/orgs", "repos_url": "https://api.github.com/users/stevehuang52/repos", "events_url": "https://api.github.com/users/stevehuang52/events{/privacy}", "received_events_url": "https://api.github.com/users/stevehuang52/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4585431311, "node_id": "LA_kwDOC_bI7s8AAAABEVAhDw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/stale", "name": "stale", "color": "ededed", "default": false, "description": null }, { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" }, { "id": 4847373924, "node_id": "LA_kwDOC_bI7s8AAAABIO0OZA", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/common", "name": "common", "color": "c5def5", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-18T14:56:47
2023-05-11T01:51:43
2023-05-11T01:51:43
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
true
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6440", "html_url": "https://github.com/NVIDIA/NeMo/pull/6440", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6440.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6440.patch", "merged_at": null }
# What does this PR do ? Add a one line overview of what this PR aims to accomplish. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6440/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6440/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6439
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6439/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6439/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6439/events
https://github.com/NVIDIA/NeMo/issues/6439
1,672,753,946
I_kwDOC_bI7s5jtDMa
6,439
error in making tokenizer
{ "login": "alexandercesarr", "id": 105767588, "node_id": "U_kgDOBk3ipA", "avatar_url": "https://avatars.githubusercontent.com/u/105767588?v=4", "gravatar_id": "", "url": "https://api.github.com/users/alexandercesarr", "html_url": "https://github.com/alexandercesarr", "followers_url": "https://api.github.com/users/alexandercesarr/followers", "following_url": "https://api.github.com/users/alexandercesarr/following{/other_user}", "gists_url": "https://api.github.com/users/alexandercesarr/gists{/gist_id}", "starred_url": "https://api.github.com/users/alexandercesarr/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/alexandercesarr/subscriptions", "organizations_url": "https://api.github.com/users/alexandercesarr/orgs", "repos_url": "https://api.github.com/users/alexandercesarr/repos", "events_url": "https://api.github.com/users/alexandercesarr/events{/privacy}", "received_events_url": "https://api.github.com/users/alexandercesarr/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1485815557, "node_id": "MDU6TGFiZWwxNDg1ODE1NTU3", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/bug", "name": "bug", "color": "d73a4a", "default": true, "description": "Something isn't working" } ]
closed
false
null
[]
null
null
2023-04-18T09:53:23
2023-04-18T13:14:06
2023-04-18T13:14:06
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
Hi, I wanna fine-tune the multilingual model. For this purpose, I downloaded a pre-trained english model. Now according to the tutorials in your repository, first of all we should train the tokenizer. I want to train spe bpe. I made manifest files like the manifest exists in tutorial and run the code like you said. But when I run the code, I encounter the below error: ''' trainer_interface.cc(350) LOG(INFO) SentenceIterator is not specified. Using MultiFileSentenceIterator. trainer_interface.cc(181) LOG(INFO) Loading corpus: /home/multilingual/dataset/deepmine_voices/text_corpus/document.txt trainer_interface.cc(406) LOG(INFO) Loaded all 0 sentences trainer_interface.cc(422) LOG(INFO) Adding meta_piece: <unk> trainer_interface.cc(427) LOG(INFO) Normalizing sentences... Traceback (most recent call last): File "NeMo/scripts/tokenizers/process_asr_text_tokenizer.py", line 323, in <module> main() File "NeMo/scripts/tokenizers/process_asr_text_tokenizer.py", line 301, in main tokenizer_path = __process_data( File "NeMo/scripts/tokenizers/process_asr_text_tokenizer.py", line 246, in __process_data tokenizer_path, vocab_path = create_spt_model( File "/usr/local/lib/python3.8/dist-packages/nemo/collections/common/tokenizers/sentencepiece_tokenizer.py", line 372, in create_spt_model sentencepiece.SentencePieceTrainer.Train(cmd) File "/usr/local/lib/python3.8/dist-packages/sentencepiece/__init__.py", line 989, in Train SentencePieceTrainer._Train(arg=arg, **kwargs) File "/usr/local/lib/python3.8/dist-packages/sentencepiece/__init__.py", line 945, in _Train return SentencePieceTrainer._TrainFromString(arg) File "/usr/local/lib/python3.8/dist-packages/sentencepiece/__init__.py", line 923, in _TrainFromString return _sentencepiece.SentencePieceTrainer__TrainFromString(arg) RuntimeError: Internal: src/trainer_interface.cc(428) [!sentences_.empty()] ''' I want to fine-tune it on a persian dataset. Could you please help me to solve this problem?
{ "login": "alexandercesarr", "id": 105767588, "node_id": "U_kgDOBk3ipA", "avatar_url": "https://avatars.githubusercontent.com/u/105767588?v=4", "gravatar_id": "", "url": "https://api.github.com/users/alexandercesarr", "html_url": "https://github.com/alexandercesarr", "followers_url": "https://api.github.com/users/alexandercesarr/followers", "following_url": "https://api.github.com/users/alexandercesarr/following{/other_user}", "gists_url": "https://api.github.com/users/alexandercesarr/gists{/gist_id}", "starred_url": "https://api.github.com/users/alexandercesarr/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/alexandercesarr/subscriptions", "organizations_url": "https://api.github.com/users/alexandercesarr/orgs", "repos_url": "https://api.github.com/users/alexandercesarr/repos", "events_url": "https://api.github.com/users/alexandercesarr/events{/privacy}", "received_events_url": "https://api.github.com/users/alexandercesarr/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6439/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6439/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6438
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6438/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6438/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6438/events
https://github.com/NVIDIA/NeMo/pull/6438
1,672,722,509
PR_kwDOC_bI7s5OjvuB
6,438
add config and char tokenizer for russian tts
{ "login": "bene-ges", "id": 61418381, "node_id": "MDQ6VXNlcjYxNDE4Mzgx", "avatar_url": "https://avatars.githubusercontent.com/u/61418381?v=4", "gravatar_id": "", "url": "https://api.github.com/users/bene-ges", "html_url": "https://github.com/bene-ges", "followers_url": "https://api.github.com/users/bene-ges/followers", "following_url": "https://api.github.com/users/bene-ges/following{/other_user}", "gists_url": "https://api.github.com/users/bene-ges/gists{/gist_id}", "starred_url": "https://api.github.com/users/bene-ges/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/bene-ges/subscriptions", "organizations_url": "https://api.github.com/users/bene-ges/orgs", "repos_url": "https://api.github.com/users/bene-ges/repos", "events_url": "https://api.github.com/users/bene-ges/events{/privacy}", "received_events_url": "https://api.github.com/users/bene-ges/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4847373924, "node_id": "LA_kwDOC_bI7s8AAAABIO0OZA", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/common", "name": "common", "color": "c5def5", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-18T09:35:37
2023-05-05T17:54:18
2023-05-05T17:54:17
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6438", "html_url": "https://github.com/NVIDIA/NeMo/pull/6438", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6438.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6438.patch", "merged_at": null }
# What does this PR do ? Add config and char tokenizer for russian tts. It contains russian alphabet + ipa alphabet. Each unicode character is regarded as separate token, including stress. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "bene-ges", "id": 61418381, "node_id": "MDQ6VXNlcjYxNDE4Mzgx", "avatar_url": "https://avatars.githubusercontent.com/u/61418381?v=4", "gravatar_id": "", "url": "https://api.github.com/users/bene-ges", "html_url": "https://github.com/bene-ges", "followers_url": "https://api.github.com/users/bene-ges/followers", "following_url": "https://api.github.com/users/bene-ges/following{/other_user}", "gists_url": "https://api.github.com/users/bene-ges/gists{/gist_id}", "starred_url": "https://api.github.com/users/bene-ges/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/bene-ges/subscriptions", "organizations_url": "https://api.github.com/users/bene-ges/orgs", "repos_url": "https://api.github.com/users/bene-ges/repos", "events_url": "https://api.github.com/users/bene-ges/events{/privacy}", "received_events_url": "https://api.github.com/users/bene-ges/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6438/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6438/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6437
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6437/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6437/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6437/events
https://github.com/NVIDIA/NeMo/pull/6437
1,672,162,024
PR_kwDOC_bI7s5Oh4nd
6,437
Support Swiglu in TP PP Conversion
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-18T00:40:23
2023-04-19T02:59:05
2023-04-19T02:59:01
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6437", "html_url": "https://github.com/NVIDIA/NeMo/pull/6437", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6437.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6437.patch", "merged_at": "2023-04-19T02:59:01" }
# What does this PR do ? Add support for swiglu in weight conversion script **Collection**: [NLP] # Changelog - Update TP PP weight conversion logic with swiglu config # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6437/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6437/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6436
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6436/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6436/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6436/events
https://github.com/NVIDIA/NeMo/pull/6436
1,671,860,731
PR_kwDOC_bI7s5Og3wL
6,436
Update NeMo_TTS_Primer.ipynb
{ "login": "pythinker", "id": 29832479, "node_id": "MDQ6VXNlcjI5ODMyNDc5", "avatar_url": "https://avatars.githubusercontent.com/u/29832479?v=4", "gravatar_id": "", "url": "https://api.github.com/users/pythinker", "html_url": "https://github.com/pythinker", "followers_url": "https://api.github.com/users/pythinker/followers", "following_url": "https://api.github.com/users/pythinker/following{/other_user}", "gists_url": "https://api.github.com/users/pythinker/gists{/gist_id}", "starred_url": "https://api.github.com/users/pythinker/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/pythinker/subscriptions", "organizations_url": "https://api.github.com/users/pythinker/orgs", "repos_url": "https://api.github.com/users/pythinker/repos", "events_url": "https://api.github.com/users/pythinker/events{/privacy}", "received_events_url": "https://api.github.com/users/pythinker/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4418253970, "node_id": "LA_kwDOC_bI7s8AAAABB1k0kg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/TTS", "name": "TTS", "color": "49AF28", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-17T19:44:55
2023-04-19T18:50:00
2023-04-19T18:49:22
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6436", "html_url": "https://github.com/NVIDIA/NeMo/pull/6436", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6436.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6436.patch", "merged_at": "2023-04-19T18:49:22" }
# What does this PR do ? Fix a mistake in line 782. FFT calculates the magnitude and phase of each frequency bin not frequency band. Moreover, frequency bins in FFT are not related to pitch. So, we should change _**band (ie. pitch)**_ to _**bin**_. **Collection**: [TTS] # Changelog tutorials/tts/NeMo_TTS_Primer.ipynb **PR Type**: - [ ] New Feature - [ ] Bugfix - [x] Documentation ## Who can review? @blisc & @okuchaiev
{ "login": "rlangman", "id": 9942053, "node_id": "MDQ6VXNlcjk5NDIwNTM=", "avatar_url": "https://avatars.githubusercontent.com/u/9942053?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rlangman", "html_url": "https://github.com/rlangman", "followers_url": "https://api.github.com/users/rlangman/followers", "following_url": "https://api.github.com/users/rlangman/following{/other_user}", "gists_url": "https://api.github.com/users/rlangman/gists{/gist_id}", "starred_url": "https://api.github.com/users/rlangman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rlangman/subscriptions", "organizations_url": "https://api.github.com/users/rlangman/orgs", "repos_url": "https://api.github.com/users/rlangman/repos", "events_url": "https://api.github.com/users/rlangman/events{/privacy}", "received_events_url": "https://api.github.com/users/rlangman/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6436/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6436/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6435
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6435/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6435/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6435/events
https://github.com/NVIDIA/NeMo/pull/6435
1,671,716,657
PR_kwDOC_bI7s5OgYVE
6,435
[TTS] Fix aligner nan loss in fp32
{ "login": "hsiehjackson", "id": 37269846, "node_id": "MDQ6VXNlcjM3MjY5ODQ2", "avatar_url": "https://avatars.githubusercontent.com/u/37269846?v=4", "gravatar_id": "", "url": "https://api.github.com/users/hsiehjackson", "html_url": "https://github.com/hsiehjackson", "followers_url": "https://api.github.com/users/hsiehjackson/followers", "following_url": "https://api.github.com/users/hsiehjackson/following{/other_user}", "gists_url": "https://api.github.com/users/hsiehjackson/gists{/gist_id}", "starred_url": "https://api.github.com/users/hsiehjackson/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/hsiehjackson/subscriptions", "organizations_url": "https://api.github.com/users/hsiehjackson/orgs", "repos_url": "https://api.github.com/users/hsiehjackson/repos", "events_url": "https://api.github.com/users/hsiehjackson/events{/privacy}", "received_events_url": "https://api.github.com/users/hsiehjackson/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4418253970, "node_id": "LA_kwDOC_bI7s8AAAABB1k0kg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/TTS", "name": "TTS", "color": "49AF28", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-17T18:08:48
2023-05-08T21:03:29
2023-05-08T21:03:28
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6435", "html_url": "https://github.com/NVIDIA/NeMo/pull/6435", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6435.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6435.patch", "merged_at": "2023-05-08T21:03:28" }
# What does this PR do ? Fix FastPitch training appear `nan` loss in aligner loss when precision=32. **Collection**: [TTS] # Changelog - `nemo/collections/tts/losses/aligner_loss` # Usage * To reproduce the bug, we can run `FastPitch and Mixer-TTS Training` tutorial by adding `trainer.precision=32` in training command. # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "hsiehjackson", "id": 37269846, "node_id": "MDQ6VXNlcjM3MjY5ODQ2", "avatar_url": "https://avatars.githubusercontent.com/u/37269846?v=4", "gravatar_id": "", "url": "https://api.github.com/users/hsiehjackson", "html_url": "https://github.com/hsiehjackson", "followers_url": "https://api.github.com/users/hsiehjackson/followers", "following_url": "https://api.github.com/users/hsiehjackson/following{/other_user}", "gists_url": "https://api.github.com/users/hsiehjackson/gists{/gist_id}", "starred_url": "https://api.github.com/users/hsiehjackson/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/hsiehjackson/subscriptions", "organizations_url": "https://api.github.com/users/hsiehjackson/orgs", "repos_url": "https://api.github.com/users/hsiehjackson/repos", "events_url": "https://api.github.com/users/hsiehjackson/events{/privacy}", "received_events_url": "https://api.github.com/users/hsiehjackson/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6435/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6435/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6434
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6434/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6434/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6434/events
https://github.com/NVIDIA/NeMo/issues/6434
1,670,631,671
I_kwDOC_bI7s5jk9D3
6,434
How to reproduce the same result as in the paper, EER=0.66?
{ "login": "haha010508", "id": 10721645, "node_id": "MDQ6VXNlcjEwNzIxNjQ1", "avatar_url": "https://avatars.githubusercontent.com/u/10721645?v=4", "gravatar_id": "", "url": "https://api.github.com/users/haha010508", "html_url": "https://github.com/haha010508", "followers_url": "https://api.github.com/users/haha010508/followers", "following_url": "https://api.github.com/users/haha010508/following{/other_user}", "gists_url": "https://api.github.com/users/haha010508/gists{/gist_id}", "starred_url": "https://api.github.com/users/haha010508/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/haha010508/subscriptions", "organizations_url": "https://api.github.com/users/haha010508/orgs", "repos_url": "https://api.github.com/users/haha010508/repos", "events_url": "https://api.github.com/users/haha010508/events{/privacy}", "received_events_url": "https://api.github.com/users/haha010508/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1485815557, "node_id": "MDU6TGFiZWwxNDg1ODE1NTU3", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/bug", "name": "bug", "color": "d73a4a", "default": true, "description": "Something isn't working" } ]
closed
false
null
[]
null
null
2023-04-17T08:01:18
2023-04-17T08:05:55
2023-04-17T08:05:55
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
i get the eer=0.80, this is my code `#!/bin/sh CUDA_VISIBLE_DEVICES=3 python extract_speaker_embeddings.py --manifest=voxceleb1_test_manifest.json --model_path='./speakerverification_en_titanet_large/model' --embedding_dir='./speakerverification_en_titanet_large/embedding' CUDA_VISIBLE_DEVICES=3 python voxceleb_eval.py --trial_file='./speech_database/voxceleb/vox_trial_pairs/veri_test.txt' --emb='./speakerverification_en_titanet_large/embedding/embeddings/voxceleb1_test_manifest_embeddings.pkl' ` and i found the model is: Found existing object .cache/torch/NeMo/NeMo_1.17.0/titanet-l/11ba0924fdf87c049e339adbf6899d48/titanet-l.nemo. 100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 37720/37720 [00:00<00:00, 110401.53it/s] 0.80 So I want to know what went wrong? thanks very much!!
{ "login": "haha010508", "id": 10721645, "node_id": "MDQ6VXNlcjEwNzIxNjQ1", "avatar_url": "https://avatars.githubusercontent.com/u/10721645?v=4", "gravatar_id": "", "url": "https://api.github.com/users/haha010508", "html_url": "https://github.com/haha010508", "followers_url": "https://api.github.com/users/haha010508/followers", "following_url": "https://api.github.com/users/haha010508/following{/other_user}", "gists_url": "https://api.github.com/users/haha010508/gists{/gist_id}", "starred_url": "https://api.github.com/users/haha010508/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/haha010508/subscriptions", "organizations_url": "https://api.github.com/users/haha010508/orgs", "repos_url": "https://api.github.com/users/haha010508/repos", "events_url": "https://api.github.com/users/haha010508/events{/privacy}", "received_events_url": "https://api.github.com/users/haha010508/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6434/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6434/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6433
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6433/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6433/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6433/events
https://github.com/NVIDIA/NeMo/pull/6433
1,669,973,570
PR_kwDOC_bI7s5OakHd
6,433
Upgrade to pytorch lightning 2.0
{ "login": "athitten", "id": 47577437, "node_id": "MDQ6VXNlcjQ3NTc3NDM3", "avatar_url": "https://avatars.githubusercontent.com/u/47577437?v=4", "gravatar_id": "", "url": "https://api.github.com/users/athitten", "html_url": "https://github.com/athitten", "followers_url": "https://api.github.com/users/athitten/followers", "following_url": "https://api.github.com/users/athitten/following{/other_user}", "gists_url": "https://api.github.com/users/athitten/gists{/gist_id}", "starred_url": "https://api.github.com/users/athitten/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/athitten/subscriptions", "organizations_url": "https://api.github.com/users/athitten/orgs", "repos_url": "https://api.github.com/users/athitten/repos", "events_url": "https://api.github.com/users/athitten/events{/privacy}", "received_events_url": "https://api.github.com/users/athitten/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1923495043, "node_id": "MDU6TGFiZWwxOTIzNDk1MDQz", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/core", "name": "core", "color": "f25e3a", "default": false, "description": "Changes to NeMo Core" }, { "id": 4418253970, "node_id": "LA_kwDOC_bI7s8AAAABB1k0kg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/TTS", "name": "TTS", "color": "49AF28", "default": false, "description": "" }, { "id": 4811884691, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ikw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/ASR", "name": "ASR", "color": "F3B33E", "default": false, "description": "" }, { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" }, { "id": 4840216855, "node_id": "LA_kwDOC_bI7s8AAAABIH_ZFw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/CI", "name": "CI", "color": "1D76DB", "default": false, "description": "" }, { "id": 4847373924, "node_id": "LA_kwDOC_bI7s8AAAABIO0OZA", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/common", "name": "common", "color": "c5def5", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-16T13:37:40
2023-08-05T22:40:19
2023-08-05T22:40:18
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6433", "html_url": "https://github.com/NVIDIA/NeMo/pull/6433", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6433.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6433.patch", "merged_at": "2023-08-05T22:40:18" }
# What does this PR do ? This PR upgrades NeMo to use lightning 2.0. Majority of the changes are done based on the migration guide provided by lightning: [https://lightning.ai/docs/pytorch/stable/upgrade/from_1_9.html](url) **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "ericharper", "id": 11999610, "node_id": "MDQ6VXNlcjExOTk5NjEw", "avatar_url": "https://avatars.githubusercontent.com/u/11999610?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ericharper", "html_url": "https://github.com/ericharper", "followers_url": "https://api.github.com/users/ericharper/followers", "following_url": "https://api.github.com/users/ericharper/following{/other_user}", "gists_url": "https://api.github.com/users/ericharper/gists{/gist_id}", "starred_url": "https://api.github.com/users/ericharper/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ericharper/subscriptions", "organizations_url": "https://api.github.com/users/ericharper/orgs", "repos_url": "https://api.github.com/users/ericharper/repos", "events_url": "https://api.github.com/users/ericharper/events{/privacy}", "received_events_url": "https://api.github.com/users/ericharper/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6433/reactions", "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6433/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6431
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6431/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6431/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6431/events
https://github.com/NVIDIA/NeMo/pull/6431
1,669,051,274
PR_kwDOC_bI7s5OXo2h
6,431
[TTS] Add tutorials for FastPitch TTS speaker adaptation with adapters
{ "login": "hsiehjackson", "id": 37269846, "node_id": "MDQ6VXNlcjM3MjY5ODQ2", "avatar_url": "https://avatars.githubusercontent.com/u/37269846?v=4", "gravatar_id": "", "url": "https://api.github.com/users/hsiehjackson", "html_url": "https://github.com/hsiehjackson", "followers_url": "https://api.github.com/users/hsiehjackson/followers", "following_url": "https://api.github.com/users/hsiehjackson/following{/other_user}", "gists_url": "https://api.github.com/users/hsiehjackson/gists{/gist_id}", "starred_url": "https://api.github.com/users/hsiehjackson/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/hsiehjackson/subscriptions", "organizations_url": "https://api.github.com/users/hsiehjackson/orgs", "repos_url": "https://api.github.com/users/hsiehjackson/repos", "events_url": "https://api.github.com/users/hsiehjackson/events{/privacy}", "received_events_url": "https://api.github.com/users/hsiehjackson/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4418253970, "node_id": "LA_kwDOC_bI7s8AAAABB1k0kg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/TTS", "name": "TTS", "color": "49AF28", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-14T23:35:06
2024-12-23T04:13:55
2023-05-03T15:27:39
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6431", "html_url": "https://github.com/NVIDIA/NeMo/pull/6431", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6431.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6431.patch", "merged_at": "2023-05-03T15:27:39" }
# What does this PR do ? Add two tutorials for FastPitch TTS speaker adaptation with adapters. One is FastPitch multi-speaker pretraining, the other is FastPitch adapter finetuning. **Collection**: [TTS] # Changelog - `tutorials/tts/FastPitch_MultiSpeaker_Pretraining.ipynb` - `tutorials/tts/FastPitch_Adapter_Finetuning.ipynb.` # Usage # Before your PR is "Ready for review" **Pre checks**: - [x] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [x] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to #6416 #6417
{ "login": "hsiehjackson", "id": 37269846, "node_id": "MDQ6VXNlcjM3MjY5ODQ2", "avatar_url": "https://avatars.githubusercontent.com/u/37269846?v=4", "gravatar_id": "", "url": "https://api.github.com/users/hsiehjackson", "html_url": "https://github.com/hsiehjackson", "followers_url": "https://api.github.com/users/hsiehjackson/followers", "following_url": "https://api.github.com/users/hsiehjackson/following{/other_user}", "gists_url": "https://api.github.com/users/hsiehjackson/gists{/gist_id}", "starred_url": "https://api.github.com/users/hsiehjackson/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/hsiehjackson/subscriptions", "organizations_url": "https://api.github.com/users/hsiehjackson/orgs", "repos_url": "https://api.github.com/users/hsiehjackson/repos", "events_url": "https://api.github.com/users/hsiehjackson/events{/privacy}", "received_events_url": "https://api.github.com/users/hsiehjackson/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6431/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6431/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6430
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6430/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6430/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6430/events
https://github.com/NVIDIA/NeMo/pull/6430
1,668,932,469
PR_kwDOC_bI7s5OXPeh
6,430
Upgrade pt 23.03
{ "login": "ericharper", "id": 11999610, "node_id": "MDQ6VXNlcjExOTk5NjEw", "avatar_url": "https://avatars.githubusercontent.com/u/11999610?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ericharper", "html_url": "https://github.com/ericharper", "followers_url": "https://api.github.com/users/ericharper/followers", "following_url": "https://api.github.com/users/ericharper/following{/other_user}", "gists_url": "https://api.github.com/users/ericharper/gists{/gist_id}", "starred_url": "https://api.github.com/users/ericharper/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ericharper/subscriptions", "organizations_url": "https://api.github.com/users/ericharper/orgs", "repos_url": "https://api.github.com/users/ericharper/repos", "events_url": "https://api.github.com/users/ericharper/events{/privacy}", "received_events_url": "https://api.github.com/users/ericharper/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4840216855, "node_id": "LA_kwDOC_bI7s8AAAABIH_ZFw", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/CI", "name": "CI", "color": "1D76DB", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-14T20:48:17
2023-04-16T23:03:44
2023-04-16T23:03:43
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6430", "html_url": "https://github.com/NVIDIA/NeMo/pull/6430", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6430.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6430.patch", "merged_at": "2023-04-16T23:03:43" }
# What does this PR do ? Add a one line overview of what this PR aims to accomplish. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [ ] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "titu1994", "id": 3048602, "node_id": "MDQ6VXNlcjMwNDg2MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/3048602?v=4", "gravatar_id": "", "url": "https://api.github.com/users/titu1994", "html_url": "https://github.com/titu1994", "followers_url": "https://api.github.com/users/titu1994/followers", "following_url": "https://api.github.com/users/titu1994/following{/other_user}", "gists_url": "https://api.github.com/users/titu1994/gists{/gist_id}", "starred_url": "https://api.github.com/users/titu1994/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/titu1994/subscriptions", "organizations_url": "https://api.github.com/users/titu1994/orgs", "repos_url": "https://api.github.com/users/titu1994/repos", "events_url": "https://api.github.com/users/titu1994/events{/privacy}", "received_events_url": "https://api.github.com/users/titu1994/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6430/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6430/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/6429
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6429/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6429/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6429/events
https://github.com/NVIDIA/NeMo/issues/6429
1,667,849,676
I_kwDOC_bI7s5jaV3M
6,429
Impulse perturbation normalization typo
{ "login": "tabasy", "id": 11395338, "node_id": "MDQ6VXNlcjExMzk1MzM4", "avatar_url": "https://avatars.githubusercontent.com/u/11395338?v=4", "gravatar_id": "", "url": "https://api.github.com/users/tabasy", "html_url": "https://github.com/tabasy", "followers_url": "https://api.github.com/users/tabasy/followers", "following_url": "https://api.github.com/users/tabasy/following{/other_user}", "gists_url": "https://api.github.com/users/tabasy/gists{/gist_id}", "starred_url": "https://api.github.com/users/tabasy/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/tabasy/subscriptions", "organizations_url": "https://api.github.com/users/tabasy/orgs", "repos_url": "https://api.github.com/users/tabasy/repos", "events_url": "https://api.github.com/users/tabasy/events{/privacy}", "received_events_url": "https://api.github.com/users/tabasy/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1485815557, "node_id": "MDU6TGFiZWwxNDg1ODE1NTU3", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/bug", "name": "bug", "color": "d73a4a", "default": true, "description": "Something isn't working" } ]
closed
false
{ "login": "fayejf", "id": 36722593, "node_id": "MDQ6VXNlcjM2NzIyNTkz", "avatar_url": "https://avatars.githubusercontent.com/u/36722593?v=4", "gravatar_id": "", "url": "https://api.github.com/users/fayejf", "html_url": "https://github.com/fayejf", "followers_url": "https://api.github.com/users/fayejf/followers", "following_url": "https://api.github.com/users/fayejf/following{/other_user}", "gists_url": "https://api.github.com/users/fayejf/gists{/gist_id}", "starred_url": "https://api.github.com/users/fayejf/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/fayejf/subscriptions", "organizations_url": "https://api.github.com/users/fayejf/orgs", "repos_url": "https://api.github.com/users/fayejf/repos", "events_url": "https://api.github.com/users/fayejf/events{/privacy}", "received_events_url": "https://api.github.com/users/fayejf/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "login": "fayejf", "id": 36722593, "node_id": "MDQ6VXNlcjM2NzIyNTkz", "avatar_url": "https://avatars.githubusercontent.com/u/36722593?v=4", "gravatar_id": "", "url": "https://api.github.com/users/fayejf", "html_url": "https://github.com/fayejf", "followers_url": "https://api.github.com/users/fayejf/followers", "following_url": "https://api.github.com/users/fayejf/following{/other_user}", "gists_url": "https://api.github.com/users/fayejf/gists{/gist_id}", "starred_url": "https://api.github.com/users/fayejf/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/fayejf/subscriptions", "organizations_url": "https://api.github.com/users/fayejf/orgs", "repos_url": "https://api.github.com/users/fayejf/repos", "events_url": "https://api.github.com/users/fayejf/events{/privacy}", "received_events_url": "https://api.github.com/users/fayejf/received_events", "type": "User", "user_view_type": "public", "site_admin": false }, { "login": "anteju", "id": 108555623, "node_id": "U_kgDOBnhtZw", "avatar_url": "https://avatars.githubusercontent.com/u/108555623?v=4", "gravatar_id": "", "url": "https://api.github.com/users/anteju", "html_url": "https://github.com/anteju", "followers_url": "https://api.github.com/users/anteju/followers", "following_url": "https://api.github.com/users/anteju/following{/other_user}", "gists_url": "https://api.github.com/users/anteju/gists{/gist_id}", "starred_url": "https://api.github.com/users/anteju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/anteju/subscriptions", "organizations_url": "https://api.github.com/users/anteju/orgs", "repos_url": "https://api.github.com/users/anteju/repos", "events_url": "https://api.github.com/users/anteju/events{/privacy}", "received_events_url": "https://api.github.com/users/anteju/received_events", "type": "User", "user_view_type": "public", "site_admin": false } ]
null
null
2023-04-14T09:07:34
2023-05-10T00:57:40
2023-05-10T00:57:40
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
As this is my first issue, I MUST thank anyone contributing to this great repository, so I do :). Without any context, [this](https://github.com/NVIDIA/NeMo/blob/50f16ba4f445e312b38b75a93881b9db2a10791c/nemo/collections/asr/parts/preprocessing/perturb.py#L377) normalization line seems wrong (first `min` should be `np.mean`). `impulse_norm = (impulse.samples - min(impulse.samples)) / (max(impulse.samples) - min(impulse.samples))` This totally changes the RIR signal and adds an overlapping echo to the output. Seems like nobody is using this augmentation :) or they didn't manually check the outputs. An example RIR file from [BUT reverb dataset](https://speech.fit.vutbr.cz/software/but-speech-fit-reverb-database) is attached for anyone like myself who seeks a RIR example to check the augmentation. [rir_1sec.zip](https://github.com/NVIDIA/NeMo/files/11230838/rir_1sec.zip)
{ "login": "anteju", "id": 108555623, "node_id": "U_kgDOBnhtZw", "avatar_url": "https://avatars.githubusercontent.com/u/108555623?v=4", "gravatar_id": "", "url": "https://api.github.com/users/anteju", "html_url": "https://github.com/anteju", "followers_url": "https://api.github.com/users/anteju/followers", "following_url": "https://api.github.com/users/anteju/following{/other_user}", "gists_url": "https://api.github.com/users/anteju/gists{/gist_id}", "starred_url": "https://api.github.com/users/anteju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/anteju/subscriptions", "organizations_url": "https://api.github.com/users/anteju/orgs", "repos_url": "https://api.github.com/users/anteju/repos", "events_url": "https://api.github.com/users/anteju/events{/privacy}", "received_events_url": "https://api.github.com/users/anteju/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6429/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6429/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/6428
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/6428/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/6428/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/6428/events
https://github.com/NVIDIA/NeMo/pull/6428
1,667,542,624
PR_kwDOC_bI7s5OSlri
6,428
check if grad is none before calling all_reduce
{ "login": "arendu", "id": 108822655, "node_id": "U_kgDOBnyAfw", "avatar_url": "https://avatars.githubusercontent.com/u/108822655?v=4", "gravatar_id": "", "url": "https://api.github.com/users/arendu", "html_url": "https://github.com/arendu", "followers_url": "https://api.github.com/users/arendu/followers", "following_url": "https://api.github.com/users/arendu/following{/other_user}", "gists_url": "https://api.github.com/users/arendu/gists{/gist_id}", "starred_url": "https://api.github.com/users/arendu/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/arendu/subscriptions", "organizations_url": "https://api.github.com/users/arendu/orgs", "repos_url": "https://api.github.com/users/arendu/repos", "events_url": "https://api.github.com/users/arendu/events{/privacy}", "received_events_url": "https://api.github.com/users/arendu/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 4811886210, "node_id": "LA_kwDOC_bI7s8AAAABHs-Ogg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/NLP", "name": "NLP", "color": "CBF09A", "default": false, "description": "" } ]
closed
false
null
[]
null
null
2023-04-14T05:40:11
2023-04-15T02:35:59
2023-04-15T02:35:57
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/6428", "html_url": "https://github.com/NVIDIA/NeMo/pull/6428", "diff_url": "https://github.com/NVIDIA/NeMo/pull/6428.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/6428.patch", "merged_at": "2023-04-15T02:35:57" }
# What does this PR do ? To enable PeFT training via adapter mixins, we should ensure all_reduce is not called on params' grads when the param.requires_grad is False. This does not happen for normal (full fine-tuning) but will happen for PeFT. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * You can potentially add a usage example below ```python # Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: - [ ] Make sure you read and followed [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? - [ ] Did you add or update any necessary documentation? - [ ] Does the PR affect components that are optional to install? (Ex: Numba, Pynini, Apex etc) - [ ] Reviewer: Does the PR have correct import guards for all optional libraries? **PR Type**: - [ ] New Feature - [x] Bugfix - [ ] Documentation If you haven't finished some of the above items you can still open "Draft" PR. ## Who can review? Anyone in the community is free to review the PR once the checks have passed. [Contributor guidelines](https://github.com/NVIDIA/NeMo/blob/main/CONTRIBUTING.md) contains specific people who can review PRs to various areas. # Additional Information * Related to # (issue)
{ "login": "arendu", "id": 108822655, "node_id": "U_kgDOBnyAfw", "avatar_url": "https://avatars.githubusercontent.com/u/108822655?v=4", "gravatar_id": "", "url": "https://api.github.com/users/arendu", "html_url": "https://github.com/arendu", "followers_url": "https://api.github.com/users/arendu/followers", "following_url": "https://api.github.com/users/arendu/following{/other_user}", "gists_url": "https://api.github.com/users/arendu/gists{/gist_id}", "starred_url": "https://api.github.com/users/arendu/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/arendu/subscriptions", "organizations_url": "https://api.github.com/users/arendu/orgs", "repos_url": "https://api.github.com/users/arendu/repos", "events_url": "https://api.github.com/users/arendu/events{/privacy}", "received_events_url": "https://api.github.com/users/arendu/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/6428/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/6428/timeline
null
null
true