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/5897
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5897/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5897/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5897/events
https://github.com/NVIDIA/NeMo/pull/5897
1,564,960,387
PR_kwDOC_bI7s5I8qXB
5,897
Fix Silence Sampling Algorithm for ASR Multi-speaker Data Simulator
{ "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-01-31T20:30:40
2023-02-12T20:49:12
2023-02-12T20:49:12
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5897", "html_url": "https://github.com/NVIDIA/NeMo/pull/5897", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5897.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5897.patch", "merged_at": "2023-02-12T20:49:12" }
Signed-off-by: stevehuang52 <[email protected]> # What does this PR do ? Replace the previous silence insertion method with a new one that guarantees close approximation to specified `mean_silence` **Collection**: [ASR] # Adding Silence in ASR Data Simulator ## Requirements: 1. Sentence durations in each session follow a negative-binomial (NB) distribution 2. Silence ratios in all sessions follows a Beta distribution (range in [0.1]) 3. Per silence length should look like a long tail distribution, thus Gamma distribution is used. 4. Silence Uniformity: each speech sentence (overlaps combined) should be followed by some minimum silence 5. Silence Variablity: per-silence durations and sentence durations should be approximately independent (i.e., p-value close to 0) ## Parameters: - `NUM_SESSIONS`: number of sessions - `MAX_SESS_DUR`: maximum session duration - `SAMPLING_RATE`: sampling rate for audio - `[NB_COUNT, NB_PROB]`: parameters for per sentence duration distribution - `SILENCE_RATIO_MEAN`: mean for target silence ratio in all sessions, in (0,1) - `SILENCE_RATIO_VAR`: std for target silence ratio in all sessions, set small values (e.g., 0.1) for better approximation to mean, set larger (e.g., 2.0) for more diversity in silence. - `PER_SILENCE_VAR`: std for individual silence length, default to 20 for achieving p-value=0.1 to de-correlate speech and silence lengths - `[PER_SILENCE_MIN,PER_SILENCE_MAX]`: mix and max of per silence duration in seconds, max=-1 for no constraint ## Algorithm: ```python MAX_SESSION_LEN = MAX_SESS_DUR * SAMPLING_RATE MIN_SILENCE_LEN = SILENCE_RATIO_MIN * SAMPLING_RATE MAX_SILENCE_LEN = min(SILENCE_RATIO_MAX * SAMPLING_RATE, MAX_SESSION_LEN) sessions = [] for i in range(NUM_SESSIONS): curr_session = [] curr_sess_len = 0 curr_speech_len = 0 curr_silence_len = 0 a = SILENCE_RATIO_MEAN ** 2 * (1 - SILENCE_RATIO_MEAN) / SILENCE_RATIO_VAR - SILENCE_RATIO_MEAN b = SILENCE_RATIO_MEAN * (1 - SILENCE_RATIO_MEAN) ** 2 / SILENCE_RATIO_VAR - (1 - SILENCE_RATIO_MEAN) sess_silence_mean = Beta(a, b).rvs() while curr_sess_len < MAX_SESSION_LEN: speech_len = NB(NB_COUNT, NB_PROB).rvs() sentence = build_sentence(speech_len,curr_sess_len, MAX_SESSION_LEN) curr_session += sentence curr_sess_len += len(sentence) curr_speech_len += len(sentence) if curr_sess_len >= MAX_SESSION_LEN: break # dynamically adjust silence mean to achieve the overall mean silence_mean = max(1, MIN_SIL1ENCE_LEN, (sess_silence_mean * curr_sess_len - curr_silence_len) / (1 - sess_silence_mean)) # sampling with large std to de-correlate with previous sentence length silence_len = Gamma(a=silence_mean ** 2 / PER_SILENCE_VAR, scale=PER_SILENCE_VAR / silence_mean).rvs() # enforce valid length silence_len = min(max(MIN_SILENCE_LEN, silence_len), MAX_SILENCE_LEN, max_session_len - curr_sess_len) silence = add_silence(silence_len) curr_session += silence curr_sess_len += silence_len curr_silence_len += silence_len sessions.append(curr_session) ``` ## Notes - Harder to get desired silence ratio with shorter session length - E.g., sess_len=20s, mean_silence=0.35, 500 hours -> actual ratio 0.24 - E.g., sess_len=120s. mean_silence=0.3, 100 hours -> actual ratio ~0.3 - Silence lengths distribution is approximately exponential, and reducing silence ratio can reduce the avg silence length - E.g., mean_silence=0.1, std=0.05 -> mean per-silence length 0.2s - E.g., mean_silence=0.2, std=0.5 -> mean per-silence length 2.4s
{ "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/5897/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/5897/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5896
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5896/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5896/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5896/events
https://github.com/NVIDIA/NeMo/issues/5896
1,564,887,877
I_kwDOC_bI7s5dRktF
5,896
conformer transducer timestamp extraction
{ "login": "Khimer", "id": 45174146, "node_id": "MDQ6VXNlcjQ1MTc0MTQ2", "avatar_url": "https://avatars.githubusercontent.com/u/45174146?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Khimer", "html_url": "https://github.com/Khimer", "followers_url": "https://api.github.com/users/Khimer/followers", "following_url": "https://api.github.com/users/Khimer/following{/other_user}", "gists_url": "https://api.github.com/users/Khimer/gists{/gist_id}", "starred_url": "https://api.github.com/users/Khimer/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Khimer/subscriptions", "organizations_url": "https://api.github.com/users/Khimer/orgs", "repos_url": "https://api.github.com/users/Khimer/repos", "events_url": "https://api.github.com/users/Khimer/events{/privacy}", "received_events_url": "https://api.github.com/users/Khimer/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
null
[]
null
null
2023-01-31T19:34:01
2023-02-01T15:43:24
2023-02-01T15:43:23
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
Good day! Thanks for your hard work! I am trying to extract timestamps for a model stt_en_conformer_transducer_large Following https://colab.research.google.com/github/NVIDIA/NeMo/blob/stable/tutorials/asr/ASR_with_Transducers.ipynb#scrollTo=xkv_x8NAfpX3 But I'm having difficulty converting timestamps: "Note that each timestep here is (roughly) timestep∗total_stride_of_model∗preprocessor.window_stride seconds timestamp" - I can extract "timestep" from hypotheses, but model.preprocessor doesn't have a window_stride field and I'm not sure which value to use here. Also, I couldn't figure out where the "total_stride_of_model" value comes from. Do I understand correctly, total_stride_of_model == len(audio) / 'window_stride'? By the way, the 'window_stride' field is also missing from model.preprocessor. Thank you!
{ "login": "Khimer", "id": 45174146, "node_id": "MDQ6VXNlcjQ1MTc0MTQ2", "avatar_url": "https://avatars.githubusercontent.com/u/45174146?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Khimer", "html_url": "https://github.com/Khimer", "followers_url": "https://api.github.com/users/Khimer/followers", "following_url": "https://api.github.com/users/Khimer/following{/other_user}", "gists_url": "https://api.github.com/users/Khimer/gists{/gist_id}", "starred_url": "https://api.github.com/users/Khimer/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Khimer/subscriptions", "organizations_url": "https://api.github.com/users/Khimer/orgs", "repos_url": "https://api.github.com/users/Khimer/repos", "events_url": "https://api.github.com/users/Khimer/events{/privacy}", "received_events_url": "https://api.github.com/users/Khimer/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5896/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/5896/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5895
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5895/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5895/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5895/events
https://github.com/NVIDIA/NeMo/pull/5895
1,564,853,774
PR_kwDOC_bI7s5I8T1f
5,895
Update isort to the latest version
{ "login": "artbataev", "id": 9380560, "node_id": "MDQ6VXNlcjkzODA1NjA=", "avatar_url": "https://avatars.githubusercontent.com/u/9380560?v=4", "gravatar_id": "", "url": "https://api.github.com/users/artbataev", "html_url": "https://github.com/artbataev", "followers_url": "https://api.github.com/users/artbataev/followers", "following_url": "https://api.github.com/users/artbataev/following{/other_user}", "gists_url": "https://api.github.com/users/artbataev/gists{/gist_id}", "starred_url": "https://api.github.com/users/artbataev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/artbataev/subscriptions", "organizations_url": "https://api.github.com/users/artbataev/orgs", "repos_url": "https://api.github.com/users/artbataev/repos", "events_url": "https://api.github.com/users/artbataev/events{/privacy}", "received_events_url": "https://api.github.com/users/artbataev/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": 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": "" } ]
closed
false
null
[]
null
null
2023-01-31T19:07:12
2023-02-03T17:19:51
2023-02-03T17:15:08
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5895", "html_url": "https://github.com/NVIDIA/NeMo/pull/5895", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5895.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5895.patch", "merged_at": "2023-02-03T17:15:08" }
Signed-off-by: Vladimir Bataev <[email protected]> # What does this PR do ? Update `isort` to the latest version **Collection**: [Note which collection this PR will affect] # Changelog - update `isort` to the latest version - apply latest `isort` to the codebase # Usage ```shell isort . # one can simply use `isort` command to fix all files or provided paths python setup.py style --fix # also will work for isort + black, as previously ``` # 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 - [ ] 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 #5893
{ "login": "artbataev", "id": 9380560, "node_id": "MDQ6VXNlcjkzODA1NjA=", "avatar_url": "https://avatars.githubusercontent.com/u/9380560?v=4", "gravatar_id": "", "url": "https://api.github.com/users/artbataev", "html_url": "https://github.com/artbataev", "followers_url": "https://api.github.com/users/artbataev/followers", "following_url": "https://api.github.com/users/artbataev/following{/other_user}", "gists_url": "https://api.github.com/users/artbataev/gists{/gist_id}", "starred_url": "https://api.github.com/users/artbataev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/artbataev/subscriptions", "organizations_url": "https://api.github.com/users/artbataev/orgs", "repos_url": "https://api.github.com/users/artbataev/repos", "events_url": "https://api.github.com/users/artbataev/events{/privacy}", "received_events_url": "https://api.github.com/users/artbataev/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5895/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/5895/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5894
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5894/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5894/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5894/events
https://github.com/NVIDIA/NeMo/issues/5894
1,564,650,759
I_kwDOC_bI7s5dQq0H
5,894
Use `mypy` for type checking
{ "login": "artbataev", "id": 9380560, "node_id": "MDQ6VXNlcjkzODA1NjA=", "avatar_url": "https://avatars.githubusercontent.com/u/9380560?v=4", "gravatar_id": "", "url": "https://api.github.com/users/artbataev", "html_url": "https://github.com/artbataev", "followers_url": "https://api.github.com/users/artbataev/followers", "following_url": "https://api.github.com/users/artbataev/following{/other_user}", "gists_url": "https://api.github.com/users/artbataev/gists{/gist_id}", "starred_url": "https://api.github.com/users/artbataev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/artbataev/subscriptions", "organizations_url": "https://api.github.com/users/artbataev/orgs", "repos_url": "https://api.github.com/users/artbataev/repos", "events_url": "https://api.github.com/users/artbataev/events{/privacy}", "received_events_url": "https://api.github.com/users/artbataev/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": 5105389764, "node_id": "LA_kwDOC_bI7s8AAAABME4QxA", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/discussion", "name": "discussion", "color": "88C8B9", "default": false, "description": "" } ]
closed
false
{ "login": "artbataev", "id": 9380560, "node_id": "MDQ6VXNlcjkzODA1NjA=", "avatar_url": "https://avatars.githubusercontent.com/u/9380560?v=4", "gravatar_id": "", "url": "https://api.github.com/users/artbataev", "html_url": "https://github.com/artbataev", "followers_url": "https://api.github.com/users/artbataev/followers", "following_url": "https://api.github.com/users/artbataev/following{/other_user}", "gists_url": "https://api.github.com/users/artbataev/gists{/gist_id}", "starred_url": "https://api.github.com/users/artbataev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/artbataev/subscriptions", "organizations_url": "https://api.github.com/users/artbataev/orgs", "repos_url": "https://api.github.com/users/artbataev/repos", "events_url": "https://api.github.com/users/artbataev/events{/privacy}", "received_events_url": "https://api.github.com/users/artbataev/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "login": "artbataev", "id": 9380560, "node_id": "MDQ6VXNlcjkzODA1NjA=", "avatar_url": "https://avatars.githubusercontent.com/u/9380560?v=4", "gravatar_id": "", "url": "https://api.github.com/users/artbataev", "html_url": "https://github.com/artbataev", "followers_url": "https://api.github.com/users/artbataev/followers", "following_url": "https://api.github.com/users/artbataev/following{/other_user}", "gists_url": "https://api.github.com/users/artbataev/gists{/gist_id}", "starred_url": "https://api.github.com/users/artbataev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/artbataev/subscriptions", "organizations_url": "https://api.github.com/users/artbataev/orgs", "repos_url": "https://api.github.com/users/artbataev/repos", "events_url": "https://api.github.com/users/artbataev/events{/privacy}", "received_events_url": "https://api.github.com/users/artbataev/received_events", "type": "User", "user_view_type": "public", "site_admin": false } ]
null
null
2023-01-31T16:33:56
2023-03-13T01:57:37
2023-03-13T01:57:36
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Is your feature request related to a problem? Please describe.** In many places in NeMo, Python type annotations are used. Since type annotations are not checked, there are some cases where annotations are incorrect or not precise (e.g., using one type when some union is really used). **Describe the solution you'd like** Add `mypy` type checking support. **Main principle:** do not require types, but if types are provided, check (require) correctness. - firstly, add a minimal PR that doesn't affect existing code (except 2 lines, since duplicated type annotations are critical errors for mypy) - provide PRs one-by-one to fix some of the errors to improve code quality, removing the error types from ignore list. **Describe alternatives you've considered** [Pyre](https://github.com/facebook/pyre-check) also can be considered as an alternative, but `mypy` is usually used as a default choice. **Additional context** ...
{ "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/5894/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/5894/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5893
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5893/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5893/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5893/events
https://github.com/NVIDIA/NeMo/issues/5893
1,564,632,159
I_kwDOC_bI7s5dQmRf
5,893
Update `isort` to the latest version
{ "login": "artbataev", "id": 9380560, "node_id": "MDQ6VXNlcjkzODA1NjA=", "avatar_url": "https://avatars.githubusercontent.com/u/9380560?v=4", "gravatar_id": "", "url": "https://api.github.com/users/artbataev", "html_url": "https://github.com/artbataev", "followers_url": "https://api.github.com/users/artbataev/followers", "following_url": "https://api.github.com/users/artbataev/following{/other_user}", "gists_url": "https://api.github.com/users/artbataev/gists{/gist_id}", "starred_url": "https://api.github.com/users/artbataev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/artbataev/subscriptions", "organizations_url": "https://api.github.com/users/artbataev/orgs", "repos_url": "https://api.github.com/users/artbataev/repos", "events_url": "https://api.github.com/users/artbataev/events{/privacy}", "received_events_url": "https://api.github.com/users/artbataev/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
{ "login": "artbataev", "id": 9380560, "node_id": "MDQ6VXNlcjkzODA1NjA=", "avatar_url": "https://avatars.githubusercontent.com/u/9380560?v=4", "gravatar_id": "", "url": "https://api.github.com/users/artbataev", "html_url": "https://github.com/artbataev", "followers_url": "https://api.github.com/users/artbataev/followers", "following_url": "https://api.github.com/users/artbataev/following{/other_user}", "gists_url": "https://api.github.com/users/artbataev/gists{/gist_id}", "starred_url": "https://api.github.com/users/artbataev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/artbataev/subscriptions", "organizations_url": "https://api.github.com/users/artbataev/orgs", "repos_url": "https://api.github.com/users/artbataev/repos", "events_url": "https://api.github.com/users/artbataev/events{/privacy}", "received_events_url": "https://api.github.com/users/artbataev/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "login": "artbataev", "id": 9380560, "node_id": "MDQ6VXNlcjkzODA1NjA=", "avatar_url": "https://avatars.githubusercontent.com/u/9380560?v=4", "gravatar_id": "", "url": "https://api.github.com/users/artbataev", "html_url": "https://github.com/artbataev", "followers_url": "https://api.github.com/users/artbataev/followers", "following_url": "https://api.github.com/users/artbataev/following{/other_user}", "gists_url": "https://api.github.com/users/artbataev/gists{/gist_id}", "starred_url": "https://api.github.com/users/artbataev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/artbataev/subscriptions", "organizations_url": "https://api.github.com/users/artbataev/orgs", "repos_url": "https://api.github.com/users/artbataev/repos", "events_url": "https://api.github.com/users/artbataev/events{/privacy}", "received_events_url": "https://api.github.com/users/artbataev/received_events", "type": "User", "user_view_type": "public", "site_admin": false } ]
null
null
2023-01-31T16:24:33
2023-02-03T17:34:27
2023-02-03T17:34:27
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Is your feature request related to a problem? Please describe.** NeMo currently requires a very old version of `isort` (<5). The latest version is 5.10.1 Benefits of supporting the latest `isort`: - latest version => improved support, fewer bugs, etc - no conflicts with new repos, more friendly for new developers - explicit config instead of hard-coded options in setup.py - it is possible to use the `isort` executable instead of a custom command from `setup.py` **Describe the solution you'd like** Update `isort` to the latest version. Use updated config parameters (for `black` support). **Cost of change:** ~35 files will be changed (the new version is a bit more restrictive) **Describe alternatives you've considered** ... **Additional context** ...
{ "login": "artbataev", "id": 9380560, "node_id": "MDQ6VXNlcjkzODA1NjA=", "avatar_url": "https://avatars.githubusercontent.com/u/9380560?v=4", "gravatar_id": "", "url": "https://api.github.com/users/artbataev", "html_url": "https://github.com/artbataev", "followers_url": "https://api.github.com/users/artbataev/followers", "following_url": "https://api.github.com/users/artbataev/following{/other_user}", "gists_url": "https://api.github.com/users/artbataev/gists{/gist_id}", "starred_url": "https://api.github.com/users/artbataev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/artbataev/subscriptions", "organizations_url": "https://api.github.com/users/artbataev/orgs", "repos_url": "https://api.github.com/users/artbataev/repos", "events_url": "https://api.github.com/users/artbataev/events{/privacy}", "received_events_url": "https://api.github.com/users/artbataev/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5893/reactions", "total_count": 2, "+1": 2, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/NVIDIA/NeMo/issues/5893/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5892
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5892/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5892/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5892/events
https://github.com/NVIDIA/NeMo/pull/5892
1,564,481,025
PR_kwDOC_bI7s5I7D3t
5,892
Pitch objective
{ "login": "coopie", "id": 6509132, "node_id": "MDQ6VXNlcjY1MDkxMzI=", "avatar_url": "https://avatars.githubusercontent.com/u/6509132?v=4", "gravatar_id": "", "url": "https://api.github.com/users/coopie", "html_url": "https://github.com/coopie", "followers_url": "https://api.github.com/users/coopie/followers", "following_url": "https://api.github.com/users/coopie/following{/other_user}", "gists_url": "https://api.github.com/users/coopie/gists{/gist_id}", "starred_url": "https://api.github.com/users/coopie/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/coopie/subscriptions", "organizations_url": "https://api.github.com/users/coopie/orgs", "repos_url": "https://api.github.com/users/coopie/repos", "events_url": "https://api.github.com/users/coopie/events{/privacy}", "received_events_url": "https://api.github.com/users/coopie/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": 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-01-31T15:01:37
2023-01-31T15:05:16
2023-01-31T15:03:40
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5892", "html_url": "https://github.com/NVIDIA/NeMo/pull/5892", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5892.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5892.patch", "merged_at": null }
some promising signs of improved spectrogram clarity: ![image](https://user-images.githubusercontent.com/6509132/215101429-c64267c2-e6d2-4cc5-9ad6-7392906daaf1.png) summary of changes: * model now has a first stage consisting of token and spectrogram encoders * after the first stage an attention layer with a learned query vector is used to produce a "speaker encoding" from the spectrogram encodings * The speaker encoding is added to the token encodings which are then used to predict token duration and pitch * token encodings are then aligned with the spectrogram encodings, then run all together through the decoder
{ "login": "coopie", "id": 6509132, "node_id": "MDQ6VXNlcjY1MDkxMzI=", "avatar_url": "https://avatars.githubusercontent.com/u/6509132?v=4", "gravatar_id": "", "url": "https://api.github.com/users/coopie", "html_url": "https://github.com/coopie", "followers_url": "https://api.github.com/users/coopie/followers", "following_url": "https://api.github.com/users/coopie/following{/other_user}", "gists_url": "https://api.github.com/users/coopie/gists{/gist_id}", "starred_url": "https://api.github.com/users/coopie/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/coopie/subscriptions", "organizations_url": "https://api.github.com/users/coopie/orgs", "repos_url": "https://api.github.com/users/coopie/repos", "events_url": "https://api.github.com/users/coopie/events{/privacy}", "received_events_url": "https://api.github.com/users/coopie/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5892/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/5892/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5891
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5891/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5891/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5891/events
https://github.com/NVIDIA/NeMo/issues/5891
1,564,072,610
I_kwDOC_bI7s5dOdqi
5,891
Streaming RNNT ASR with context
{ "login": "robertveenhoven", "id": 10922796, "node_id": "MDQ6VXNlcjEwOTIyNzk2", "avatar_url": "https://avatars.githubusercontent.com/u/10922796?v=4", "gravatar_id": "", "url": "https://api.github.com/users/robertveenhoven", "html_url": "https://github.com/robertveenhoven", "followers_url": "https://api.github.com/users/robertveenhoven/followers", "following_url": "https://api.github.com/users/robertveenhoven/following{/other_user}", "gists_url": "https://api.github.com/users/robertveenhoven/gists{/gist_id}", "starred_url": "https://api.github.com/users/robertveenhoven/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/robertveenhoven/subscriptions", "organizations_url": "https://api.github.com/users/robertveenhoven/orgs", "repos_url": "https://api.github.com/users/robertveenhoven/repos", "events_url": "https://api.github.com/users/robertveenhoven/events{/privacy}", "received_events_url": "https://api.github.com/users/robertveenhoven/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": "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-01-31T10:48:18
2023-07-14T08:49:47
2023-03-18T01:56:15
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
Im trying to implement streaming ASR from microphone with PyAudio. However, Im a bit stuck on which functions to use exactly. Im now using pyaudio with stream_callback as provided by Online_ASR_Microphone_Demo.ipynb, but Im stuck in how to progress further. I found the script of speech_to_text_cache_aware_streaming_infer.py, which uses conformer_stream_step() in combination with a model trained specifically for streaming, but there are also a lot of functions in streaming_utils.py as StreamingFeatureBufferer and FrameASR to provide buffers and transcribe from there, however in my understanding the transcription wouldnt use context. Im a bit stuck on which functions I should for streaming ASR with the best possible result. Can I directly use the chunks from the audio in the conformer_stream_step() or do I need something like StreamingFeatureBufferer in between? Could you provide an overview on which functions I should use to provide such a pipeline? And should I train a streaming model? Or would a full context model work fine.
{ "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/5891/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/5891/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5890
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5890/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5890/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5890/events
https://github.com/NVIDIA/NeMo/issues/5890
1,563,514,316
I_kwDOC_bI7s5dMVXM
5,890
Lots of "... contains unknown char/phoneme...Symbol will be skipped." warnings popping up.
{ "login": "godspirit00", "id": 16176151, "node_id": "MDQ6VXNlcjE2MTc2MTUx", "avatar_url": "https://avatars.githubusercontent.com/u/16176151?v=4", "gravatar_id": "", "url": "https://api.github.com/users/godspirit00", "html_url": "https://github.com/godspirit00", "followers_url": "https://api.github.com/users/godspirit00/followers", "following_url": "https://api.github.com/users/godspirit00/following{/other_user}", "gists_url": "https://api.github.com/users/godspirit00/gists{/gist_id}", "starred_url": "https://api.github.com/users/godspirit00/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/godspirit00/subscriptions", "organizations_url": "https://api.github.com/users/godspirit00/orgs", "repos_url": "https://api.github.com/users/godspirit00/repos", "events_url": "https://api.github.com/users/godspirit00/events{/privacy}", "received_events_url": "https://api.github.com/users/godspirit00/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": 4418253970, "node_id": "LA_kwDOC_bI7s8AAAABB1k0kg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/TTS", "name": "TTS", "color": "49AF28", "default": false, "description": "" }, { "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": "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 }
[ { "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 } ]
null
null
2023-01-31T02:32:50
2023-06-02T02:03:15
2023-06-02T02:03:15
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
I tried to train a fastpitch model on the Blizzard 2013 dataset. When I started the training, lots of such warnings kept popping up, for example, ``` [NeMo W 2023-01-31 10:06:18 tts_tokenizers:478] Text: [And then on her BRIY1FLIY0 IH0KSPREH1SIH0NG HHER1 sorrow for what HHIY1 must have suffered, HHIY1 replied,] contains unknown char/phoneme: [A].Original text: [And then on her briefly expressing her sorrow for what he must have suffered, he replied,]. Symbol will be skipped. [NeMo W 2023-01-31 10:06:18 tts_tokenizers:478] Text: [How different from what it was the last two dances.] contains unknown char/phoneme: [H].Original text: [How different from what it was the last two dances.]. Symbol will be skipped. [NeMo W 2023-01-31 10:06:18 tts_tokenizers:478] Text: [which was VEH1RIY0 LIH1TAH0L relieved by the long speeches of MIH1STER0 Collins.] contains unknown char/phoneme: [C].Original text: [which was very little relieved by the long speeches of mister Collins.]. Symbol will be skipped. [NeMo W 2023-01-31 10:06:18 tts_tokenizers:478] Text: [Henry is different. He LAH1VZ to be DUW1IH0NG.] contains unknown char/phoneme: [H].Original text: [Henry is different. He loves to be doing.]. Symbol will be skipped. [NeMo W 2023-01-31 10:06:18 tts_tokenizers:478] Text: [Henry is different. He LAH1VZ to be DUW1IH0NG.] contains unknown char/phoneme: [H].Original text: [Henry is different. He loves to be doing.]. Symbol will be skipped. [NeMo W 2023-01-31 10:06:18 tts_tokenizers:478] Text: [And if I HHAE1V good luck, your mother SHAE1L have some.] contains unknown char/phoneme: [A].Original text: [And if I have good luck, your mother shall have some.]. Symbol will be skipped. [NeMo W 2023-01-31 10:06:18 tts_tokenizers:478] Text: [And if I HHAE1V good luck, your mother SHAE1L have some.] contains unknown char/phoneme: [I].Original text: [And if I have good luck, your mother shall have some.]. Symbol will be skipped. [NeMo W 2023-01-31 10:06:18 tts_tokenizers:478] Text: [and I BIH0LIY1V there is SKEH1RSLIY0 a YAH1NG LEY1DIY0 in the United Kingdoms.] contains unknown char/phoneme: [I].Original text: [and I believe there is scarcely a young lady in the United Kingdoms.]. Symbol will be skipped. [NeMo W 2023-01-31 10:06:18 tts_tokenizers:478] Text: [and I BIH0LIY1V there is SKEH1RSLIY0 a YAH1NG LEY1DIY0 in the United Kingdoms.] contains unknown char/phoneme: [U].Original text: [and I believe there is scarcely a young lady in the United Kingdoms.]. Symbol will be skipped. [NeMo W 2023-01-31 10:06:18 tts_tokenizers:478] Text: [It is NAA1T AE1T AO1L what I LAY1K, HHIY1 continued.] contains unknown char/phoneme: [I].Original text: [It is not at all what I like, he continued.]. Symbol will be skipped. [NeMo W 2023-01-31 10:06:18 tts_tokenizers:478] Text: [It is NAA1T AE1T AO1L what I LAY1K, HHIY1 continued.] contains unknown char/phoneme: [I].Original text: [It is not at all what I like, he continued.]. Symbol will be skipped. ``` But it seems that the original text is made up of just some ordinary words. Is it normal? What needs to be done about it? 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/5890/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/5890/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5889
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5889/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5889/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5889/events
https://github.com/NVIDIA/NeMo/pull/5889
1,563,503,278
PR_kwDOC_bI7s5I3xkc
5,889
Remove MCD_DTW tarball
{ "login": "redoctopus", "id": 4268876, "node_id": "MDQ6VXNlcjQyNjg4NzY=", "avatar_url": "https://avatars.githubusercontent.com/u/4268876?v=4", "gravatar_id": "", "url": "https://api.github.com/users/redoctopus", "html_url": "https://github.com/redoctopus", "followers_url": "https://api.github.com/users/redoctopus/followers", "following_url": "https://api.github.com/users/redoctopus/following{/other_user}", "gists_url": "https://api.github.com/users/redoctopus/gists{/gist_id}", "starred_url": "https://api.github.com/users/redoctopus/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/redoctopus/subscriptions", "organizations_url": "https://api.github.com/users/redoctopus/orgs", "repos_url": "https://api.github.com/users/redoctopus/repos", "events_url": "https://api.github.com/users/redoctopus/events{/privacy}", "received_events_url": "https://api.github.com/users/redoctopus/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-01-31T02:18:40
2023-01-31T22:37:13
2023-01-31T22:37:09
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5889", "html_url": "https://github.com/NVIDIA/NeMo/pull/5889", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5889.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5889.patch", "merged_at": "2023-01-31T22:37:09" }
Signed-off-by: Jocelyn Huang <[email protected]> # What does this PR do ? Removes `MCD_DTW_examples.tar` **Collection**: TTS
{ "login": "redoctopus", "id": 4268876, "node_id": "MDQ6VXNlcjQyNjg4NzY=", "avatar_url": "https://avatars.githubusercontent.com/u/4268876?v=4", "gravatar_id": "", "url": "https://api.github.com/users/redoctopus", "html_url": "https://github.com/redoctopus", "followers_url": "https://api.github.com/users/redoctopus/followers", "following_url": "https://api.github.com/users/redoctopus/following{/other_user}", "gists_url": "https://api.github.com/users/redoctopus/gists{/gist_id}", "starred_url": "https://api.github.com/users/redoctopus/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/redoctopus/subscriptions", "organizations_url": "https://api.github.com/users/redoctopus/orgs", "repos_url": "https://api.github.com/users/redoctopus/repos", "events_url": "https://api.github.com/users/redoctopus/events{/privacy}", "received_events_url": "https://api.github.com/users/redoctopus/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5889/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/5889/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5888
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5888/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5888/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5888/events
https://github.com/NVIDIA/NeMo/pull/5888
1,563,452,092
PR_kwDOC_bI7s5I3muq
5,888
Remove file history
{ "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 }
[]
closed
false
null
[]
null
null
2023-01-31T01:06:46
2023-01-31T01:24:25
2023-01-31T01:24:17
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
true
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5888", "html_url": "https://github.com/NVIDIA/NeMo/pull/5888", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5888.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5888.patch", "merged_at": null }
# What does this PR do ? Removing a file from git history. **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/5888/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/5888/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5887
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5887/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5887/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5887/events
https://github.com/NVIDIA/NeMo/pull/5887
1,563,449,746
PR_kwDOC_bI7s5I3mM7
5,887
Cleanup docs on r1.13.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": 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 } ]
closed
false
null
[]
null
null
2023-01-31T01:04:24
2023-02-21T08:29:36
2023-02-01T17:54:32
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5887", "html_url": "https://github.com/NVIDIA/NeMo/pull/5887", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5887.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5887.patch", "merged_at": null }
Signed-off-by: Oleksii Kuchaiev <[email protected]> # What does this PR do ? Some fixes and minor improvements to README.rst and RTD docs, # Changelog - [x] Moves Requirements and Installation into single source of truth (on RTD) - [x] Cleans up README.rst to make it less verbose and removing redundant and obsolete links **PR Type**: - [ ] New Feature - [ ] Bugfix - [x] Documentation
{ "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/5887/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/5887/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5886
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5886/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5886/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5886/events
https://github.com/NVIDIA/NeMo/pull/5886
1,563,284,499
PR_kwDOC_bI7s5I3CFc
5,886
Remove RETRO doc
{ "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-01-30T22:06:48
2023-01-31T16:44:58
2023-01-31T16:44:54
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5886", "html_url": "https://github.com/NVIDIA/NeMo/pull/5886", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5886.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5886.patch", "merged_at": "2023-01-31T16:44:54" }
# What does this PR do ? remove the doc temporally.
{ "login": "yidong72", "id": 43824965, "node_id": "MDQ6VXNlcjQzODI0OTY1", "avatar_url": "https://avatars.githubusercontent.com/u/43824965?v=4", "gravatar_id": "", "url": "https://api.github.com/users/yidong72", "html_url": "https://github.com/yidong72", "followers_url": "https://api.github.com/users/yidong72/followers", "following_url": "https://api.github.com/users/yidong72/following{/other_user}", "gists_url": "https://api.github.com/users/yidong72/gists{/gist_id}", "starred_url": "https://api.github.com/users/yidong72/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yidong72/subscriptions", "organizations_url": "https://api.github.com/users/yidong72/orgs", "repos_url": "https://api.github.com/users/yidong72/repos", "events_url": "https://api.github.com/users/yidong72/events{/privacy}", "received_events_url": "https://api.github.com/users/yidong72/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5886/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/5886/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5885
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5885/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5885/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5885/events
https://github.com/NVIDIA/NeMo/pull/5885
1,563,267,576
PR_kwDOC_bI7s5I2-c8
5,885
Remove RETRO doc
{ "login": "yidong72", "id": 43824965, "node_id": "MDQ6VXNlcjQzODI0OTY1", "avatar_url": "https://avatars.githubusercontent.com/u/43824965?v=4", "gravatar_id": "", "url": "https://api.github.com/users/yidong72", "html_url": "https://github.com/yidong72", "followers_url": "https://api.github.com/users/yidong72/followers", "following_url": "https://api.github.com/users/yidong72/following{/other_user}", "gists_url": "https://api.github.com/users/yidong72/gists{/gist_id}", "starred_url": "https://api.github.com/users/yidong72/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yidong72/subscriptions", "organizations_url": "https://api.github.com/users/yidong72/orgs", "repos_url": "https://api.github.com/users/yidong72/repos", "events_url": "https://api.github.com/users/yidong72/events{/privacy}", "received_events_url": "https://api.github.com/users/yidong72/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-01-30T21:52:07
2023-01-30T22:06:21
2023-01-30T22:06:16
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5885", "html_url": "https://github.com/NVIDIA/NeMo/pull/5885", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5885.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5885.patch", "merged_at": "2023-01-30T22:06:16" }
# What does this PR do ? remove the doc temporally.
{ "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/5885/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/5885/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5884
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5884/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5884/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5884/events
https://github.com/NVIDIA/NeMo/issues/5884
1,561,919,141
I_kwDOC_bI7s5dGP6l
5,884
No Convergence on SqueezeFormer character vocab based CTC Models
{ "login": "rajeevbaalwan", "id": 18329235, "node_id": "MDQ6VXNlcjE4MzI5MjM1", "avatar_url": "https://avatars.githubusercontent.com/u/18329235?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rajeevbaalwan", "html_url": "https://github.com/rajeevbaalwan", "followers_url": "https://api.github.com/users/rajeevbaalwan/followers", "following_url": "https://api.github.com/users/rajeevbaalwan/following{/other_user}", "gists_url": "https://api.github.com/users/rajeevbaalwan/gists{/gist_id}", "starred_url": "https://api.github.com/users/rajeevbaalwan/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rajeevbaalwan/subscriptions", "organizations_url": "https://api.github.com/users/rajeevbaalwan/orgs", "repos_url": "https://api.github.com/users/rajeevbaalwan/repos", "events_url": "https://api.github.com/users/rajeevbaalwan/events{/privacy}", "received_events_url": "https://api.github.com/users/rajeevbaalwan/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-01-30T07:51:40
2023-03-09T02:04:48
2023-03-09T02:04:48
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
I have been trying to train the SqueezeFormer-based ASR model for the Hindi language. Model is only converging if I use BPE based vocabulary while if I used Non BPE based vocabulary on same training data model fails to converge. Below are the experiment logs. **BPE-BASED VOCABULARY** ![bpe](https://user-images.githubusercontent.com/18329235/215416244-fb4a23c3-cced-418d-b854-5179269f0911.png) **NON BPE BASED VOCABULARY** ![non-bpe](https://user-images.githubusercontent.com/18329235/215416329-4b767c12-d4a7-49e5-aaa8-43205755fc46.png) **MODEL DETAILS** I am training SqueezeFormer Medium model with the following configurations as provided in the config file in the repo. |Vocab type| Model | d_model | n_layers | n_heads | time_masks | lr | time_reduce_idx | GBS | |-------------|--------------|---------|----------|---------|------------|--------|-----------------|------| |BPE | Medium | 324 | 20 | 4 | 7 | 1.5e-3 | 9 | 1024 | |Non BPE| Medium | 324 | 20 | 4 | 7 | 1.5e-3 | 9 | 1024 | **Expected behavior** Both model should be converged to nearly similar point. **Environment overview (please complete the following information)** - Environment location: [Bare-metal] - Method of NeMo install: [pip install or from source] `conda create --name nemo python==3.8` `conda activate nemo` `pip install torch==1.10.1+cu111 torchvision==0.11.2+cu111 torchaudio==0.10.1 -f https://download.pytorch.org/whl/cu111/torch_stable.html` `apt-get update && apt-get install -y libsndfile1 ffmpeg` `pip install Cython` `pip install nemo_toolkit['all']` **Environment details** Otherwise, please provide: - OS version: ubuntu 20.04 - PyTorch version : 1.10.1+cu111 - Python version: Python 3.8.0 Is there some configuration issue with bpe vs non bpe based model ??
{ "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/5884/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/5884/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5883
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5883/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5883/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5883/events
https://github.com/NVIDIA/NeMo/pull/5883
1,561,807,745
PR_kwDOC_bI7s5IyCAY
5,883
fix(readme): fix typo
{ "login": "jqueguiner", "id": 690878, "node_id": "MDQ6VXNlcjY5MDg3OA==", "avatar_url": "https://avatars.githubusercontent.com/u/690878?v=4", "gravatar_id": "", "url": "https://api.github.com/users/jqueguiner", "html_url": "https://github.com/jqueguiner", "followers_url": "https://api.github.com/users/jqueguiner/followers", "following_url": "https://api.github.com/users/jqueguiner/following{/other_user}", "gists_url": "https://api.github.com/users/jqueguiner/gists{/gist_id}", "starred_url": "https://api.github.com/users/jqueguiner/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jqueguiner/subscriptions", "organizations_url": "https://api.github.com/users/jqueguiner/orgs", "repos_url": "https://api.github.com/users/jqueguiner/repos", "events_url": "https://api.github.com/users/jqueguiner/events{/privacy}", "received_events_url": "https://api.github.com/users/jqueguiner/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
null
[]
null
null
2023-01-30T06:08:56
2023-01-31T04:33:27
2023-01-31T04:33:26
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5883", "html_url": "https://github.com/NVIDIA/NeMo/pull/5883", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5883.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5883.patch", "merged_at": "2023-01-31T04:33:26" }
Signed-off-by: Jean-Louis Queguiner <[email protected]> # What does this PR do ? Fix typo in readme **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) - [x] Did you write any new necessary tests? - [x] Did you add or update any necessary documentation? - [x] 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": "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/5883/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/5883/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5882
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5882/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5882/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5882/events
https://github.com/NVIDIA/NeMo/issues/5882
1,561,023,362
I_kwDOC_bI7s5dC1OC
5,882
Intent and slot classification tutorial training presents constant loss
{ "login": "giusarno", "id": 3173138, "node_id": "MDQ6VXNlcjMxNzMxMzg=", "avatar_url": "https://avatars.githubusercontent.com/u/3173138?v=4", "gravatar_id": "", "url": "https://api.github.com/users/giusarno", "html_url": "https://github.com/giusarno", "followers_url": "https://api.github.com/users/giusarno/followers", "following_url": "https://api.github.com/users/giusarno/following{/other_user}", "gists_url": "https://api.github.com/users/giusarno/gists{/gist_id}", "starred_url": "https://api.github.com/users/giusarno/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/giusarno/subscriptions", "organizations_url": "https://api.github.com/users/giusarno/orgs", "repos_url": "https://api.github.com/users/giusarno/repos", "events_url": "https://api.github.com/users/giusarno/events{/privacy}", "received_events_url": "https://api.github.com/users/giusarno/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": "Zhilin123", "id": 29811458, "node_id": "MDQ6VXNlcjI5ODExNDU4", "avatar_url": "https://avatars.githubusercontent.com/u/29811458?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Zhilin123", "html_url": "https://github.com/Zhilin123", "followers_url": "https://api.github.com/users/Zhilin123/followers", "following_url": "https://api.github.com/users/Zhilin123/following{/other_user}", "gists_url": "https://api.github.com/users/Zhilin123/gists{/gist_id}", "starred_url": "https://api.github.com/users/Zhilin123/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Zhilin123/subscriptions", "organizations_url": "https://api.github.com/users/Zhilin123/orgs", "repos_url": "https://api.github.com/users/Zhilin123/repos", "events_url": "https://api.github.com/users/Zhilin123/events{/privacy}", "received_events_url": "https://api.github.com/users/Zhilin123/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "login": "Zhilin123", "id": 29811458, "node_id": "MDQ6VXNlcjI5ODExNDU4", "avatar_url": "https://avatars.githubusercontent.com/u/29811458?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Zhilin123", "html_url": "https://github.com/Zhilin123", "followers_url": "https://api.github.com/users/Zhilin123/followers", "following_url": "https://api.github.com/users/Zhilin123/following{/other_user}", "gists_url": "https://api.github.com/users/Zhilin123/gists{/gist_id}", "starred_url": "https://api.github.com/users/Zhilin123/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Zhilin123/subscriptions", "organizations_url": "https://api.github.com/users/Zhilin123/orgs", "repos_url": "https://api.github.com/users/Zhilin123/repos", "events_url": "https://api.github.com/users/Zhilin123/events{/privacy}", "received_events_url": "https://api.github.com/users/Zhilin123/received_events", "type": "User", "user_view_type": "public", "site_admin": false } ]
null
null
2023-01-28T21:41:45
2023-03-18T01:56:19
2023-03-18T01:56:19
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
Hello, I have cloned the intent and slot classification tutorial and running it on Sagemaker. The branch is "Main", Environment Pytorch 1.12 and python 3.8. I have tried running via Jupiter notebook and via terminal. The result is always the same I have the training loss stack at 4.13 after 22 Epochs and still the same afterwards. Main modification to the existing is the max number of Epochs = 50. I assume this is not the expected behaviour. Can anybody help ? Just an example of the output. `` Epoch 26: 100%|| 346/346 [00:49<00:00, 6.99it/s, loss=4.13, v_num=4-50, lr=0.000]Epoch 26, global step 8424: 'val_loss' was not in top 3 `` ..... `` Epoch 28: 100% || 346/346 [00:49<00:00, 6.97it/s, loss=4.13, v_num=4-50, lr=0.000]Epoch 28, global step 9048: 'val_loss' was not in top 3 `` UPDATE: I noticed the following. 1) running in colab for an older version essentially same issue. `` https://colab.research.google.com/github/NVIDIA/NeMo/blob/stable/tutorials/nlp/Joint_Intent_and_Slot_Classification.ipynb#scrollTo=zt-cZuNVl6la `` I also noticed in logs something strange. Is the training set as the testing set not well balanced ?there seems not to be enough representation of the labels for intent and slot. `` [NeMo I 2023-01-28 23:00:43 intent_slot_classification_descriptor:87] Stats calculating for train mode... [NeMo I 2023-01-28 23:00:43 intent_slot_classification_descriptor:112] Three most popular intents in train mode: [NeMo I 2023-01-28 23:00:43 data_preprocessing:194] label: 0, 175 out of 9960 (1.76%). [NeMo I 2023-01-28 23:00:43 data_preprocessing:194] label: 2, 175 out of 9960 (1.76%). [NeMo I 2023-01-28 23:00:43 data_preprocessing:194] label: 6, 175 out of 9960 (1.76%). [NeMo I 2023-01-28 23:00:43 intent_slot_classification_descriptor:118] Three most popular slots in train mode: [NeMo I 2023-01-28 23:00:43 data_preprocessing:194] label: 54, 53689 out of 65658 (81.77%). [NeMo I 2023-01-28 23:00:43 data_preprocessing:194] label: 38, 1290 out of 65658 (1.96%). [NeMo I 2023-01-28 23:00:43 data_preprocessing:194] label: 12, 1233 out of 65658 (1.88%). [NeMo I 2023-01-28 23:00:43 intent_slot_classification_descriptor:121] Total Number of Intents: 9960 [NeMo I 2023-01-28 23:00:43 intent_slot_classification_descriptor:122] Intent Label Frequencies: {0: 175, 2: 175, 6: 175, 7: 175, 8: 175, 9: 175, 11: 175, 13: 175, 14: 175, 15: 175, 16: 175, 17: 175, 18: 175, 19: 175, 20: 175, 22: 175, 23: 175, 24: 175, 25: 175, 27: 175, 28: 175, 30: 175, 35: 175, 36: 175, 37: 175, 39: 175, 41: 175, 42: 175, 43: 175, 44: 175, 45: 175, 46: 175, 47: 175, 48: 175, 49: 175, 51: 175, 52: 175, 53: 175, 55: 175, 57: 175, 58: 175, 59: 175, 61: 175, 63: 175, 62: 171, 56: 165, 60: 163, 38: 162, 26: 151, 4: 142, 50: 134, 5: 126, 32: 126, 29: 114, 21: 110, 1: 106, 54: 97, 33: 89, 10: 79, 12: 79, 3: 72, 40: 70, 34: 69, 31: 35} [NeMo I 2023-01-28 23:00:43 intent_slot_classification_descriptor:123] Total Number of Slots: 65658 [NeMo I 2023-01-28 23:00:43 intent_slot_classification_descriptor:124] Slots Label Frequencies: {54: 53689, 38: 1290, 12: 1233, 46: 1076, 14: 637, 36: 599, 5: 579, 18: 526, 19: 458, 11: 423, 52: 356, 28: 345, 23: 330, 26: 317, 43: 298, 6: 252, 4: 247, 20: 233, 13: 207, 35: 176, 37: 167, 48: 158, 9: 138, 44: 137, 41: 136, 2: 134, 7: 133, 34: 131, 45: 120, 53: 114, 16: 106, 47: 95, 33: 91, 39: 87, 42: 70, 25: 66, 49: 60, 22: 51, 40: 48, 8: 42, 27: 37, 1: 34, 32: 33, 0: 28, 24: 23, 3: 23, 50: 23, 29: 22, 30: 22, 51: 21, 17: 15, 15: 9, 10: 8, 31: 4, 21: 1} [NeMo I 2023-01-28 23:00:43 intent_slot_classification_descriptor:128] Intent Weights: {0: 0.8892857142857142, 2: 0.8892857142857142, 6: 0.8892857142857142, 7: 0.8892857142857142, 8: 0.8892857142857142, 9: 0.8892857142857142, 11: 0.8892857142857142, 13: 0.8892857142857142, 14: 0.8892857142857142, 15: 0.8892857142857142, 16: 0.8892857142857142, 17: 0.8892857142857142, 18: 0.8892857142857142, 19: 0.8892857142857142, 20: 0.8892857142857142, 22: 0.8892857142857142, 23: 0.8892857142857142, 24: 0.8892857142857142, 25: 0.8892857142857142, 27: 0.8892857142857142, 28: 0.8892857142857142, 30: 0.8892857142857142, 35: 0.8892857142857142, 36: 0.8892857142857142, 37: 0.8892857142857142, 39: 0.8892857142857142, 41: 0.8892857142857142, 42: 0.8892857142857142, 43: 0.8892857142857142, 44: 0.8892857142857142, 45: 0.8892857142857142, 46: 0.8892857142857142, 47: 0.8892857142857142, 48: 0.8892857142857142, 49: 0.8892857142857142, 51: 0.8892857142857142, 52: 0.8892857142857142, 53: 0.8892857142857142, 55: 0.8892857142857142, 57: 0.8892857142857142, 58: 0.8892857142857142, 59: 0.8892857142857142, 61: 0.8892857142857142, 63: 0.8892857142857142, 62: 0.9100877192982456, 56: 0.9431818181818182, 60: 0.9547546012269938, 38: 0.9606481481481481, 26: 1.0306291390728477, 4: 1.095950704225352, 50: 1.1613805970149254, 5: 1.2351190476190477, 32: 1.2351190476190477, 29: 1.3651315789473684, 21: 1.4147727272727273, 1: 1.4681603773584906, 54: 1.6043814432989691, 33: 1.7485955056179776, 10: 1.9699367088607596, 12: 1.9699367088607596, 3: 2.1614583333333335, 40: 2.2232142857142856, 34: 2.255434782608696, 31: 4.446428571428571} [NeMo I 2023-01-28 23:00:43 intent_slot_classification_descriptor:130] Slot Weights: {54: 0.02223512857720982, 38: 0.9254122621564482, 12: 0.9681928776819287, 46: 1.109462656302805, 14: 1.8740687883545026, 36: 1.9929579602367582, 5: 2.061799340555817, 18: 2.2695471828551677, 19: 2.606510520047638, 11: 2.8221792392005156, 52: 3.353319713993871, 28: 3.4602371541501977, 23: 3.617520661157025, 26: 3.765873243475767, 43: 4.005979255643685, 6: 4.737229437229437, 4: 4.833124769966875, 20: 5.1235271166601635, 13: 5.767061923583663, 35: 6.782851239669421, 37: 7.14839412084921, 48: 7.555581127733026, 9: 8.650592885375493, 44: 8.713735899137358, 41: 8.777807486631016, 2: 8.908819538670285, 7: 8.975803144224196, 34: 9.112838306731437, 45: 9.948181818181817, 53: 10.47177033492823, 16: 11.262092624356775, 47: 12.566124401913875, 33: 13.118481518481518, 39: 13.721630094043887, 42: 17.054025974025976, 25: 18.087603305785123, 49: 19.896363636363635, 22: 23.40748663101604, 40: 24.870454545454546, 8: 28.423376623376623, 27: 32.26437346437346, 1: 35.11122994652406, 32: 36.175206611570246, 0: 42.63506493506493, 24: 51.903557312252964, 3: 51.903557312252964, 50: 51.903557312252964, 29: 54.26280991735537, 30: 54.26280991735537, 51: 56.846753246753245, 17: 79.58545454545454, 15: 132.64242424242425, 10: 149.22272727272727, 31: 298.44545454545454, 21: 1193.7818181818182} [NeMo I 2023-01-28 23:00:43 intent_slot_classification_descriptor:87] Stats calculating for test mode... ``
{ "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/5882/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/5882/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5881
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5881/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5881/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5881/events
https://github.com/NVIDIA/NeMo/pull/5881
1,560,717,614
PR_kwDOC_bI7s5IukVI
5,881
Support Transcribing a Manifest File in `transcribe()` method
{ "login": "farisalasmary", "id": 8818059, "node_id": "MDQ6VXNlcjg4MTgwNTk=", "avatar_url": "https://avatars.githubusercontent.com/u/8818059?v=4", "gravatar_id": "", "url": "https://api.github.com/users/farisalasmary", "html_url": "https://github.com/farisalasmary", "followers_url": "https://api.github.com/users/farisalasmary/followers", "following_url": "https://api.github.com/users/farisalasmary/following{/other_user}", "gists_url": "https://api.github.com/users/farisalasmary/gists{/gist_id}", "starred_url": "https://api.github.com/users/farisalasmary/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/farisalasmary/subscriptions", "organizations_url": "https://api.github.com/users/farisalasmary/orgs", "repos_url": "https://api.github.com/users/farisalasmary/repos", "events_url": "https://api.github.com/users/farisalasmary/events{/privacy}", "received_events_url": "https://api.github.com/users/farisalasmary/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-01-28T06:27:11
2023-02-05T20:35:43
2023-02-05T20:35:43
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5881", "html_url": "https://github.com/NVIDIA/NeMo/pull/5881", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5881.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5881.patch", "merged_at": null }
# What does this PR do ? This PR enables transcribing an already existing manifest file instead of providing a list of audio files in the variable `paths2audio_files`. **Collection**: ASR # Changelog - Modified the `transcribe` method in the `EncDecCTCModel` class to support transcribing from manifest file. I first check that one of the arguments `paths2audio_files` or `manifest_filepath` exists. If `manifest_filepath` is provided, add it to the `config` dict. Otherwise, create a temp manifest file from `paths2audio_files` list. # Usage * It can be combined with other models' output manifests, e.g. Lang ID, and use as an input to the ASR model using the `transcribe` method. # 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": "farisalasmary", "id": 8818059, "node_id": "MDQ6VXNlcjg4MTgwNTk=", "avatar_url": "https://avatars.githubusercontent.com/u/8818059?v=4", "gravatar_id": "", "url": "https://api.github.com/users/farisalasmary", "html_url": "https://github.com/farisalasmary", "followers_url": "https://api.github.com/users/farisalasmary/followers", "following_url": "https://api.github.com/users/farisalasmary/following{/other_user}", "gists_url": "https://api.github.com/users/farisalasmary/gists{/gist_id}", "starred_url": "https://api.github.com/users/farisalasmary/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/farisalasmary/subscriptions", "organizations_url": "https://api.github.com/users/farisalasmary/orgs", "repos_url": "https://api.github.com/users/farisalasmary/repos", "events_url": "https://api.github.com/users/farisalasmary/events{/privacy}", "received_events_url": "https://api.github.com/users/farisalasmary/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5881/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/5881/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5880
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5880/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5880/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5880/events
https://github.com/NVIDIA/NeMo/pull/5880
1,560,671,044
PR_kwDOC_bI7s5IubA0
5,880
ONNX export for RadTTS
{ "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 }
[ { "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-01-28T03:31:33
2023-02-10T16:22:00
2023-02-10T16:22:00
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5880", "html_url": "https://github.com/NVIDIA/NeMo/pull/5880", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5880.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5880.patch", "merged_at": "2023-02-10T16:22:00" }
Signed-off-by: Boris Fomitchev <[email protected]> # What does this PR do ? ONNX export for RadTTS is now functional. Working around: https://github.com/pytorch/pytorch/pull/91526 **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": "blisc", "id": 4763352, "node_id": "MDQ6VXNlcjQ3NjMzNTI=", "avatar_url": "https://avatars.githubusercontent.com/u/4763352?v=4", "gravatar_id": "", "url": "https://api.github.com/users/blisc", "html_url": "https://github.com/blisc", "followers_url": "https://api.github.com/users/blisc/followers", "following_url": "https://api.github.com/users/blisc/following{/other_user}", "gists_url": "https://api.github.com/users/blisc/gists{/gist_id}", "starred_url": "https://api.github.com/users/blisc/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/blisc/subscriptions", "organizations_url": "https://api.github.com/users/blisc/orgs", "repos_url": "https://api.github.com/users/blisc/repos", "events_url": "https://api.github.com/users/blisc/events{/privacy}", "received_events_url": "https://api.github.com/users/blisc/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5880/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/5880/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5879
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5879/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5879/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5879/events
https://github.com/NVIDIA/NeMo/pull/5879
1,560,615,142
PR_kwDOC_bI7s5IuPMb
5,879
Dynamic freezing in Nemo
{ "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": 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-01-28T01:06:57
2023-03-27T21:28:01
2023-02-06T18:21:37
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5879", "html_url": "https://github.com/NVIDIA/NeMo/pull/5879", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5879.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5879.patch", "merged_at": "2023-02-06T18:21:37" }
Signed-off-by: Daniel Egert <[email protected]> # What does this PR do ? Allows you to selectively freeze modules in your model for the first N steps during training **Collection**: Core # Changelog - changed core/classes/modelPT.py to do dynamic freezing via PTL hooks - updated core documentation at docs/source/core/core.rst # Usage You can add the following to your config.yaml: ```yaml model: ... freeze_updates: enabled: true # set to false if you want to disable freezing modules: # list all of the modules you want to have freezing logic for encoder: 200 # module will be frozen for the first 200 training steps decoder: [50, -1] # module will be frozen at step 50 and will remain frozen until training ends joint: [10, 100] # module will be frozen between step 10 and step 100 (step >= 10 and step <= 100) transcoder: -1 # module will be frozen for the entire training run ``` Setting `enabled: false` will disable all of the freezing logic. # 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": "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/5879/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/5879/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5878
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5878/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5878/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5878/events
https://github.com/NVIDIA/NeMo/issues/5878
1,560,339,615
I_kwDOC_bI7s5dAOSf
5,878
[TTS]Vits Available Model List needs to be updated
{ "login": "dustinjoe", "id": 7971146, "node_id": "MDQ6VXNlcjc5NzExNDY=", "avatar_url": "https://avatars.githubusercontent.com/u/7971146?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dustinjoe", "html_url": "https://github.com/dustinjoe", "followers_url": "https://api.github.com/users/dustinjoe/followers", "following_url": "https://api.github.com/users/dustinjoe/following{/other_user}", "gists_url": "https://api.github.com/users/dustinjoe/gists{/gist_id}", "starred_url": "https://api.github.com/users/dustinjoe/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dustinjoe/subscriptions", "organizations_url": "https://api.github.com/users/dustinjoe/orgs", "repos_url": "https://api.github.com/users/dustinjoe/repos", "events_url": "https://api.github.com/users/dustinjoe/events{/privacy}", "received_events_url": "https://api.github.com/users/dustinjoe/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": 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
{ "login": "treacker", "id": 36159472, "node_id": "MDQ6VXNlcjM2MTU5NDcy", "avatar_url": "https://avatars.githubusercontent.com/u/36159472?v=4", "gravatar_id": "", "url": "https://api.github.com/users/treacker", "html_url": "https://github.com/treacker", "followers_url": "https://api.github.com/users/treacker/followers", "following_url": "https://api.github.com/users/treacker/following{/other_user}", "gists_url": "https://api.github.com/users/treacker/gists{/gist_id}", "starred_url": "https://api.github.com/users/treacker/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/treacker/subscriptions", "organizations_url": "https://api.github.com/users/treacker/orgs", "repos_url": "https://api.github.com/users/treacker/repos", "events_url": "https://api.github.com/users/treacker/events{/privacy}", "received_events_url": "https://api.github.com/users/treacker/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "login": "treacker", "id": 36159472, "node_id": "MDQ6VXNlcjM2MTU5NDcy", "avatar_url": "https://avatars.githubusercontent.com/u/36159472?v=4", "gravatar_id": "", "url": "https://api.github.com/users/treacker", "html_url": "https://github.com/treacker", "followers_url": "https://api.github.com/users/treacker/followers", "following_url": "https://api.github.com/users/treacker/following{/other_user}", "gists_url": "https://api.github.com/users/treacker/gists{/gist_id}", "starred_url": "https://api.github.com/users/treacker/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/treacker/subscriptions", "organizations_url": "https://api.github.com/users/treacker/orgs", "repos_url": "https://api.github.com/users/treacker/repos", "events_url": "https://api.github.com/users/treacker/events{/privacy}", "received_events_url": "https://api.github.com/users/treacker/received_events", "type": "User", "user_view_type": "public", "site_admin": false } ]
null
null
2023-01-27T19:46:14
2023-02-11T18:54:33
2023-02-11T18:54:33
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
Hello. I want to have a trial finetuning the newly updated Vits model in TTS module. Trying to follow the instructions on: https://catalog.ngc.nvidia.com/orgs/nvidia/teams/nemo/models/tts_en_lj_vits But got the error of: FileNotFoundError: Model tts_en_lj_vits was not found. Check cls.list_available_models() for the list of all available models. Because currently print(VitsModel.list_available_models()) is an empty list. This seems similar to the error in Tacotron2 I encountered last time here: https://github.com/NVIDIA/NeMo/issues/5714 Thank you!
{ "login": "dustinjoe", "id": 7971146, "node_id": "MDQ6VXNlcjc5NzExNDY=", "avatar_url": "https://avatars.githubusercontent.com/u/7971146?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dustinjoe", "html_url": "https://github.com/dustinjoe", "followers_url": "https://api.github.com/users/dustinjoe/followers", "following_url": "https://api.github.com/users/dustinjoe/following{/other_user}", "gists_url": "https://api.github.com/users/dustinjoe/gists{/gist_id}", "starred_url": "https://api.github.com/users/dustinjoe/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dustinjoe/subscriptions", "organizations_url": "https://api.github.com/users/dustinjoe/orgs", "repos_url": "https://api.github.com/users/dustinjoe/repos", "events_url": "https://api.github.com/users/dustinjoe/events{/privacy}", "received_events_url": "https://api.github.com/users/dustinjoe/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5878/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/5878/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5877
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5877/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5877/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5877/events
https://github.com/NVIDIA/NeMo/pull/5877
1,560,263,398
PR_kwDOC_bI7s5ItB4m
5,877
Set device specifically for core diarization clustering
{ "login": "donishi", "id": 69691506, "node_id": "MDQ6VXNlcjY5NjkxNTA2", "avatar_url": "https://avatars.githubusercontent.com/u/69691506?v=4", "gravatar_id": "", "url": "https://api.github.com/users/donishi", "html_url": "https://github.com/donishi", "followers_url": "https://api.github.com/users/donishi/followers", "following_url": "https://api.github.com/users/donishi/following{/other_user}", "gists_url": "https://api.github.com/users/donishi/gists{/gist_id}", "starred_url": "https://api.github.com/users/donishi/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/donishi/subscriptions", "organizations_url": "https://api.github.com/users/donishi/orgs", "repos_url": "https://api.github.com/users/donishi/repos", "events_url": "https://api.github.com/users/donishi/events{/privacy}", "received_events_url": "https://api.github.com/users/donishi/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": 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-01-27T19:05:19
2023-02-01T16:09:49
2023-02-01T04:07:39
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5877", "html_url": "https://github.com/NVIDIA/NeMo/pull/5877", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5877.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5877.patch", "merged_at": null }
# What does this PR do ? This PR allows setting a different device (CPU) for the core clustering part of the diarization process so that it doesn't cause GPU OOM errors for long audio files. **Collection**: ASR # Changelog - Add `device` option to the `diarizer.clustering.parameters` configuration group so that [nemo.collections.asr.parts.utils.speaker_utils.perform_clustering()](https://github.com/NVIDIA/NeMo/blob/e1b3f5e2fe57174863110d3fa47b6c24238ab58e/nemo/collections/asr/parts/utils/speaker_utils.py#L402) (called from [ClusteringDiarizer.diarize()](https://github.com/NVIDIA/NeMo/blob/e1b3f5e2fe57174863110d3fa47b6c24238ab58e/nemo/collections/asr/models/clustering_diarizer.py#L440)) can be executed in the CPU (it's currently hard-coded to run on GPU). - This part of the code uses a huge amount of VRAM (over 10GB for an hour of audio) and barely uses the GPU at all, so the performance on CPU doesn't decrease dramatically (processing time increases from 150 seconds on an RTX3090 to 180 seconds on CPU for an hour of audio). - This PR is somewhat related to #5681, but instead of setting a device for all processing steps, it allows setting a different device specifically for the function mentioned above. - If the new device configuration is not set, it will use the globally set device. - The whole reason for this change is supporting audio files over an hour long. It seemed easier to me to run the clustering on CPU than splitting the input audio, diarizing the splits separately and combining the results later. It can surely be done, or there may be a better solution for this, but I don't know enough of Nemo's internals for that yet. # 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 #5681
{ "login": "donishi", "id": 69691506, "node_id": "MDQ6VXNlcjY5NjkxNTA2", "avatar_url": "https://avatars.githubusercontent.com/u/69691506?v=4", "gravatar_id": "", "url": "https://api.github.com/users/donishi", "html_url": "https://github.com/donishi", "followers_url": "https://api.github.com/users/donishi/followers", "following_url": "https://api.github.com/users/donishi/following{/other_user}", "gists_url": "https://api.github.com/users/donishi/gists{/gist_id}", "starred_url": "https://api.github.com/users/donishi/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/donishi/subscriptions", "organizations_url": "https://api.github.com/users/donishi/orgs", "repos_url": "https://api.github.com/users/donishi/repos", "events_url": "https://api.github.com/users/donishi/events{/privacy}", "received_events_url": "https://api.github.com/users/donishi/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5877/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/5877/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5876
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5876/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5876/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5876/events
https://github.com/NVIDIA/NeMo/pull/5876
1,559,861,089
PR_kwDOC_bI7s5IrqWY
5,876
Reduce memory usage in getMultiScaleCosAffinityMatrix function
{ "login": "gabitza-tech", "id": 53811655, "node_id": "MDQ6VXNlcjUzODExNjU1", "avatar_url": "https://avatars.githubusercontent.com/u/53811655?v=4", "gravatar_id": "", "url": "https://api.github.com/users/gabitza-tech", "html_url": "https://github.com/gabitza-tech", "followers_url": "https://api.github.com/users/gabitza-tech/followers", "following_url": "https://api.github.com/users/gabitza-tech/following{/other_user}", "gists_url": "https://api.github.com/users/gabitza-tech/gists{/gist_id}", "starred_url": "https://api.github.com/users/gabitza-tech/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/gabitza-tech/subscriptions", "organizations_url": "https://api.github.com/users/gabitza-tech/orgs", "repos_url": "https://api.github.com/users/gabitza-tech/repos", "events_url": "https://api.github.com/users/gabitza-tech/events{/privacy}", "received_events_url": "https://api.github.com/users/gabitza-tech/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-01-27T14:28:49
2023-02-02T22:49:07
2023-02-01T03:56:30
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5876", "html_url": "https://github.com/NVIDIA/NeMo/pull/5876", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5876.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5876.patch", "merged_at": "2023-02-01T03:56:30" }
Reduce memory usage in getMultiScaleCosAffinityMatrix function Signed-off-by: gabitza-tech <[email protected]> # What does this PR do ? Replace some tensor multiplication in the function for multi scale cos affinity matrix calculation with a single tensor in which we add the repeated embeddings multiplied with its scale weight. Results show a decrease from 11GB to 2GB for 1 hour audio. It even managed to reduce from above 60GB memory usage for a [53000,53000] tensor to 28GB. **Collection**: ASR (collections/asr/parts/utils/offline_clustering.py) # Changelog `multiscale_weights = torch.squeeze(multiscale_weights,dim=0).to(device)` The tensor was [1,6] shaped and had to squeeze the first dimension. ` fused_sim_d = torch.zeros(len(timestamps_in_scales[-1]),len(timestamps_in_scales[-1]))` Initialized a tensor with the shape [s,s] with 0 values where s is the number of timestamps for the smallest scale. We will add the tensor for each scale to this tensor ` with torch.no_grad(): ` Gradients are not needed for inference. `fused_sim_d = fused_sim_d + multiscale_weights[scale_idx] * repeated_tensor_1` Instead of adding the tensor for each scale to a list, then stacking the tensor list and then matrix multiplying it with the weights, we simply add the repeated tensor to the previously initialized tensor before the for loop. @tango4j is adding followings: - Clear memory outside torch.jit.script functions since jit-script does not support torch.cuda.empty_cache() - Fixed the bug where eigen value decomposition does not use GPU. Now GPU usage hits 100% - Removed torch.jit.script decorators since it slows down if we run without jit.script export. - Performance (without torch.jit.script) <!--td {border: 1px solid #cccccc;}br {mso-data-placement:same-cell;}--> sess len in secs | Num of sessions | total time in secs | sec/Iter. | RTFx |  Peak Memory Usage -- | -- | -- | -- | -- | -- 1800 | 10 | 34 | 3.48 | 517.24138 | 3G 3600 | 10 | 70 | 7.02 | 512.82051 | 8G 7200 | 10 | 319 | 31.98 | 225.14071 | 20G Now, 2hours of audio usually takes 30~40 seconds. # 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 ## Who can review? Anyone in the community is free to review the PR once the checks have passed. I would like to ask @titu1994, @redoctopus, @jbalam-nv, or @okuchaiev to review this pull request. # Additional Information * Related to https://github.com/NVIDIA/NeMo/issues/5637
{ "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/5876/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/5876/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5875
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5875/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5875/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5875/events
https://github.com/NVIDIA/NeMo/pull/5875
1,559,798,301
PR_kwDOC_bI7s5IrcpH
5,875
Add pitch objective
{ "login": "coopie", "id": 6509132, "node_id": "MDQ6VXNlcjY1MDkxMzI=", "avatar_url": "https://avatars.githubusercontent.com/u/6509132?v=4", "gravatar_id": "", "url": "https://api.github.com/users/coopie", "html_url": "https://github.com/coopie", "followers_url": "https://api.github.com/users/coopie/followers", "following_url": "https://api.github.com/users/coopie/following{/other_user}", "gists_url": "https://api.github.com/users/coopie/gists{/gist_id}", "starred_url": "https://api.github.com/users/coopie/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/coopie/subscriptions", "organizations_url": "https://api.github.com/users/coopie/orgs", "repos_url": "https://api.github.com/users/coopie/repos", "events_url": "https://api.github.com/users/coopie/events{/privacy}", "received_events_url": "https://api.github.com/users/coopie/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": 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-01-27T13:46:42
2023-01-31T15:05:16
2023-01-31T15:01:24
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5875", "html_url": "https://github.com/NVIDIA/NeMo/pull/5875", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5875.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5875.patch", "merged_at": null }
some promising signs of improved spectrogram clarity: ![image](https://user-images.githubusercontent.com/6509132/215101429-c64267c2-e6d2-4cc5-9ad6-7392906daaf1.png) summary of changes: * model now has a first stage consisting of token and spectrogram encoders * after the first stage an attention layer with a learned query vector is used to produce a "speaker encoding" from the spectrogram encodings * The speaker encoding is added to the token encodings which are then used to predict token duration and pitch * token encodings are then aligned with the spectrogram encodings, then run all together through the decoder
{ "login": "coopie", "id": 6509132, "node_id": "MDQ6VXNlcjY1MDkxMzI=", "avatar_url": "https://avatars.githubusercontent.com/u/6509132?v=4", "gravatar_id": "", "url": "https://api.github.com/users/coopie", "html_url": "https://github.com/coopie", "followers_url": "https://api.github.com/users/coopie/followers", "following_url": "https://api.github.com/users/coopie/following{/other_user}", "gists_url": "https://api.github.com/users/coopie/gists{/gist_id}", "starred_url": "https://api.github.com/users/coopie/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/coopie/subscriptions", "organizations_url": "https://api.github.com/users/coopie/orgs", "repos_url": "https://api.github.com/users/coopie/repos", "events_url": "https://api.github.com/users/coopie/events{/privacy}", "received_events_url": "https://api.github.com/users/coopie/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5875/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/5875/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5873
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5873/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5873/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5873/events
https://github.com/NVIDIA/NeMo/pull/5873
1,558,996,315
PR_kwDOC_bI7s5Iouwq
5,873
add ambernet to readme
{ "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-01-27T00:49:52
2023-01-27T00:51:20
2023-01-27T00:51:16
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5873", "html_url": "https://github.com/NVIDIA/NeMo/pull/5873", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5873.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5873.patch", "merged_at": "2023-01-27T00:51:16" }
Signed-off-by: fayejf <[email protected]> # What does this PR do ? add ambernet to readme **Collection**: [ASR] # Changelog - add ambernet to readme # 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 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/5873/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/5873/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5872
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5872/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5872/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5872/events
https://github.com/NVIDIA/NeMo/pull/5872
1,558,993,706
PR_kwDOC_bI7s5IouL8
5,872
add ambernet to readme
{ "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 }
[]
closed
false
null
[]
null
null
2023-01-27T00:46:07
2023-01-27T00:49:19
2023-01-27T00:49:16
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5872", "html_url": "https://github.com/NVIDIA/NeMo/pull/5872", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5872.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5872.patch", "merged_at": "2023-01-27T00:49:16" }
Signed-off-by: fayejf <[email protected]> # What does this PR do ? add ambernet to readme **Collection**: [ASR] # Changelog - add ambernet to readme # 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 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/5872/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/5872/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5871
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5871/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5871/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5871/events
https://github.com/NVIDIA/NeMo/pull/5871
1,558,972,598
PR_kwDOC_bI7s5IophD
5,871
fix val loss computation in megatron
{ "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-01-27T00:23:11
2023-02-06T23:03:03
2023-02-06T23:03:02
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5871", "html_url": "https://github.com/NVIDIA/NeMo/pull/5871", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5871.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5871.patch", "merged_at": "2023-02-06T23:03:02" }
# What does this PR do ? fix val loss computation When drop last is set to false for validation, currently valid samples are computed assuming any token in a valid sample will not be masked. This case might not be true always. Also, last sample of the dataset could be incomplete as well. **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/5871/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/5871/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5870
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5870/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5870/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5870/events
https://github.com/NVIDIA/NeMo/pull/5870
1,558,958,708
PR_kwDOC_bI7s5Iomd8
5,870
Fix wrong label mapping in batch_inference for label_model
{ "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-01-27T00:06:31
2023-01-27T19:33:03
2023-01-27T19:32:59
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5870", "html_url": "https://github.com/NVIDIA/NeMo/pull/5870", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5870.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5870.patch", "merged_at": "2023-01-27T19:32:59" }
# What does this PR do ? Fix groundtruth label mapping in `batch_inference` in `label_models.py` and add test. **Collection**: ASR # Changelog - The groundtruth label `batch_inference` was mapped wrongly. Fixed it - Add test for `batch_inference` # Usage * You can potentially add a usage example below ```python from nemo.collections.asr.models import EncDecSpeakerLabelModel model = EncDecSpeakerLabelModel.from_pretrained('langid_ambernet') embs, logits, gt_labels, mapped_labels = model.batch_inference(<path_to_manifest>) ``` # 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**: - [ ] 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 https://github.com/NVIDIA/NeMo/pull/5278
{ "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/5870/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/5870/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5869
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5869/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5869/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5869/events
https://github.com/NVIDIA/NeMo/pull/5869
1,558,832,855
PR_kwDOC_bI7s5IoK6Q
5,869
removed WHATEVER(1) ˌhwʌˈtɛvɚ from scripts/tts_dataset_files/ipa_cmudict-0.7b_nv22.10.txt
{ "login": "MikyasDesta", "id": 4801137, "node_id": "MDQ6VXNlcjQ4MDExMzc=", "avatar_url": "https://avatars.githubusercontent.com/u/4801137?v=4", "gravatar_id": "", "url": "https://api.github.com/users/MikyasDesta", "html_url": "https://github.com/MikyasDesta", "followers_url": "https://api.github.com/users/MikyasDesta/followers", "following_url": "https://api.github.com/users/MikyasDesta/following{/other_user}", "gists_url": "https://api.github.com/users/MikyasDesta/gists{/gist_id}", "starred_url": "https://api.github.com/users/MikyasDesta/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/MikyasDesta/subscriptions", "organizations_url": "https://api.github.com/users/MikyasDesta/orgs", "repos_url": "https://api.github.com/users/MikyasDesta/repos", "events_url": "https://api.github.com/users/MikyasDesta/events{/privacy}", "received_events_url": "https://api.github.com/users/MikyasDesta/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
null
[]
null
null
2023-01-26T21:51:41
2023-02-10T14:07:34
2023-02-10T14:07:34
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5869", "html_url": "https://github.com/NVIDIA/NeMo/pull/5869", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5869.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5869.patch", "merged_at": "2023-02-10T14:07:34" }
# What does this PR do ? changed WHATEVER ˌwʌˈtɛvɚ to WHATEVER ˌwʌtˈɛvɚ and deleted WHATEVER(1) updated WHATEVER'S to ˌwʌtˈɛvɚz and delete WHATEVER'S(1). 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": "blisc", "id": 4763352, "node_id": "MDQ6VXNlcjQ3NjMzNTI=", "avatar_url": "https://avatars.githubusercontent.com/u/4763352?v=4", "gravatar_id": "", "url": "https://api.github.com/users/blisc", "html_url": "https://github.com/blisc", "followers_url": "https://api.github.com/users/blisc/followers", "following_url": "https://api.github.com/users/blisc/following{/other_user}", "gists_url": "https://api.github.com/users/blisc/gists{/gist_id}", "starred_url": "https://api.github.com/users/blisc/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/blisc/subscriptions", "organizations_url": "https://api.github.com/users/blisc/orgs", "repos_url": "https://api.github.com/users/blisc/repos", "events_url": "https://api.github.com/users/blisc/events{/privacy}", "received_events_url": "https://api.github.com/users/blisc/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5869/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/5869/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5868
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5868/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5868/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5868/events
https://github.com/NVIDIA/NeMo/issues/5868
1,558,684,712
I_kwDOC_bI7s5c56Qo
5,868
Voice_Activity_Detection.ipynb tutorial is broken
{ "login": "Aynes", "id": 36053005, "node_id": "MDQ6VXNlcjM2MDUzMDA1", "avatar_url": "https://avatars.githubusercontent.com/u/36053005?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Aynes", "html_url": "https://github.com/Aynes", "followers_url": "https://api.github.com/users/Aynes/followers", "following_url": "https://api.github.com/users/Aynes/following{/other_user}", "gists_url": "https://api.github.com/users/Aynes/gists{/gist_id}", "starred_url": "https://api.github.com/users/Aynes/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Aynes/subscriptions", "organizations_url": "https://api.github.com/users/Aynes/orgs", "repos_url": "https://api.github.com/users/Aynes/repos", "events_url": "https://api.github.com/users/Aynes/events{/privacy}", "received_events_url": "https://api.github.com/users/Aynes/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-01-26T19:46:58
2023-01-26T19:51:17
2023-01-26T19:51:17
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Voice_Activity_Detection.ipynb tutorial is broken** If you open file: https://github.com/NVIDIA/NeMo/blob/main/tutorials/asr/Voice_Activity_Detection.ipynb it will give an error: **"Invalid Notebook"** **"The Notebook Does Not Appear to Be Valid JSON"**
{ "login": "Aynes", "id": 36053005, "node_id": "MDQ6VXNlcjM2MDUzMDA1", "avatar_url": "https://avatars.githubusercontent.com/u/36053005?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Aynes", "html_url": "https://github.com/Aynes", "followers_url": "https://api.github.com/users/Aynes/followers", "following_url": "https://api.github.com/users/Aynes/following{/other_user}", "gists_url": "https://api.github.com/users/Aynes/gists{/gist_id}", "starred_url": "https://api.github.com/users/Aynes/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Aynes/subscriptions", "organizations_url": "https://api.github.com/users/Aynes/orgs", "repos_url": "https://api.github.com/users/Aynes/repos", "events_url": "https://api.github.com/users/Aynes/events{/privacy}", "received_events_url": "https://api.github.com/users/Aynes/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5868/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/5868/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5867
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5867/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5867/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5867/events
https://github.com/NVIDIA/NeMo/issues/5867
1,557,651,886
I_kwDOC_bI7s5c1-Gu
5,867
Cache-aware Conformer Encoder has high latency with ONNX runtime
{ "login": "sknadig", "id": 3745694, "node_id": "MDQ6VXNlcjM3NDU2OTQ=", "avatar_url": "https://avatars.githubusercontent.com/u/3745694?v=4", "gravatar_id": "", "url": "https://api.github.com/users/sknadig", "html_url": "https://github.com/sknadig", "followers_url": "https://api.github.com/users/sknadig/followers", "following_url": "https://api.github.com/users/sknadig/following{/other_user}", "gists_url": "https://api.github.com/users/sknadig/gists{/gist_id}", "starred_url": "https://api.github.com/users/sknadig/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/sknadig/subscriptions", "organizations_url": "https://api.github.com/users/sknadig/orgs", "repos_url": "https://api.github.com/users/sknadig/repos", "events_url": "https://api.github.com/users/sknadig/events{/privacy}", "received_events_url": "https://api.github.com/users/sknadig/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-01-26T05:31:46
2023-01-27T02:21:15
2023-01-27T02:21:14
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Describe the bug** Is ONNX runtime fully supported for the cache-aware Conformer Encoder? With a side-by-side comparison of calling `asr_model.encoder.forward()` and ONNX encoder `session.run()`, the latency for PyTorch and ONNX version is different, with ONNX 2-3 times slower than the PyTorch version. Initially, the latencies are similar, but the ONNX version's latency keeps increasing linearly with time. (I was expecting the latency to plateau after reaching a maximum size of `last_channel_cache_size`) I saw a similar issue reported on https://github.com/microsoft/onnxruntime/issues/11293, wondering if it could be related. Also, if this is a known issue, does https://github.com/NVIDIA/NeMo/pull/5837 provides a solution? Model is exported to ONNX as follows ```python asr_model.encoder.export_cache_support = True asr_model.encoder.export(opts) ``` PyTorch version ```python (encoded, encoded_len, cache_last_channel, cache_last_time) = asr_model.encoder.forward( audio_signal=feats, length=feats_len, cache_last_channel=cache_last_channel, cache_last_time=cache_last_time, ) cache_last_channel = cache_last_channel[ :, :, -asr_model.encoder.streaming_cfg.last_channel_cache_size :, : ] ``` ![image](https://user-images.githubusercontent.com/3745694/214763960-c0d6741e-dfd4-4428-b8f8-ab6c97997dee.png) ONNX version ```python (encoded, encoded_len, cache_last_channel, cache_last_time) = enc_session.run( encoder_outputs, {'audio_signal': feats.numpy(), 'length': feats_len.numpy(), 'cache_last_channel': cache_last_channel, 'cache_last_time': cache_last_time, } ) cache_last_channel = cache_last_channel[ :, :, -asr_model.encoder.streaming_cfg.last_channel_cache_size :, : ] ``` ![image](https://user-images.githubusercontent.com/3745694/214763981-526be54b-413b-4f4f-bbd5-c4428fc305d3.png) **Steps/Code to reproduce bug** - Export the cache-aware Conformer Encoder to ONNX using ```python asr_model.encoder.export_cache_support = True asr_model.encoder.export(opts) ``` - Pass in random feats and caches and measure latency - Compare PyTorch and ONNX latencies **Expected behavior** ONNX runtime is supposed to be at least as fast (if not faster) than the PyTorch version. Also, since latency increases linearly with signal length, it suggests that maybe ONNX version is not resetting the cache internally? **Environment overview (please complete the following information)** - Environment location: Bare metal on a GCP VM with Intel Skylake CPU - Method of NeMo install: From source **Environment details** - OS version: Debian GNU/Linux 10 (buster) x86_64 - PyTorch version: 1.12.1 - Python version: 3.8.15 - onnxruneime version: 1.13.1 **Additional context** Decoding is done on the CPU. Please let me know if you need any other details. Thanks for the help!
{ "login": "sknadig", "id": 3745694, "node_id": "MDQ6VXNlcjM3NDU2OTQ=", "avatar_url": "https://avatars.githubusercontent.com/u/3745694?v=4", "gravatar_id": "", "url": "https://api.github.com/users/sknadig", "html_url": "https://github.com/sknadig", "followers_url": "https://api.github.com/users/sknadig/followers", "following_url": "https://api.github.com/users/sknadig/following{/other_user}", "gists_url": "https://api.github.com/users/sknadig/gists{/gist_id}", "starred_url": "https://api.github.com/users/sknadig/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/sknadig/subscriptions", "organizations_url": "https://api.github.com/users/sknadig/orgs", "repos_url": "https://api.github.com/users/sknadig/repos", "events_url": "https://api.github.com/users/sknadig/events{/privacy}", "received_events_url": "https://api.github.com/users/sknadig/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5867/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/5867/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5866
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5866/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5866/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5866/events
https://github.com/NVIDIA/NeMo/pull/5866
1,557,647,896
PR_kwDOC_bI7s5IkMBP
5,866
Adding PR#5663 to r1.15.0
{ "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": 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-01-26T05:22:39
2023-02-17T02:03:32
2023-02-17T02:03:32
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5866", "html_url": "https://github.com/NVIDIA/NeMo/pull/5866", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5866.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5866.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/5866/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/5866/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5865
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5865/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5865/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5865/events
https://github.com/NVIDIA/NeMo/pull/5865
1,557,629,314
PR_kwDOC_bI7s5IkIDW
5,865
Support NeMo Forced Aligner for several hours of audio
{ "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-01-26T04:54:23
2023-02-10T23:28:35
2023-02-10T23:28:35
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5865", "html_url": "https://github.com/NVIDIA/NeMo/pull/5865", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5865.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5865.patch", "merged_at": null }
# What does this PR do ? Add CPU offloading and memory tricks to let NFA work for up to 2 hours of audio via offloading **Collection**: [Tools, ASR] # Changelog - Add granular CPU offloading of tensors - Replace all repeat with expand to prevent unnecessarily allocating memory - Add support for local attention # Usage ```python python align.py \ model_path=<Citrinet model path> \ model_downsample_factor=8 \ manifest_filepath=<Manifest filepath> \ transcribe_device='cuda' \ viterbi_device='cpu' \ batch_size=1 \ transcribe_dtype="fp16" \ # bf16 if supported transcribe_amp=true \ viterbi_dtype="fp16" \ # CPU offload supports fp16 everywhere cpu_offload_transcript_probs=True \ cpu_offload_viterbi_probs=True \ cpu_offload_viterbi_pointers=True \ model_change.conformer.self_attention_model="rel_pos_local_attn" \ # Support Conformer (medium length audio) with local attention model_change.conformer.att_context_size=[64,64] ``` # 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/5865/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/5865/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5864
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5864/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5864/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5864/events
https://github.com/NVIDIA/NeMo/pull/5864
1,557,495,432
PR_kwDOC_bI7s5IjsJT
5,864
Fix memory allocation of NeMo Multi-speaker Data Simulator
{ "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": 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-01-26T01:21:58
2023-03-27T17:16:30
2023-01-27T22:29:05
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5864", "html_url": "https://github.com/NVIDIA/NeMo/pull/5864", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5864.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5864.patch", "merged_at": "2023-01-27T22:29:05" }
Signed-off-by: stevehuang52 <[email protected]> # What does this PR do ? Fix memory leak and improve speed of the simulator. **Collection**: [ASR] # Changelog - Fix memory leak by cleaning up buffers and variables after each session is created - Improve speed by generating candidate speakers and their audios before launching multiprocess - Enforce spawn as multiprocessing method - Improve some data loading logic to avoid unnecessarily traversing the same list many times. - Adding multi-gpu (CUDA devices) support - Reduced parallel processing memory usage by sampling noise source samples in advance # 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
{ "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/5864/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/5864/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5863
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5863/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5863/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5863/events
https://github.com/NVIDIA/NeMo/pull/5863
1,557,410,749
PR_kwDOC_bI7s5IjaP3
5,863
Megatron positional encoding alibi fix
{ "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-01-25T23:35:30
2023-01-26T14:17:49
2023-01-26T14:17:41
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5863", "html_url": "https://github.com/NVIDIA/NeMo/pull/5863", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5863.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5863.patch", "merged_at": "2023-01-26T14:17:41" }
# What does this PR do ? This PR fixes a bug in ALiBi implementation. ALiBi paper: https://arxiv.org/abs/2108.12409 Results shows that ALiBi is comparable in performance to RPE, and is faster by 7% from RPE and 8% slower than learnable abs embeddings during training. See plots below. ALiBi (this PR) in green, ALiBi (before fix) in pink, learned absolute embeddings in red, and RPE in cyan. ![Screen Shot 2023-01-25 at 17 32 00](https://user-images.githubusercontent.com/7453913/214607208-fcc652b2-4ae0-42b5-864c-d01eb62e7996.png) ![Screen Shot 2023-01-25 at 17 32 50](https://user-images.githubusercontent.com/7453913/214607215-c41b7bc8-33e6-4378-8356-f811f22e3c02.png) ![Screen Shot 2023-01-25 at 17 33 01](https://user-images.githubusercontent.com/7453913/214607219-6bd338e0-e088-4891-ac4e-edd1fa314d16.png) ![Screen Shot 2023-01-25 at 17 33 27](https://user-images.githubusercontent.com/7453913/214607227-1480cd98-c17e-453d-bf56-5ae6f1e3d053.png) ![Screen Shot 2023-01-25 at 17 36 03](https://user-images.githubusercontent.com/7453913/214607229-f395a390-ffe8-4fd8-b55e-090623fd0b34.png) ![Screen Shot 2023-01-25 at 17 36 17](https://user-images.githubusercontent.com/7453913/214607232-6a87f3c8-aee7-4f2a-81bc-f38167932ff5.png) **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": "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/5863/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/5863/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5862
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5862/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5862/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5862/events
https://github.com/NVIDIA/NeMo/pull/5862
1,557,362,422
PR_kwDOC_bI7s5IjP1m
5,862
indentation fix
{ "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-01-25T22:33:51
2023-01-26T19:48:22
2023-01-26T19:48:19
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5862", "html_url": "https://github.com/NVIDIA/NeMo/pull/5862", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5862.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5862.patch", "merged_at": "2023-01-26T19:48:19" }
Signed-off-by: nithinraok <[email protected]> # What does this PR do ? JSON indentation fix **Collection**: VAD # 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/5862/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/5862/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5861
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5861/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5861/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5861/events
https://github.com/NVIDIA/NeMo/pull/5861
1,557,358,414
PR_kwDOC_bI7s5IjO-9
5,861
indentation fix
{ "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 }
[ { "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-01-25T22:29:02
2023-01-25T22:33:23
2023-01-25T22:33:20
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5861", "html_url": "https://github.com/NVIDIA/NeMo/pull/5861", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5861.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5861.patch", "merged_at": "2023-01-25T22:33:19" }
Signed-off-by: nithinraok <[email protected]> # What does this PR do ? JSON indentation fix **Collection**: VAD # 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/5861/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/5861/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5860
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5860/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5860/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5860/events
https://github.com/NVIDIA/NeMo/pull/5860
1,557,172,052
PR_kwDOC_bI7s5Iimqq
5,860
[TTS][DE] updated IPA dictionary and heteronyms
{ "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-01-25T19:37:26
2023-01-25T22:48:52
2023-01-25T22:48:47
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5860", "html_url": "https://github.com/NVIDIA/NeMo/pull/5860", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5860.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5860.patch", "merged_at": "2023-01-25T22:48:47" }
Signed-off-by: Xuesong Yang <[email protected]> # What does this PR do ? updated with more entries for both dictionary and heteronyms. **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/5860/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/5860/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5859
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5859/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5859/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5859/events
https://github.com/NVIDIA/NeMo/pull/5859
1,557,039,709
PR_kwDOC_bI7s5IiKRw
5,859
remove notebook
{ "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": 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-01-25T17:39:31
2023-01-25T17:39:54
2023-01-25T17:39:50
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5859", "html_url": "https://github.com/NVIDIA/NeMo/pull/5859", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5859.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5859.patch", "merged_at": "2023-01-25T17:39:50" }
Signed-off-by: ericharper <[email protected]> # 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/5859/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/5859/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5858
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5858/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5858/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5858/events
https://github.com/NVIDIA/NeMo/issues/5858
1,557,019,149
I_kwDOC_bI7s5czjoN
5,858
Initialize MegatronBertModel
{ "login": "linqian66", "id": 40737973, "node_id": "MDQ6VXNlcjQwNzM3OTcz", "avatar_url": "https://avatars.githubusercontent.com/u/40737973?v=4", "gravatar_id": "", "url": "https://api.github.com/users/linqian66", "html_url": "https://github.com/linqian66", "followers_url": "https://api.github.com/users/linqian66/followers", "following_url": "https://api.github.com/users/linqian66/following{/other_user}", "gists_url": "https://api.github.com/users/linqian66/gists{/gist_id}", "starred_url": "https://api.github.com/users/linqian66/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/linqian66/subscriptions", "organizations_url": "https://api.github.com/users/linqian66/orgs", "repos_url": "https://api.github.com/users/linqian66/repos", "events_url": "https://api.github.com/users/linqian66/events{/privacy}", "received_events_url": "https://api.github.com/users/linqian66/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
null
[]
null
null
2023-01-25T17:22:29
2023-02-01T19:57:13
2023-02-01T19:57:13
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
I would like to initialize a **MegatronBertModel** instead of **TextClassificationModel**, for a classification task. Basically I need to use MegatronBERT based model and tokenizer. I did not find any corresponding config file, how do I configure the YAML config file to achieve this? Something like this: ``` config = OmegaConf.load(yaml_config) config.model.language_model.pretrained_model_name = 'biomegatron345m_biovocab_50k_cased' trainer = pl.Trainer(**config.trainer) lmodel = MegatronBertModel(config.model, trainer) ```
{ "login": "linqian66", "id": 40737973, "node_id": "MDQ6VXNlcjQwNzM3OTcz", "avatar_url": "https://avatars.githubusercontent.com/u/40737973?v=4", "gravatar_id": "", "url": "https://api.github.com/users/linqian66", "html_url": "https://github.com/linqian66", "followers_url": "https://api.github.com/users/linqian66/followers", "following_url": "https://api.github.com/users/linqian66/following{/other_user}", "gists_url": "https://api.github.com/users/linqian66/gists{/gist_id}", "starred_url": "https://api.github.com/users/linqian66/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/linqian66/subscriptions", "organizations_url": "https://api.github.com/users/linqian66/orgs", "repos_url": "https://api.github.com/users/linqian66/repos", "events_url": "https://api.github.com/users/linqian66/events{/privacy}", "received_events_url": "https://api.github.com/users/linqian66/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5858/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/5858/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5857
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5857/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5857/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5857/events
https://github.com/NVIDIA/NeMo/pull/5857
1,556,324,008
PR_kwDOC_bI7s5IfvlH
5,857
Add segmentation export to Audacity label file
{ "login": "Ca-ressemble-a-du-fake", "id": 91517923, "node_id": "U_kgDOBXRz4w", "avatar_url": "https://avatars.githubusercontent.com/u/91517923?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Ca-ressemble-a-du-fake", "html_url": "https://github.com/Ca-ressemble-a-du-fake", "followers_url": "https://api.github.com/users/Ca-ressemble-a-du-fake/followers", "following_url": "https://api.github.com/users/Ca-ressemble-a-du-fake/following{/other_user}", "gists_url": "https://api.github.com/users/Ca-ressemble-a-du-fake/gists{/gist_id}", "starred_url": "https://api.github.com/users/Ca-ressemble-a-du-fake/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Ca-ressemble-a-du-fake/subscriptions", "organizations_url": "https://api.github.com/users/Ca-ressemble-a-du-fake/orgs", "repos_url": "https://api.github.com/users/Ca-ressemble-a-du-fake/repos", "events_url": "https://api.github.com/users/Ca-ressemble-a-du-fake/events{/privacy}", "received_events_url": "https://api.github.com/users/Ca-ressemble-a-du-fake/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
null
[]
null
null
2023-01-25T09:33:26
2023-02-02T16:31:45
2023-02-02T16:31:45
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5857", "html_url": "https://github.com/NVIDIA/NeMo/pull/5857", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5857.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5857.patch", "merged_at": "2023-02-02T16:31:44" }
# What does this PR do ? This PR adds the export of the segmentation file to a label file that can directly be imported in Audacity to quickly and easily assess the quality of the segmentation. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. # Usage * No usage change. The label file will be automatically generated. # 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": "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/5857/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/5857/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5856
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5856/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5856/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5856/events
https://github.com/NVIDIA/NeMo/pull/5856
1,556,074,692
PR_kwDOC_bI7s5Ie7nT
5,856
NFA samples fix
{ "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-01-25T05:21:34
2023-01-25T05:34:21
2023-01-25T05:34:16
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5856", "html_url": "https://github.com/NVIDIA/NeMo/pull/5856", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5856.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5856.patch", "merged_at": "2023-01-25T05:34:16" }
# What does this PR do ? Correct NFA README typo and fix an NFA error that would give incorrect timestamps when the input audio had a different sampling rate to that of the ASR model. **Collection**: tools/nemo_forced_aligner # Changelog - Correct NFA README typo: 'samples' -> 'seconds' - Fix timestamps bug: change variable 'audio_sr' -> 'model.cfg.sample_rate' # 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) - [ N/A ] 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 * Addressing question raised in https://github.com/NVIDIA/NeMo/discussions/5848.
{ "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/5856/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/5856/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5855
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5855/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5855/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5855/events
https://github.com/NVIDIA/NeMo/pull/5855
1,555,870,178
PR_kwDOC_bI7s5IeQq_
5,855
Multi-task finetuning of NeMo-Megatron GPT models
{ "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": 4418253970, "node_id": "LA_kwDOC_bI7s8AAAABB1k0kg", "url": "https://api.github.com/repos/NVIDIA/NeMo/labels/TTS", "name": "TTS", "color": "49AF28", "default": false, "description": "" }, { "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": "" }, { "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-01-25T00:24:19
2023-03-11T01:18:12
2023-03-11T01:18:12
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5855", "html_url": "https://github.com/NVIDIA/NeMo/pull/5855", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5855.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5855.patch", "merged_at": null }
# What does this PR do ? Adds the ability to fine-tune NeMo-Megatron trained GPT models on multiple downstream datasets. **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": "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/5855/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/5855/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5854
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5854/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5854/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5854/events
https://github.com/NVIDIA/NeMo/pull/5854
1,555,830,213
PR_kwDOC_bI7s5IeHyd
5,854
update torchmetrics args confusionmatrix
{ "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-01-24T23:45:13
2023-01-25T01:37:54
2023-01-25T01:37:51
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5854", "html_url": "https://github.com/NVIDIA/NeMo/pull/5854", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5854.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5854.patch", "merged_at": "2023-01-25T01:37:51" }
# What does this PR do ? Fix issue with torchmetrics ConfusionMatrix function **Collection**: ASR # Changelog - add task arg # 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/5854/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/5854/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5853
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5853/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5853/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5853/events
https://github.com/NVIDIA/NeMo/pull/5853
1,555,829,303
PR_kwDOC_bI7s5IeHmu
5,853
update torchmetrics args confusionmatrix
{ "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 }
[ { "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-01-24T23:43:48
2023-01-24T23:44:40
2023-01-24T23:44:36
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5853", "html_url": "https://github.com/NVIDIA/NeMo/pull/5853", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5853.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5853.patch", "merged_at": "2023-01-24T23:44:36" }
# What does this PR do ? Fix issue with torchmetrics ConfusionMatrix function **Collection**: ASR # Changelog - add task arg # 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/5853/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/5853/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5852
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5852/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5852/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5852/events
https://github.com/NVIDIA/NeMo/pull/5852
1,555,803,973
PR_kwDOC_bI7s5IeCHf
5,852
fix max len generation t5
{ "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 }
[]
closed
false
null
[]
null
null
2023-01-24T23:12:32
2023-01-25T01:38:19
2023-01-25T01:38:16
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5852", "html_url": "https://github.com/NVIDIA/NeMo/pull/5852", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5852.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5852.patch", "merged_at": "2023-01-25T01:38:16" }
Signed-off-by: ekmb <[email protected]> # 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/5852/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/5852/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5851
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5851/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5851/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5851/events
https://github.com/NVIDIA/NeMo/pull/5851
1,555,484,890
PR_kwDOC_bI7s5Ic9EV
5,851
Update NeMo Multi-Run docs
{ "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-01-24T18:36:48
2023-01-24T23:35:28
2023-01-24T23:35:25
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5851", "html_url": "https://github.com/NVIDIA/NeMo/pull/5851", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5851.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5851.patch", "merged_at": "2023-01-24T23:35:25" }
Signed-off-by: smajumdar <[email protected]> # What does this PR do ? Add documentation for NeMo multi-run support **Collection**: [Core] # Changelog - Add a fix for printing the error stack trace if there are multiple list of lists. - Add documentation for NeMo Multi-Run + some tips and tricks # 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 - [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/5851/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/5851/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5850
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5850/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5850/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5850/events
https://github.com/NVIDIA/NeMo/pull/5850
1,555,059,227
PR_kwDOC_bI7s5Ibhjp
5,850
Fix torchaudio installation
{ "login": "artbataev", "id": 9380560, "node_id": "MDQ6VXNlcjkzODA1NjA=", "avatar_url": "https://avatars.githubusercontent.com/u/9380560?v=4", "gravatar_id": "", "url": "https://api.github.com/users/artbataev", "html_url": "https://github.com/artbataev", "followers_url": "https://api.github.com/users/artbataev/followers", "following_url": "https://api.github.com/users/artbataev/following{/other_user}", "gists_url": "https://api.github.com/users/artbataev/gists{/gist_id}", "starred_url": "https://api.github.com/users/artbataev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/artbataev/subscriptions", "organizations_url": "https://api.github.com/users/artbataev/orgs", "repos_url": "https://api.github.com/users/artbataev/repos", "events_url": "https://api.github.com/users/artbataev/events{/privacy}", "received_events_url": "https://api.github.com/users/artbataev/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
null
[]
null
null
2023-01-24T14:10:50
2023-02-09T17:00:29
2023-02-09T16:59:54
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5850", "html_url": "https://github.com/NVIDIA/NeMo/pull/5850", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5850.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5850.patch", "merged_at": "2023-02-09T16:59:53" }
Signed-off-by: Vladimir Bataev <[email protected]> # What does this PR do ? Fixes Docker builds with `torchaudio` library: - Fixes installation in `pytorch:22.04-py3`-based and other old containers (silently failed, which resulted in no `torchaudio` at all in the container) - The build will fail if `torchaudio` is not installed at all (no CPU version). Warning if the GPU version is not compiled. **NB**: we will still need to update this script after PyTorch 2.0 release. **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? - [x] 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/5850/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/5850/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5849
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5849/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5849/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5849/events
https://github.com/NVIDIA/NeMo/pull/5849
1,554,934,564
PR_kwDOC_bI7s5IbGfY
5,849
Fix segmenting for pcla inference
{ "login": "jubick1337", "id": 16004982, "node_id": "MDQ6VXNlcjE2MDA0OTgy", "avatar_url": "https://avatars.githubusercontent.com/u/16004982?v=4", "gravatar_id": "", "url": "https://api.github.com/users/jubick1337", "html_url": "https://github.com/jubick1337", "followers_url": "https://api.github.com/users/jubick1337/followers", "following_url": "https://api.github.com/users/jubick1337/following{/other_user}", "gists_url": "https://api.github.com/users/jubick1337/gists{/gist_id}", "starred_url": "https://api.github.com/users/jubick1337/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jubick1337/subscriptions", "organizations_url": "https://api.github.com/users/jubick1337/orgs", "repos_url": "https://api.github.com/users/jubick1337/repos", "events_url": "https://api.github.com/users/jubick1337/events{/privacy}", "received_events_url": "https://api.github.com/users/jubick1337/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-01-24T12:55:52
2023-01-26T18:06:38
2023-01-26T18:06:35
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5849", "html_url": "https://github.com/NVIDIA/NeMo/pull/5849", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5849.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5849.patch", "merged_at": "2023-01-26T18:06:35" }
Signed-off-by: Matvei Novikov <[email protected]> # 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": "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/5849/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/5849/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5846
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5846/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5846/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5846/events
https://github.com/NVIDIA/NeMo/pull/5846
1,554,251,404
PR_kwDOC_bI7s5IY0tc
5,846
Adding new features and speed up for multi-speaker data simulator
{ "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-01-24T03:32:20
2023-01-25T14:43:56
2023-01-25T14:43:56
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5846", "html_url": "https://github.com/NVIDIA/NeMo/pull/5846", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5846.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5846.patch", "merged_at": "2023-01-25T14:43:56" }
# What does this PR do ? This PR adds a few features to the existing multispeaker data simulator **Collection**: [Note which collection this PR will affect] ASR # Changelog - Added a feature to make 1 speaker sessions - 50-100x speed up by saving loaded wav to dictionary (hashtable) ( 2000ms/session to 20-50ms/session) - Parallel processing has been added for speed up (up to num_workers=12, it speeds up) - A few minor bug fixes # Usage ```python python multispeaker_simulator.py --config-path='conf' --config-name='data_simulator.yaml' \ data_simulator.random_seed=42 \ data_simulator.manifest_filepath=./train-clean-100-align.json \ data_simulator.outputs.output_dir=./test_rir \ data_simulator.background_noise.add_bg=True \ data_simulator.background_noise.background_manifest=./bg_noise.json data_simulator.rir_generation.use_rir=True ``` # 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 ASR # Additional Information * Related to # (issue)
{ "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/5846/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/5846/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5845
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5845/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5845/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5845/events
https://github.com/NVIDIA/NeMo/pull/5845
1,554,232,610
PR_kwDOC_bI7s5IYwdp
5,845
Speed up and added feature to multi-speaker data simulator
{ "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-01-24T03:15:43
2023-01-24T03:26:15
2023-01-24T03:26:15
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
true
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5845", "html_url": "https://github.com/NVIDIA/NeMo/pull/5845", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5845.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5845.patch", "merged_at": null }
# What does this PR do ? This PR adds a few features to the existing multispeaker data simulator **Collection**: [Note which collection this PR will affect] ASR # Changelog - Added a feature to make 1 speaker sessions - 50~100x speed up by saving loaded wav to dictionary (hashtable) - Parallel processing has been added for speed up (up to num_workers=12, it speeds up) - A few minor bug fix # Usage ```python python multispeaker_simulator.py --config-path='conf' --config-name='data_simulator.yaml' \ data_simulator.random_seed=42 \ data_simulator.manifest_filepath=./train-clean-100-align.json \ data_simulator.outputs.output_dir=./test_rir \ data_simulator.background_noise.add_bg=True \ data_simulator.background_noise.background_manifest=./bg_noise.json data_simulator.rir_generation.use_rir=True ``` # 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 ASR # Additional Information * Related to # (issue)
{ "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/5845/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/5845/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5844
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5844/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5844/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5844/events
https://github.com/NVIDIA/NeMo/pull/5844
1,554,092,142
PR_kwDOC_bI7s5IYTJg
5,844
Update NeMo Multi-Run docs
{ "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-01-24T01:04:23
2023-01-24T18:36:18
2023-01-24T18:36:15
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5844", "html_url": "https://github.com/NVIDIA/NeMo/pull/5844", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5844.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5844.patch", "merged_at": "2023-01-24T18:36:14" }
Signed-off-by: smajumdar <[email protected]> # What does this PR do ? Add documentation for NeMo multi-run support **Collection**: [Core] # Changelog - Add a fix for printing the error stack trace if there are multiple list of lists. - Add documentation for NeMo Multi-Run + some tips and tricks # 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 - [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/5844/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/5844/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5843
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5843/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5843/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5843/events
https://github.com/NVIDIA/NeMo/pull/5843
1,554,065,900
PR_kwDOC_bI7s5IYNSW
5,843
make validation accuracy reporting optional for adapters/ptuning
{ "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-01-24T00:42:39
2023-02-13T19:14:10
2023-02-13T19:14:10
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5843", "html_url": "https://github.com/NVIDIA/NeMo/pull/5843", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5843.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5843.patch", "merged_at": "2023-02-13T19:14:10" }
# What does this PR do ? accuracy reporting is ~10-20x slower for prompt learning and adapter learning for t5. This PR optionally disables it. **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": "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/5843/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/5843/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5842
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5842/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5842/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5842/events
https://github.com/NVIDIA/NeMo/pull/5842
1,553,875,218
PR_kwDOC_bI7s5IXkdh
5,842
[BugFix] Updated CTC decoders installation in tutorial
{ "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-01-23T21:41:09
2023-01-24T00:31:25
2023-01-24T00:31:22
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5842", "html_url": "https://github.com/NVIDIA/NeMo/pull/5842", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5842.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5842.patch", "merged_at": "2023-01-24T00:31:22" }
# What does this PR do ? Fixes `ctc-decoders` installation in `Offline_ASR` notebook. **Collection**: ASR # Changelog - Updated CTC decoders installation # 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? - [X] 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) Signed-off-by: Vitaly Lavrukhin <[email protected]>
{ "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/5842/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/5842/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5841
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5841/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5841/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5841/events
https://github.com/NVIDIA/NeMo/pull/5841
1,553,747,236
PR_kwDOC_bI7s5IXHlY
5,841
TPMLP for T5-based models
{ "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-01-23T20:24:31
2023-02-03T21:11:01
2023-02-03T21:10:57
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5841", "html_url": "https://github.com/NVIDIA/NeMo/pull/5841", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5841.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5841.patch", "merged_at": "2023-02-03T21:10:57" }
Signed-off-by: David Mosallanezhad <[email protected]> # 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/5841/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/5841/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5840
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5840/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5840/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5840/events
https://github.com/NVIDIA/NeMo/pull/5840
1,553,570,529
PR_kwDOC_bI7s5IWgWz
5,840
TPMLP for T5-based models
{ "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-01-23T18:33:00
2023-01-23T20:23:55
2023-01-23T20:23:55
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5840", "html_url": "https://github.com/NVIDIA/NeMo/pull/5840", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5840.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5840.patch", "merged_at": "2023-01-23T20:23:55" }
Signed-off-by: David Mosallanezhad <[email protected]> # 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": "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/5840/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/5840/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5838
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5838/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5838/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5838/events
https://github.com/NVIDIA/NeMo/issues/5838
1,552,613,230
I_kwDOC_bI7s5civ9u
5,838
Missing documentation for EncDecRNNTModel.transcribe
{ "login": "navalnica", "id": 29257108, "node_id": "MDQ6VXNlcjI5MjU3MTA4", "avatar_url": "https://avatars.githubusercontent.com/u/29257108?v=4", "gravatar_id": "", "url": "https://api.github.com/users/navalnica", "html_url": "https://github.com/navalnica", "followers_url": "https://api.github.com/users/navalnica/followers", "following_url": "https://api.github.com/users/navalnica/following{/other_user}", "gists_url": "https://api.github.com/users/navalnica/gists{/gist_id}", "starred_url": "https://api.github.com/users/navalnica/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/navalnica/subscriptions", "organizations_url": "https://api.github.com/users/navalnica/orgs", "repos_url": "https://api.github.com/users/navalnica/repos", "events_url": "https://api.github.com/users/navalnica/events{/privacy}", "received_events_url": "https://api.github.com/users/navalnica/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
{ "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 }
[ { "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 } ]
null
null
2023-01-23T07:05:51
2023-02-01T23:59:52
2023-02-01T23:59:52
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
https://github.com/NVIDIA/NeMo/blob/0336b8dad4fa63880e3b15805829f0a9d8057363/nemo/collections/asr/models/rnnt_models.py#L238 There is no clear statement on return types of `EncDecRNNTModel.transcribe()` method. The text seems to be clipped (sentence is not completed)
{ "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/5838/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/5838/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5837
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5837/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5837/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5837/events
https://github.com/NVIDIA/NeMo/pull/5837
1,552,592,629
PR_kwDOC_bI7s5ITOZq
5,837
Streaming conformer CTC export
{ "login": "messiaen", "id": 28207671, "node_id": "MDQ6VXNlcjI4MjA3Njcx", "avatar_url": "https://avatars.githubusercontent.com/u/28207671?v=4", "gravatar_id": "", "url": "https://api.github.com/users/messiaen", "html_url": "https://github.com/messiaen", "followers_url": "https://api.github.com/users/messiaen/followers", "following_url": "https://api.github.com/users/messiaen/following{/other_user}", "gists_url": "https://api.github.com/users/messiaen/gists{/gist_id}", "starred_url": "https://api.github.com/users/messiaen/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/messiaen/subscriptions", "organizations_url": "https://api.github.com/users/messiaen/orgs", "repos_url": "https://api.github.com/users/messiaen/repos", "events_url": "https://api.github.com/users/messiaen/events{/privacy}", "received_events_url": "https://api.github.com/users/messiaen/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": 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-01-23T06:38:59
2023-03-14T02:11:33
2023-03-14T02:11:33
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5837", "html_url": "https://github.com/NVIDIA/NeMo/pull/5837", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5837.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5837.patch", "merged_at": "2023-03-14T02:11:32" }
# What does this PR do ? Work in progress: - Export unified (encoder and decoder) onnx model for cache-aware conformer CTC models. - truncate encoded_output and caches where needed for easier deployment - Use consistent chunk size etc so that first chunk is treated like other chunk whenever possible. This simplifies deployment. **Collection**: ASR # Changelog - Add specific line by line info of high level changes in this PR. # Usage Export conformer-ctc with cache-aware streaming `python scripts/export.py --max-batch 32 --check-tolerance 1.0 --runtime-check --streaming_support --cache_support <path/to/model.nemo> <outut.onnx>` ```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": "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/5837/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/5837/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5836
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5836/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5836/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5836/events
https://github.com/NVIDIA/NeMo/issues/5836
1,552,058,949
I_kwDOC_bI7s5cgopF
5,836
RuntimeError: shape '[16, -1, 128]' is invalid for input of size 236544
{ "login": "sid-mr-im", "id": 64892758, "node_id": "MDQ6VXNlcjY0ODkyNzU4", "avatar_url": "https://avatars.githubusercontent.com/u/64892758?v=4", "gravatar_id": "", "url": "https://api.github.com/users/sid-mr-im", "html_url": "https://github.com/sid-mr-im", "followers_url": "https://api.github.com/users/sid-mr-im/followers", "following_url": "https://api.github.com/users/sid-mr-im/following{/other_user}", "gists_url": "https://api.github.com/users/sid-mr-im/gists{/gist_id}", "starred_url": "https://api.github.com/users/sid-mr-im/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/sid-mr-im/subscriptions", "organizations_url": "https://api.github.com/users/sid-mr-im/orgs", "repos_url": "https://api.github.com/users/sid-mr-im/repos", "events_url": "https://api.github.com/users/sid-mr-im/events{/privacy}", "received_events_url": "https://api.github.com/users/sid-mr-im/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": "sam1373", "id": 24465107, "node_id": "MDQ6VXNlcjI0NDY1MTA3", "avatar_url": "https://avatars.githubusercontent.com/u/24465107?v=4", "gravatar_id": "", "url": "https://api.github.com/users/sam1373", "html_url": "https://github.com/sam1373", "followers_url": "https://api.github.com/users/sam1373/followers", "following_url": "https://api.github.com/users/sam1373/following{/other_user}", "gists_url": "https://api.github.com/users/sam1373/gists{/gist_id}", "starred_url": "https://api.github.com/users/sam1373/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/sam1373/subscriptions", "organizations_url": "https://api.github.com/users/sam1373/orgs", "repos_url": "https://api.github.com/users/sam1373/repos", "events_url": "https://api.github.com/users/sam1373/events{/privacy}", "received_events_url": "https://api.github.com/users/sam1373/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "login": "sam1373", "id": 24465107, "node_id": "MDQ6VXNlcjI0NDY1MTA3", "avatar_url": "https://avatars.githubusercontent.com/u/24465107?v=4", "gravatar_id": "", "url": "https://api.github.com/users/sam1373", "html_url": "https://github.com/sam1373", "followers_url": "https://api.github.com/users/sam1373/followers", "following_url": "https://api.github.com/users/sam1373/following{/other_user}", "gists_url": "https://api.github.com/users/sam1373/gists{/gist_id}", "starred_url": "https://api.github.com/users/sam1373/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/sam1373/subscriptions", "organizations_url": "https://api.github.com/users/sam1373/orgs", "repos_url": "https://api.github.com/users/sam1373/repos", "events_url": "https://api.github.com/users/sam1373/events{/privacy}", "received_events_url": "https://api.github.com/users/sam1373/received_events", "type": "User", "user_view_type": "public", "site_admin": false } ]
null
null
2023-01-22T09:44:57
2023-03-05T02:08:22
2023-03-05T02:08:22
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Description** Whenever the pre-training is initiated with script **speech_pre_training.py** with default configuration file **conformer_ssl.yaml** configuration, the following error is encountered: File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/trainer/call.py", line 38, in _call_and_handle_interrupt return trainer_fn(*args, **kwargs) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/trainer/trainer.py", line 645, in _fit_impl self._run(model, ckpt_path=self.ckpt_path) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/trainer/trainer.py", line 1098, in _run results = self._run_stage() File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/trainer/trainer.py", line 1177, in _run_stage self._run_train() File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/trainer/trainer.py", line 1200, in _run_train self.fit_loop.run() File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/loops/loop.py", line 199, in run self.advance(*args, **kwargs) File "/usr/local/lib/python3.10/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.10/dist-packages/pytorch_lightning/loops/loop.py", line 200, in run self.on_advance_end() File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/loops/epoch/training_epoch_loop.py", line 251, in on_advance_end self._run_validation() File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/loops/epoch/training_epoch_loop.py", line 310, in _run_validation self.val_loop.run() File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/loops/loop.py", line 199, in run self.advance(*args, **kwargs) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/loops/dataloader/evaluation_loop.py", line 152, in advance dl_outputs = self.epoch_loop.run(self._data_fetcher, dl_max_batches, kwargs) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/loops/loop.py", line 199, in run self.advance(*args, **kwargs) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/loops/epoch/evaluation_epoch_loop.py", line 137, in advance output = self._evaluation_step(**kwargs) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/loops/epoch/evaluation_epoch_loop.py", line 234, in _evaluation_step output = self.trainer._call_strategy_hook(hook_name, *kwargs.values()) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/trainer/trainer.py", line 1480, in _call_strategy_hook output = fn(*args, **kwargs) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/strategies/ddp.py", line 360, in validation_step return self.model(*args, **kwargs) File "/usr/local/lib/python3.10/dist-packages/torch/nn/modules/module.py", line 1194, in _call_impl return forward_call(*input, **kwargs) File "/usr/local/lib/python3.10/dist-packages/torch/nn/parallel/distributed.py", line 1040, in forward output = self._run_ddp_forward(*inputs, **kwargs) File "/usr/local/lib/python3.10/dist-packages/torch/nn/parallel/distributed.py", line 1000, in _run_ddp_forward return module_to_run(*inputs[0], **kwargs[0]) File "/usr/local/lib/python3.10/dist-packages/torch/nn/modules/module.py", line 1194, in _call_impl return forward_call(*input, **kwargs) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/overrides/base.py", line 110, in forward return self._forward_module.validation_step(*inputs, **kwargs) File "/usr/local/lib/python3.10/dist-packages/nemo/collections/asr/models/ssl_models.py", line 533, in validation_step loss_value, _ = self.decoder_loss_step(spectrograms, spec_masks, encoded, encoded_len, targets, target_lengths) File "/usr/local/lib/python3.10/dist-packages/nemo/collections/asr/models/ssl_models.py", line 462, in decoder_loss_step current_loss_value = current_loss( File "/usr/local/lib/python3.10/dist-packages/torch/nn/modules/module.py", line 1194, in _call_impl return forward_call(*input, **kwargs) File "/usr/local/lib/python3.10/dist-packages/nemo/core/classes/common.py", line 1086, in __call__ outputs = wrapped(*args, **kwargs) File "/usr/local/lib/python3.10/dist-packages/nemo/collections/asr/losses/ssl_losses/contrastive.py", line 187, in forward out_masked_only = out_masked_only.reshape(bs, -1, out_masked_only.shape[-1]) RuntimeError: shape '[16, -1, 128]' is invalid for input of size 236544 During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/nemocker/scripts/speech_pre_training.py", line 68, in main trainer.fit(asr_model) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/trainer/trainer.py", line 603, in fit call._call_and_handle_interrupt( File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/trainer/call.py", line 59, in _call_and_handle_interrupt trainer.strategy.reconciliate_processes(traceback.format_exc()) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/strategies/ddp.py", line 461, in reconciliate_processes raise DeadlockDetectedException(f"DeadLock detected from rank: {self.global_rank} \n {trace}") pytorch_lightning.utilities.exceptions.DeadlockDetectedException: DeadLock detected from rank: 2 Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/trainer/call.py", line 38, in _call_and_handle_interrupt return trainer_fn(*args, **kwargs) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/trainer/trainer.py", line 645, in _fit_impl self._run(model, ckpt_path=self.ckpt_path) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/trainer/trainer.py", line 1098, in _run results = self._run_stage() File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/trainer/trainer.py", line 1177, in _run_stage self._run_train() File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/trainer/trainer.py", line 1200, in _run_train self.fit_loop.run() File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/loops/loop.py", line 199, in run self.advance(*args, **kwargs) File "/usr/local/lib/python3.10/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.10/dist-packages/pytorch_lightning/loops/loop.py", line 200, in run self.on_advance_end() File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/loops/epoch/training_epoch_loop.py", line 251, in on_advance_end self._run_validation() File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/loops/epoch/training_epoch_loop.py", line 310, in _run_validation self.val_loop.run() File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/loops/loop.py", line 199, in run self.advance(*args, **kwargs) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/loops/dataloader/evaluation_loop.py", line 152, in advance dl_outputs = self.epoch_loop.run(self._data_fetcher, dl_max_batches, kwargs) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/loops/loop.py", line 199, in run self.advance(*args, **kwargs) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/loops/epoch/evaluation_epoch_loop.py", line 137, in advance output = self._evaluation_step(**kwargs) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/loops/epoch/evaluation_epoch_loop.py", line 234, in _evaluation_step output = self.trainer._call_strategy_hook(hook_name, *kwargs.values()) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/trainer/trainer.py", line 1480, in _call_strategy_hook output = fn(*args, **kwargs) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/strategies/ddp.py", line 360, in validation_step return self.model(*args, **kwargs) File "/usr/local/lib/python3.10/dist-packages/torch/nn/modules/module.py", line 1194, in _call_impl return forward_call(*input, **kwargs) File "/usr/local/lib/python3.10/dist-packages/torch/nn/parallel/distributed.py", line 1040, in forward output = self._run_ddp_forward(*inputs, **kwargs) File "/usr/local/lib/python3.10/dist-packages/torch/nn/parallel/distributed.py", line 1000, in _run_ddp_forward return module_to_run(*inputs[0], **kwargs[0]) File "/usr/local/lib/python3.10/dist-packages/torch/nn/modules/module.py", line 1194, in _call_impl return forward_call(*input, **kwargs) File "/usr/local/lib/python3.10/dist-packages/pytorch_lightning/overrides/base.py", line 110, in forward return self._forward_module.validation_step(*inputs, **kwargs) File "/usr/local/lib/python3.10/dist-packages/nemo/collections/asr/models/ssl_models.py", line 533, in validation_step loss_value, _ = self.decoder_loss_step(spectrograms, spec_masks, encoded, encoded_len, targets, target_lengths) File "/usr/local/lib/python3.10/dist-packages/nemo/collections/asr/models/ssl_models.py", line 462, in decoder_loss_step current_loss_value = current_loss( File "/usr/local/lib/python3.10/dist-packages/torch/nn/modules/module.py", line 1194, in _call_impl return forward_call(*input, **kwargs) File "/usr/local/lib/python3.10/dist-packages/nemo/core/classes/common.py", line 1086, in __call__ outputs = wrapped(*args, **kwargs) File "/usr/local/lib/python3.10/dist-packages/nemo/collections/asr/losses/ssl_losses/contrastive.py", line 187, in forward out_masked_only = out_masked_only.reshape(bs, -1, out_masked_only.shape[-1]) RuntimeError: shape '[16, -1, 128]' is invalid for input of size 236544 Set the environment variable HYDRA_FULL_ERROR=1 for a complete stack trace. Please note, the python version is Python 3.10.6 and every audio file in the training set has above 100 frames. **Steps/Code to reproduce bug** After creating a manifest with audio files (above 100 frames), default **speech_pre_training.py** script is run with default configuration **conformer_ssl.py** **Environment overview** - Environment location: Issue is faced in both bare-metal and docker. - Method of NeMo install: NeMo was installed using **pip install nemo_toolkit[all]** - Ubuntu (inside docker): "Ubuntu 22.04.1 LTS - Driver Version: 525.60.13, CUDA Version: 12.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 }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5836/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/5836/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5835
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5835/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5835/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5835/events
https://github.com/NVIDIA/NeMo/issues/5835
1,552,011,825
I_kwDOC_bI7s5cgdIx
5,835
torch.jit
{ "login": "alidabaghi123", "id": 78419335, "node_id": "MDQ6VXNlcjc4NDE5MzM1", "avatar_url": "https://avatars.githubusercontent.com/u/78419335?v=4", "gravatar_id": "", "url": "https://api.github.com/users/alidabaghi123", "html_url": "https://github.com/alidabaghi123", "followers_url": "https://api.github.com/users/alidabaghi123/followers", "following_url": "https://api.github.com/users/alidabaghi123/following{/other_user}", "gists_url": "https://api.github.com/users/alidabaghi123/gists{/gist_id}", "starred_url": "https://api.github.com/users/alidabaghi123/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/alidabaghi123/subscriptions", "organizations_url": "https://api.github.com/users/alidabaghi123/orgs", "repos_url": "https://api.github.com/users/alidabaghi123/repos", "events_url": "https://api.github.com/users/alidabaghi123/events{/privacy}", "received_events_url": "https://api.github.com/users/alidabaghi123/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-01-22T05:40:01
2023-03-09T05:14:22
2023-03-01T02:07:20
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
Can the conformer model export to torch.jit?
{ "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/5835/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/5835/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5834
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5834/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5834/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5834/events
https://github.com/NVIDIA/NeMo/pull/5834
1,551,299,672
PR_kwDOC_bI7s5IPKti
5,834
Add SSL import functionality for Audio Lexical PNC Models
{ "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": 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-01-20T18:48:14
2023-02-04T00:14:02
2023-01-23T20:55:59
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5834", "html_url": "https://github.com/NVIDIA/NeMo/pull/5834", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5834.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5834.patch", "merged_at": "2023-01-23T20:55:59" }
Signed-off-by: Daniel Egert <[email protected]> # What does this PR do ? This PR allows the audio lexical PNC model to also import pretrained SSL models for the audio encoder, and allows importing any audio encoder which is on disk, and not just on NGC **Collection**: [Note which collection this PR will affect] NLP # Changelog - Changes punctuation_capitalization_lexical_audio_model.py to support `.restore_from` instead of just `.from_pretrained` - Changes punctuation_capitalization_lexical_audio_model.py to support SSL models for the encoder by correct removing the SSL decoder_losses - Changes punctuation_capitalization_model.py to support inference with a list of bytes instead of just list of strings for audio filepaths on disk. This allows using a bytestream which is necessary for Riva sharded tar files - Changes punctuation_capitalization_infer_dataset.py to support the same bytestream changes - Changes punctuation_capitalization_model.py to remove superfluous debug print statements outside nemo logging which were accidentally left in # Usage You can now specify `model.audio_encoder.pretrained_model` to be a .nemo file on disk rather than just the name of a model in NGC. This is set in the config yaml of the audio lexical model. ```yaml model: audio_encoder: pretrained_model: /path/to/my_ssl_model.nemo # this now works freeze: is_enabled: false # If set to True weights of audio encoder will not be updated during training. d_model: 256 # Input dimension of MultiheadAttentionMechanism and PositionwiseFeedForward d_ff: 1024 # Hidden dimension of PositionwiseFeedForward num_layers: 4 # Number of additional Conformer 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**: - [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. # Additional Information * Related to # (issue)
{ "login": "jubick1337", "id": 16004982, "node_id": "MDQ6VXNlcjE2MDA0OTgy", "avatar_url": "https://avatars.githubusercontent.com/u/16004982?v=4", "gravatar_id": "", "url": "https://api.github.com/users/jubick1337", "html_url": "https://github.com/jubick1337", "followers_url": "https://api.github.com/users/jubick1337/followers", "following_url": "https://api.github.com/users/jubick1337/following{/other_user}", "gists_url": "https://api.github.com/users/jubick1337/gists{/gist_id}", "starred_url": "https://api.github.com/users/jubick1337/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jubick1337/subscriptions", "organizations_url": "https://api.github.com/users/jubick1337/orgs", "repos_url": "https://api.github.com/users/jubick1337/repos", "events_url": "https://api.github.com/users/jubick1337/events{/privacy}", "received_events_url": "https://api.github.com/users/jubick1337/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5834/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/5834/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5833
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5833/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5833/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5833/events
https://github.com/NVIDIA/NeMo/pull/5833
1,551,108,007
PR_kwDOC_bI7s5IOhbR
5,833
[BugFix] Updated CTC decoders installation in tutorial
{ "login": "vsl9", "id": 4344862, "node_id": "MDQ6VXNlcjQzNDQ4NjI=", "avatar_url": "https://avatars.githubusercontent.com/u/4344862?v=4", "gravatar_id": "", "url": "https://api.github.com/users/vsl9", "html_url": "https://github.com/vsl9", "followers_url": "https://api.github.com/users/vsl9/followers", "following_url": "https://api.github.com/users/vsl9/following{/other_user}", "gists_url": "https://api.github.com/users/vsl9/gists{/gist_id}", "starred_url": "https://api.github.com/users/vsl9/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/vsl9/subscriptions", "organizations_url": "https://api.github.com/users/vsl9/orgs", "repos_url": "https://api.github.com/users/vsl9/repos", "events_url": "https://api.github.com/users/vsl9/events{/privacy}", "received_events_url": "https://api.github.com/users/vsl9/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-01-20T16:07:51
2023-01-23T21:40:22
2023-01-23T21:40:18
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5833", "html_url": "https://github.com/NVIDIA/NeMo/pull/5833", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5833.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5833.patch", "merged_at": "2023-01-23T21:40:18" }
# What does this PR do ? Fixes `ctc-decoders` installation in `Offline_ASR` notebook. **Collection**: ASR # Changelog - Updated CTC decoders installation # 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? - [X] 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) Signed-off-by: Vitaly Lavrukhin <[email protected]>
{ "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/5833/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/5833/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5832
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5832/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5832/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5832/events
https://github.com/NVIDIA/NeMo/issues/5832
1,550,137,862
I_kwDOC_bI7s5cZToG
5,832
Unnecessary rng shuffle in x-denoiser sample generation
{ "login": "dlwh", "id": 9633, "node_id": "MDQ6VXNlcjk2MzM=", "avatar_url": "https://avatars.githubusercontent.com/u/9633?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dlwh", "html_url": "https://github.com/dlwh", "followers_url": "https://api.github.com/users/dlwh/followers", "following_url": "https://api.github.com/users/dlwh/following{/other_user}", "gists_url": "https://api.github.com/users/dlwh/gists{/gist_id}", "starred_url": "https://api.github.com/users/dlwh/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dlwh/subscriptions", "organizations_url": "https://api.github.com/users/dlwh/orgs", "repos_url": "https://api.github.com/users/dlwh/repos", "events_url": "https://api.github.com/users/dlwh/events{/privacy}", "received_events_url": "https://api.github.com/users/dlwh/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": "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 }
[ { "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 } ]
null
null
2023-01-20T00:16:18
2023-02-28T02:01:02
2023-02-28T02:01:02
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
I recognize there's a lot of copy-pasta from the classic t5 denoising function, but this shuffle is unnecessary, or there's a bug https://github.com/NVIDIA/NeMo/blob/b69f61d4c05ce7ee35d1474025998ca6e5c20d72/nemo/collections/nlp/data/language_modeling/megatron/dataset_utils.py#L497 no big deal, just thought I'd flag
{ "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/5832/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/5832/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5831
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5831/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5831/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5831/events
https://github.com/NVIDIA/NeMo/pull/5831
1,550,078,633
PR_kwDOC_bI7s5ILGwW
5,831
remove transformer version upper bound
{ "login": "Zhilin123", "id": 29811458, "node_id": "MDQ6VXNlcjI5ODExNDU4", "avatar_url": "https://avatars.githubusercontent.com/u/29811458?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Zhilin123", "html_url": "https://github.com/Zhilin123", "followers_url": "https://api.github.com/users/Zhilin123/followers", "following_url": "https://api.github.com/users/Zhilin123/following{/other_user}", "gists_url": "https://api.github.com/users/Zhilin123/gists{/gist_id}", "starred_url": "https://api.github.com/users/Zhilin123/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Zhilin123/subscriptions", "organizations_url": "https://api.github.com/users/Zhilin123/orgs", "repos_url": "https://api.github.com/users/Zhilin123/repos", "events_url": "https://api.github.com/users/Zhilin123/events{/privacy}", "received_events_url": "https://api.github.com/users/Zhilin123/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-01-19T23:06:12
2023-01-20T20:52:55
2023-01-20T20:52:49
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5831", "html_url": "https://github.com/NVIDIA/NeMo/pull/5831", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5831.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5831.patch", "merged_at": "2023-01-20T20:52:49" }
# What does this PR do ? remove transformer version upper bound **Collection**: nlp, asr, tts # 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": "Zhilin123", "id": 29811458, "node_id": "MDQ6VXNlcjI5ODExNDU4", "avatar_url": "https://avatars.githubusercontent.com/u/29811458?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Zhilin123", "html_url": "https://github.com/Zhilin123", "followers_url": "https://api.github.com/users/Zhilin123/followers", "following_url": "https://api.github.com/users/Zhilin123/following{/other_user}", "gists_url": "https://api.github.com/users/Zhilin123/gists{/gist_id}", "starred_url": "https://api.github.com/users/Zhilin123/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Zhilin123/subscriptions", "organizations_url": "https://api.github.com/users/Zhilin123/orgs", "repos_url": "https://api.github.com/users/Zhilin123/repos", "events_url": "https://api.github.com/users/Zhilin123/events{/privacy}", "received_events_url": "https://api.github.com/users/Zhilin123/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5831/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/5831/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5830
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5830/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5830/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5830/events
https://github.com/NVIDIA/NeMo/pull/5830
1,549,996,392
PR_kwDOC_bI7s5IK1RB
5,830
validation batch sizing and drop_last controls
{ "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-01-19T21:52:29
2023-01-24T20:30:40
2023-01-24T20:30:28
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5830", "html_url": "https://github.com/NVIDIA/NeMo/pull/5830", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5830.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5830.patch", "merged_at": "2023-01-24T20:30:28" }
# What does this PR do ? This PR allows use to set the batch sizes for validation. This in turn allows the use to set `validation_drop_last=False` in the config. Allowing more control over the validation loss calculation and reporting. **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": "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/5830/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/5830/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5829
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5829/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5829/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5829/events
https://github.com/NVIDIA/NeMo/pull/5829
1,549,843,997
PR_kwDOC_bI7s5IKUKz
5,829
Radtts dur transformer
{ "login": "MikyasDesta", "id": 4801137, "node_id": "MDQ6VXNlcjQ4MDExMzc=", "avatar_url": "https://avatars.githubusercontent.com/u/4801137?v=4", "gravatar_id": "", "url": "https://api.github.com/users/MikyasDesta", "html_url": "https://github.com/MikyasDesta", "followers_url": "https://api.github.com/users/MikyasDesta/followers", "following_url": "https://api.github.com/users/MikyasDesta/following{/other_user}", "gists_url": "https://api.github.com/users/MikyasDesta/gists{/gist_id}", "starred_url": "https://api.github.com/users/MikyasDesta/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/MikyasDesta/subscriptions", "organizations_url": "https://api.github.com/users/MikyasDesta/orgs", "repos_url": "https://api.github.com/users/MikyasDesta/repos", "events_url": "https://api.github.com/users/MikyasDesta/events{/privacy}", "received_events_url": "https://api.github.com/users/MikyasDesta/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-01-19T19:47:24
2023-02-09T19:03:04
2023-02-09T19:03:03
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5829", "html_url": "https://github.com/NVIDIA/NeMo/pull/5829", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5829.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5829.patch", "merged_at": null }
# What does this PR do ? Add a one line overview of what this PR aims to accomplish. It will add IPA config files for RADTTS and ADD transformer support for duration prediction. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in this PR. it adds example/tts/config/rad_tts-feature_pred_ipa and example/tts/config/rad_tts-decoder_ipa # 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": "blisc", "id": 4763352, "node_id": "MDQ6VXNlcjQ3NjMzNTI=", "avatar_url": "https://avatars.githubusercontent.com/u/4763352?v=4", "gravatar_id": "", "url": "https://api.github.com/users/blisc", "html_url": "https://github.com/blisc", "followers_url": "https://api.github.com/users/blisc/followers", "following_url": "https://api.github.com/users/blisc/following{/other_user}", "gists_url": "https://api.github.com/users/blisc/gists{/gist_id}", "starred_url": "https://api.github.com/users/blisc/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/blisc/subscriptions", "organizations_url": "https://api.github.com/users/blisc/orgs", "repos_url": "https://api.github.com/users/blisc/repos", "events_url": "https://api.github.com/users/blisc/events{/privacy}", "received_events_url": "https://api.github.com/users/blisc/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5829/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/5829/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5828
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5828/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5828/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5828/events
https://github.com/NVIDIA/NeMo/issues/5828
1,549,193,415
I_kwDOC_bI7s5cVtDH
5,828
Nemo ASR training: Unable to get/save best top n checkpoints, and exp_dir not setting
{ "login": "manjuke", "id": 6142443, "node_id": "MDQ6VXNlcjYxNDI0NDM=", "avatar_url": "https://avatars.githubusercontent.com/u/6142443?v=4", "gravatar_id": "", "url": "https://api.github.com/users/manjuke", "html_url": "https://github.com/manjuke", "followers_url": "https://api.github.com/users/manjuke/followers", "following_url": "https://api.github.com/users/manjuke/following{/other_user}", "gists_url": "https://api.github.com/users/manjuke/gists{/gist_id}", "starred_url": "https://api.github.com/users/manjuke/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/manjuke/subscriptions", "organizations_url": "https://api.github.com/users/manjuke/orgs", "repos_url": "https://api.github.com/users/manjuke/repos", "events_url": "https://api.github.com/users/manjuke/events{/privacy}", "received_events_url": "https://api.github.com/users/manjuke/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-01-19T13:46:02
2023-02-26T02:05:58
2023-02-26T02:05:58
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
Hi All, The expdir and save_top_k under exp_manager are not working as expected. 1. "expdir" is getting created, but nothing is being written. I tried setting logger to False, even then nothing is being written to "expdir". 2. Always only the last checkpint is saved irrespective of "save_top_k" value. And, only one checkpoint is save, and it is not the best. In addition, setting these values in config files. I am passing them during training as below: expdir = '/data/manju/tamil/exp/logs/expDir' params['exp_manager']['exp_dir'] = expdir params['exp_manager']['save_top_k'] = 6 Pls suggest @titu1994 . 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/5828/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/5828/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5827
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5827/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5827/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5827/events
https://github.com/NVIDIA/NeMo/pull/5827
1,548,595,702
PR_kwDOC_bI7s5IGDjD
5,827
[ASR] Configurable metrics for audio-to-audio + removed experimental decorators
{ "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-01-19T06:39:08
2023-02-01T22:47:49
2023-02-01T22:47:49
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5827", "html_url": "https://github.com/NVIDIA/NeMo/pull/5827", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5827.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5827.patch", "merged_at": "2023-02-01T22:47:49" }
Signed-off-by: Ante Jukić <[email protected]> # What does this PR do ? This PR adds an option to configure metrics for `AudioToAudio` models. **Collection**: ASR # Changelog - Added `AudioMetricWrapper` to support batches with examples with variable input lengths - Added unit tests - Added example of using metrics in `multichannel_enhancement.yaml` - Removed experimental decorators # Usage Metrics for `val` and `test` can be configured by adding `model.metrics`, for example ``` model: ... metrics: val: sdr: # output SDR _target_: torchmetrics.audio.SignalDistortionRatio test: sdr_ch0: # SDR on output channel 0 _target_: torchmetrics.audio.SignalDistortionRatio channel: 0 ``` # 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 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": "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/5827/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/5827/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5826
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5826/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5826/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5826/events
https://github.com/NVIDIA/NeMo/pull/5826
1,548,328,992
PR_kwDOC_bI7s5IFKqF
5,826
Concat dataset and aistore support for label models
{ "login": "Kipok", "id": 2354422, "node_id": "MDQ6VXNlcjIzNTQ0MjI=", "avatar_url": "https://avatars.githubusercontent.com/u/2354422?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Kipok", "html_url": "https://github.com/Kipok", "followers_url": "https://api.github.com/users/Kipok/followers", "following_url": "https://api.github.com/users/Kipok/following{/other_user}", "gists_url": "https://api.github.com/users/Kipok/gists{/gist_id}", "starred_url": "https://api.github.com/users/Kipok/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Kipok/subscriptions", "organizations_url": "https://api.github.com/users/Kipok/orgs", "repos_url": "https://api.github.com/users/Kipok/repos", "events_url": "https://api.github.com/users/Kipok/events{/privacy}", "received_events_url": "https://api.github.com/users/Kipok/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-01-19T00:34:34
2023-01-24T19:31:10
2023-01-24T19:31:09
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5826", "html_url": "https://github.com/NVIDIA/NeMo/pull/5826", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5826.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5826.patch", "merged_at": "2023-01-24T19:31:09" }
# What does this PR do ? Add support for concat dataset and aistore for label models. Ideally, we should implement both of the features in a single place, such that all of our datasets can automatically support them. But that requires some additional refactoring, so just adding partial support to a few datasets for now. **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**: - [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": "Kipok", "id": 2354422, "node_id": "MDQ6VXNlcjIzNTQ0MjI=", "avatar_url": "https://avatars.githubusercontent.com/u/2354422?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Kipok", "html_url": "https://github.com/Kipok", "followers_url": "https://api.github.com/users/Kipok/followers", "following_url": "https://api.github.com/users/Kipok/following{/other_user}", "gists_url": "https://api.github.com/users/Kipok/gists{/gist_id}", "starred_url": "https://api.github.com/users/Kipok/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Kipok/subscriptions", "organizations_url": "https://api.github.com/users/Kipok/orgs", "repos_url": "https://api.github.com/users/Kipok/repos", "events_url": "https://api.github.com/users/Kipok/events{/privacy}", "received_events_url": "https://api.github.com/users/Kipok/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5826/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/5826/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5825
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5825/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5825/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5825/events
https://github.com/NVIDIA/NeMo/pull/5825
1,548,309,216
PR_kwDOC_bI7s5IFGXg
5,825
[BugFix] decoder timestamp count has a mismatch when <unk> is decoded
{ "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": 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": 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": 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-01-19T00:10:15
2023-03-27T17:16:30
2023-01-19T14:45:16
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5825", "html_url": "https://github.com/NVIDIA/NeMo/pull/5825", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5825.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5825.patch", "merged_at": "2023-01-19T14:45:16" }
Signed-off-by: Taejin Park <[email protected]> # What does this PR do ? decoder timestamp count has a mismatch when <unk> is decoded. Instead of having a temporary solution to ignore <unk>, the script is changed to output <unk> as decoded output with a correct timestamps. https://github.com/NVIDIA/NeMo/pull/5481/files In this previous PR, the <unk> symbol is coded to be ignored, but it still causes mismatch errors when <unk> is in the middle of two isolated one-token words. This PR fixes such errors. **Collection**: [Note which collection this PR will affect] ASR # Changelog `ctc_decoder_predictions_tensor_with_ts()` in decoder_timestamps_utils.py is changed to output the actual decoded text with the matching word timestamps. # Usage ```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) - [ ] 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 ## Who can review? ASR contributors # 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/5825/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/5825/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5824
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5824/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5824/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5824/events
https://github.com/NVIDIA/NeMo/pull/5824
1,538,176,899
PR_kwDOC_bI7s5HopVM
5,824
POC use of pre-trained aligner
{ "login": "coopie", "id": 6509132, "node_id": "MDQ6VXNlcjY1MDkxMzI=", "avatar_url": "https://avatars.githubusercontent.com/u/6509132?v=4", "gravatar_id": "", "url": "https://api.github.com/users/coopie", "html_url": "https://github.com/coopie", "followers_url": "https://api.github.com/users/coopie/followers", "following_url": "https://api.github.com/users/coopie/following{/other_user}", "gists_url": "https://api.github.com/users/coopie/gists{/gist_id}", "starred_url": "https://api.github.com/users/coopie/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/coopie/subscriptions", "organizations_url": "https://api.github.com/users/coopie/orgs", "repos_url": "https://api.github.com/users/coopie/repos", "events_url": "https://api.github.com/users/coopie/events{/privacy}", "received_events_url": "https://api.github.com/users/coopie/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": 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-01-18T15:17:07
2023-01-18T15:19:00
2023-01-18T15:18:21
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5824", "html_url": "https://github.com/NVIDIA/NeMo/pull/5824", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5824.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5824.patch", "merged_at": null }
null
{ "login": "coopie", "id": 6509132, "node_id": "MDQ6VXNlcjY1MDkxMzI=", "avatar_url": "https://avatars.githubusercontent.com/u/6509132?v=4", "gravatar_id": "", "url": "https://api.github.com/users/coopie", "html_url": "https://github.com/coopie", "followers_url": "https://api.github.com/users/coopie/followers", "following_url": "https://api.github.com/users/coopie/following{/other_user}", "gists_url": "https://api.github.com/users/coopie/gists{/gist_id}", "starred_url": "https://api.github.com/users/coopie/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/coopie/subscriptions", "organizations_url": "https://api.github.com/users/coopie/orgs", "repos_url": "https://api.github.com/users/coopie/repos", "events_url": "https://api.github.com/users/coopie/events{/privacy}", "received_events_url": "https://api.github.com/users/coopie/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5824/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/5824/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5823
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5823/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5823/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5823/events
https://github.com/NVIDIA/NeMo/pull/5823
1,537,952,948
PR_kwDOC_bI7s5Hn5A3
5,823
Update files for lightning 1.9.0
{ "login": "SeanNaren", "id": 6707363, "node_id": "MDQ6VXNlcjY3MDczNjM=", "avatar_url": "https://avatars.githubusercontent.com/u/6707363?v=4", "gravatar_id": "", "url": "https://api.github.com/users/SeanNaren", "html_url": "https://github.com/SeanNaren", "followers_url": "https://api.github.com/users/SeanNaren/followers", "following_url": "https://api.github.com/users/SeanNaren/following{/other_user}", "gists_url": "https://api.github.com/users/SeanNaren/gists{/gist_id}", "starred_url": "https://api.github.com/users/SeanNaren/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SeanNaren/subscriptions", "organizations_url": "https://api.github.com/users/SeanNaren/orgs", "repos_url": "https://api.github.com/users/SeanNaren/repos", "events_url": "https://api.github.com/users/SeanNaren/events{/privacy}", "received_events_url": "https://api.github.com/users/SeanNaren/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-01-18T12:52:55
2023-01-21T22:41:03
2023-01-18T20:56:15
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5823", "html_url": "https://github.com/NVIDIA/NeMo/pull/5823", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5823.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5823.patch", "merged_at": "2023-01-18T20:56:15" }
# What does this PR do ? Update our code so that we can support Lightning 1.8.x and 1.9.x **Collection**: Common # Changelog - Update NeMo for Lightning 1.9.0. # 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.
{ "login": "SeanNaren", "id": 6707363, "node_id": "MDQ6VXNlcjY3MDczNjM=", "avatar_url": "https://avatars.githubusercontent.com/u/6707363?v=4", "gravatar_id": "", "url": "https://api.github.com/users/SeanNaren", "html_url": "https://github.com/SeanNaren", "followers_url": "https://api.github.com/users/SeanNaren/followers", "following_url": "https://api.github.com/users/SeanNaren/following{/other_user}", "gists_url": "https://api.github.com/users/SeanNaren/gists{/gist_id}", "starred_url": "https://api.github.com/users/SeanNaren/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SeanNaren/subscriptions", "organizations_url": "https://api.github.com/users/SeanNaren/orgs", "repos_url": "https://api.github.com/users/SeanNaren/repos", "events_url": "https://api.github.com/users/SeanNaren/events{/privacy}", "received_events_url": "https://api.github.com/users/SeanNaren/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5823/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/5823/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5822
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5822/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5822/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5822/events
https://github.com/NVIDIA/NeMo/pull/5822
1,537,938,608
PR_kwDOC_bI7s5Hn18G
5,822
Pin lightning version less than 1.9.0
{ "login": "SeanNaren", "id": 6707363, "node_id": "MDQ6VXNlcjY3MDczNjM=", "avatar_url": "https://avatars.githubusercontent.com/u/6707363?v=4", "gravatar_id": "", "url": "https://api.github.com/users/SeanNaren", "html_url": "https://github.com/SeanNaren", "followers_url": "https://api.github.com/users/SeanNaren/followers", "following_url": "https://api.github.com/users/SeanNaren/following{/other_user}", "gists_url": "https://api.github.com/users/SeanNaren/gists{/gist_id}", "starred_url": "https://api.github.com/users/SeanNaren/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SeanNaren/subscriptions", "organizations_url": "https://api.github.com/users/SeanNaren/orgs", "repos_url": "https://api.github.com/users/SeanNaren/repos", "events_url": "https://api.github.com/users/SeanNaren/events{/privacy}", "received_events_url": "https://api.github.com/users/SeanNaren/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
null
[]
null
null
2023-01-18T12:43:12
2023-01-18T16:10:36
2023-01-18T16:10:31
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5822", "html_url": "https://github.com/NVIDIA/NeMo/pull/5822", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5822.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5822.patch", "merged_at": "2023-01-18T16:10:31" }
Signed-off-by: SeanNaren <[email protected]> Fixes https://github.com/NVIDIA/NeMo/issues/5821 # 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": "SeanNaren", "id": 6707363, "node_id": "MDQ6VXNlcjY3MDczNjM=", "avatar_url": "https://avatars.githubusercontent.com/u/6707363?v=4", "gravatar_id": "", "url": "https://api.github.com/users/SeanNaren", "html_url": "https://github.com/SeanNaren", "followers_url": "https://api.github.com/users/SeanNaren/followers", "following_url": "https://api.github.com/users/SeanNaren/following{/other_user}", "gists_url": "https://api.github.com/users/SeanNaren/gists{/gist_id}", "starred_url": "https://api.github.com/users/SeanNaren/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SeanNaren/subscriptions", "organizations_url": "https://api.github.com/users/SeanNaren/orgs", "repos_url": "https://api.github.com/users/SeanNaren/repos", "events_url": "https://api.github.com/users/SeanNaren/events{/privacy}", "received_events_url": "https://api.github.com/users/SeanNaren/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5822/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/5822/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5821
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5821/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5821/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5821/events
https://github.com/NVIDIA/NeMo/issues/5821
1,537,776,985
I_kwDOC_bI7s5bqJ1Z
5,821
ImportError PL Logger
{ "login": "Oscaarjs", "id": 37636054, "node_id": "MDQ6VXNlcjM3NjM2MDU0", "avatar_url": "https://avatars.githubusercontent.com/u/37636054?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Oscaarjs", "html_url": "https://github.com/Oscaarjs", "followers_url": "https://api.github.com/users/Oscaarjs/followers", "following_url": "https://api.github.com/users/Oscaarjs/following{/other_user}", "gists_url": "https://api.github.com/users/Oscaarjs/gists{/gist_id}", "starred_url": "https://api.github.com/users/Oscaarjs/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Oscaarjs/subscriptions", "organizations_url": "https://api.github.com/users/Oscaarjs/orgs", "repos_url": "https://api.github.com/users/Oscaarjs/repos", "events_url": "https://api.github.com/users/Oscaarjs/events{/privacy}", "received_events_url": "https://api.github.com/users/Oscaarjs/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-01-18T10:43:30
2023-01-18T16:10:33
2023-01-18T16:10:33
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Describe the bug** Getting `ImportError` bug when importing e.g. ASR model when installing NeMo from main. Presumably because of PL update yesterday? [(pl-release)](https://github.com/Lightning-AI/lightning/releases/tag/1.9.0) **Steps/Code to reproduce bug** `python -m pip install git+https://github.com/NVIDIA/NeMo.git@main#egg=nemo_toolkit[asr]` `from nemo.collections.asr.models import EncDecSpeakerLabelModel ` yields: ![image](https://user-images.githubusercontent.com/37636054/213150477-9b91c652-80e2-49e2-99ae-d37c2aeb6c0b.png) **Expected behavior** .. **Environment overview (please complete the following information)** Google Colab **Environment details** If NVIDIA docker image is used you don't need to specify these. Otherwise, please provide: - OS version: Google Colab - PyTorch version: 1.13.1+cu116 - Python version: Python 3.8.10
{ "login": "SeanNaren", "id": 6707363, "node_id": "MDQ6VXNlcjY3MDczNjM=", "avatar_url": "https://avatars.githubusercontent.com/u/6707363?v=4", "gravatar_id": "", "url": "https://api.github.com/users/SeanNaren", "html_url": "https://github.com/SeanNaren", "followers_url": "https://api.github.com/users/SeanNaren/followers", "following_url": "https://api.github.com/users/SeanNaren/following{/other_user}", "gists_url": "https://api.github.com/users/SeanNaren/gists{/gist_id}", "starred_url": "https://api.github.com/users/SeanNaren/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SeanNaren/subscriptions", "organizations_url": "https://api.github.com/users/SeanNaren/orgs", "repos_url": "https://api.github.com/users/SeanNaren/repos", "events_url": "https://api.github.com/users/SeanNaren/events{/privacy}", "received_events_url": "https://api.github.com/users/SeanNaren/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5821/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/5821/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5820
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5820/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5820/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5820/events
https://github.com/NVIDIA/NeMo/issues/5820
1,537,545,365
I_kwDOC_bI7s5bpRSV
5,820
NeMo Megatron dataset helper makefile compiles output to write protected container folder (Singularity)
{ "login": "Lauler", "id": 7157234, "node_id": "MDQ6VXNlcjcxNTcyMzQ=", "avatar_url": "https://avatars.githubusercontent.com/u/7157234?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Lauler", "html_url": "https://github.com/Lauler", "followers_url": "https://api.github.com/users/Lauler/followers", "following_url": "https://api.github.com/users/Lauler/following{/other_user}", "gists_url": "https://api.github.com/users/Lauler/gists{/gist_id}", "starred_url": "https://api.github.com/users/Lauler/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Lauler/subscriptions", "organizations_url": "https://api.github.com/users/Lauler/orgs", "repos_url": "https://api.github.com/users/Lauler/repos", "events_url": "https://api.github.com/users/Lauler/events{/privacy}", "received_events_url": "https://api.github.com/users/Lauler/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": "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 }
[ { "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 } ]
null
null
2023-01-18T07:50:07
2024-03-11T01:16:01
2023-04-09T01:52:14
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Describe the bug** The [C++ dataset helper makefile](https://github.com/NVIDIA/NeMo/blob/main/nemo/collections/nlp/data/language_modeling/megatron/Makefile) of Megatron in NeMo attempts to write its output to `/usr/bin/ld`, causing training to crash when using singularity containers build off of your NVIDIA NGC NeMo containers on HPC clusters. ``` 0: [NeMo I 2023-01-18 08:00:59 gpt_dataset:488] > elasped time to build and save doc-idx mapping (seconds): 40.719332 0: make: Entering directory '/opt/conda/lib/python3.8/site-packages/nemo/collections/nlp/data/language_modeling/megatron' 0: g++ -O3 -Wall -shared -std=c++11 -fPIC -fdiagnostics-color -I/opt/conda/include/python3.8 -I/opt/conda/lib/python3.8/site-packages/pybind11/include helpers.cpp -o helpers.cpython-38-x86_64-linux-gnu.so 0: /usr/bin/ld: cannot open output file helpers.cpython-38-x86_64-linux-gnu.so: Read-only file system 0: collect2: error: ld returned 1 exit status 0: make: *** [Makefile:23: helpers.cpython-38-x86_64-linux-gnu.so] Error 1 0: make: Leaving directory '/opt/conda/lib/python3.8/site-packages/nemo/collections/nlp/data/language_modeling/megatron' 0: [NeMo E 2023-01-18 08:01:30 dataset_utils:83] Making C++ dataset helpers module failed, exiting. 0: [NeMo W 2023-01-18 08:01:31 nemo_logging:349] /opt/conda/lib/python3.8/site-packages/pytorch_lightning/strategies/ddp.py:431: UserWarning: Error handling mechanism for deadlock detection is uninitialized. Skipping check. 0: rank_zero_warn("Error handling mechanism for deadlock detection is uninitialized. Skipping check.") ``` **Steps/Code to reproduce bug** Build a singularity container for use in HPC. This is our definition file `nemo.def`, and we build it locally (outside of HPC environment) via `sudo singularity build nemo2209.sif nemo.def`: ``` From: nvcr.io/nvidia/nemo:22.09 %environment export LC_ALL=C ``` We transfer the image `nemo2209.sif` to HPC, and follow the [NeMo GPT training docs](https://docs.nvidia.com/deeplearning/nemo/user-guide/docs/en/stable/nlp/nemo_megatron/gpt/gpt_training.html). See this other issue for [sbatch config and launch script](https://github.com/NVIDIA/NeMo/issues/5819) (changing `--nodes=2` to `--nodes=1`). **Expected behavior** Most users will probably use NeMo Megatron on HPC, where they don't have `sudo` rights and need to use Singularity instead of Docker. It would be nice if you would test that your documentation examples are launchable with Singularity containers on systems where you do not have root/sudo. A container that is already built should be able to launch training without errors, and without building/compiling extra stuff that needs to be written to write protected folders. Regular NVIDIA Pytorch containers work out of the box when converted to Singularity containers and used with Megatron-LM. **Environment overview (please complete the following information)** HPC cluster, Slurm. **Environment details** NGC Nemo containers 22.08 and 22.09. **Additional context** A100 GPUs.
{ "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/5820/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/5820/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5819
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5819/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5819/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5819/events
https://github.com/NVIDIA/NeMo/issues/5819
1,537,515,675
I_kwDOC_bI7s5bpKCb
5,819
Multi-node communication problem using Slurm and NeMo Megatron official GPT docs example
{ "login": "Lauler", "id": 7157234, "node_id": "MDQ6VXNlcjcxNTcyMzQ=", "avatar_url": "https://avatars.githubusercontent.com/u/7157234?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Lauler", "html_url": "https://github.com/Lauler", "followers_url": "https://api.github.com/users/Lauler/followers", "following_url": "https://api.github.com/users/Lauler/following{/other_user}", "gists_url": "https://api.github.com/users/Lauler/gists{/gist_id}", "starred_url": "https://api.github.com/users/Lauler/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Lauler/subscriptions", "organizations_url": "https://api.github.com/users/Lauler/orgs", "repos_url": "https://api.github.com/users/Lauler/repos", "events_url": "https://api.github.com/users/Lauler/events{/privacy}", "received_events_url": "https://api.github.com/users/Lauler/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-01-18T07:19:27
2023-01-23T19:59:56
2023-01-23T10:00:37
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Describe the bug** We are trying to get multi-node training to work with NeMo Megatron by following the steps in the quick start steps in your [GPT model training docs](https://docs.nvidia.com/deeplearning/nemo/user-guide/docs/en/stable/nlp/nemo_megatron/gpt/gpt_training.html). We're using Slurm on an HPC, and are able to successfully train using Megatron-LM, but not with NeMo. NeMo keeps insisting we are running multi-node training without SLURM handling the processes: ``` 0: [NeMo E 2023-01-18 07:39:42 exp_manager:423] You are running multi-node training without SLURM handling the processes. Please note that this is not tested in NeMo and could result in errors. ``` and the global ranks of our GPUs seem to be incorrectly initialised as result: ``` 0: Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/8 0: Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/8 0: Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/8 1: Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/8 1: Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/8 1: Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/8 ``` **Steps/Code to reproduce bug** 1. Build a singularity container by bootstrapping the NeMo docker container from NGC. We used both 22.08 and 22.09. Definition file: ```BootStrap: docker From: nvcr.io/nvidia/nemo:22.09 %environment export LC_ALL=C ``` 2. Follow steps in the [GPT model training docs ](https://docs.nvidia.com/deeplearning/nemo/user-guide/docs/en/stable/nlp/nemo_megatron/gpt/gpt_training.html). 3. Launch job via Slurm. Here's our sbatch script: ```bash #!/bin/bash -l #SBATCH --partition=gpu #SBATCH --qos=test #SBATCH --account=####### # our project account #SBATCH --job-name=gpt_nemo #SBATCH --nodes=2 #SBATCH --gres=gpu:4 ##SBATCH --ntasks-per-node=1 ##SBATCH --begin=now ##SBATCH --nodelist=mel[2001-2017] ##SBATCH --exclude=mel2080 #SBATCH --time=0-00:30:00 #SBATCH --output=logs/gpt_nemo.log # Modules pwd module purge module load Singularity-CE ## Create needed distributed env variables # addr=$(/bin/hostname -s) # export MASTER_ADDR=$addr # export MASTER_PORT=16783 # Can be any unused port export GPU_PER_NODE=4 # debugging flags (optional) export NCCL_DEBUG=INFO export PYTHONFAULTHANDLER=1 # Logfile DATETIME=`date +'date_%y-%m-%d_time_%H-%M-%S'` PROJECT=/project/home/p200097/faton/nemo_test # Use abs path, not symbolic link CONTAINER_PATH=/project/home/p200097/faton/nemo_test/nemo2209.sandbox LOGGING=$PROJECT/logs LOGFILE="${LOGGING}/%x_${DATETIME}.log" echo $LOGFILE echo "SLURM_JOB_GPUS is $SLURM_JOB_GPUS" ls -lh cmd="srun -l --output=$LOGGING/gpt_nemo_$DATETIME.log \ singularity exec --nv --bind $PROJECT:$PROJECT $CONTAINER_PATH \ bash $PROJECT/training_args.sh" $cmd ``` And here are the setting and launch script in `training_args.sh`: ```bash /bin/hostname -s # cp -f /mnt/NeMo/examples/nlp/language_modeling/megatron_gpt_pretraining.py /workspace/nemo/examples/nlp/language_modeling/megatron_gpt_pretraining.py echo "ntasks-per-node is: $SLURM_NTASKS_PER_NODE" echo "The PROCID is: $SLURM_PROCID" echo "SLURM_JOB_GPUS is $SLURM_JOB_GPUS" python /workspace/nemo/examples/nlp/language_modeling/megatron_gpt_pretraining.py \ --config-path=/workspace/nemo/examples/nlp/language_modeling/conf \ --config-name=megatron_gpt_config \ trainer.devices=$GPU_PER_NODE \ trainer.num_nodes=$SLURM_JOB_NUM_NODES \ 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 ``` **Expected behavior** Nemo/Pytorch Lightning recognizing job is run through slurm and starting the job successfully. **Environment overview (please complete the following information)** - Environment location: Using Slurm on a HPC and singularity containers created from NVIDIA's NGC NeMo containers (tested with 22.08 and 22.09) - Method of NeMo install: Pre-installed in container. **Additional context** 1 node in our case consists of 4 A100 GPUs. We saw that you referred to the Pytorch Lightning documentation when asked about multi-node training in [this previous issue](https://github.com/NVIDIA/NeMo/issues/3312). However, the Pytorch Lightning docs' example sbatch script has a setting that makes no sense to us: ```bash #SBATCH --ntasks-per-node=8 # This needs to match Trainer(devices=...) ``` If we set `--ntasks-per-node=4` this creates 4 separate processes in a node consisting of 4 GPUs, and each GPU is placed in a separate process, with only a single GPU being available per process. We tried the above method, and it only resulted in training crashing because NeMo/Lightning expected 4 devices (`0, 1, 2, 3`) but only saw one device (`0`) per process. In the github issue thread we referenced, you write that you guys use Slurm internally. Could you provide a working example of launching a multi-node job with NeMo Megatron using sbatch and the example in your docs? Log outputs: ``` 1: WARNING: underlay of /usr/bin/nvidia-smi required more than 50 (510) bind mounts 0: WARNING: underlay of /usr/bin/nvidia-smi required more than 50 (510) bind mounts 1: mel2014 1: ntasks-per-node is: 1: The PROCID is: 1 1: SLURM_JOB_GPUS is 0,1,2,3 0: mel2013 0: ntasks-per-node is: 0: The PROCID is: 0 0: SLURM_JOB_GPUS is 0,1,2,3 0: [NeMo W 2023-01-18 07:38:17 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. 0: [NeMo W 2023-01-18 07:38:36 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. 0: [NeMo I 2023-01-18 07:38:37 megatron_gpt_pretraining:36] 0: 0: ************** Experiment configuration *********** 0: [NeMo I 2023-01-18 07:38:37 megatron_gpt_pretraining:37] 0: name: megatron_gpt 0: restore_from_path: null 0: trainer: 0: devices: 4 0: num_nodes: 2 0: accelerator: gpu 0: precision: 16 0: logger: false 0: enable_checkpointing: false 0: replace_sampler_ddp: false 0: max_epochs: null 0: max_steps: 300000 0: log_every_n_steps: 50 0: val_check_interval: 300 0: limit_val_batches: 50 0: limit_test_batches: 50 0: accumulate_grad_batches: 1 0: gradient_clip_val: 1.0 0: benchmark: false 0: enable_model_summary: false 0: exp_manager: 0: explicit_log_dir: null 0: exp_dir: null 0: name: megatron_gpt 0: create_wandb_logger: false 0: wandb_logger_kwargs: 0: project: null 0: name: null 0: resume_if_exists: true 0: resume_ignore_no_checkpoint: true 0: create_checkpoint_callback: true 0: checkpoint_callback_params: 0: monitor: val_loss 0: save_top_k: 3 0: mode: min 0: always_save_nemo: false 0: save_nemo_on_train_end: false 0: filename: megatron_gpt--{val_loss:.2f}-{step}-{consumed_samples} 0: model_parallel_size: ${multiply:${model.tensor_model_parallel_size}, ${model.pipeline_model_parallel_size}} 0: model: 0: micro_batch_size: 6 0: global_batch_size: 192 0: tensor_model_parallel_size: 1 0: pipeline_model_parallel_size: 1 0: virtual_pipeline_model_parallel_size: null 0: encoder_seq_length: 1024 0: max_position_embeddings: 1024 0: num_layers: 12 0: hidden_size: 768 0: ffn_hidden_size: 3072 0: num_attention_heads: 12 0: init_method_std: 0.021 0: use_scaled_init_method: true 0: hidden_dropout: 0.1 0: kv_channels: null 0: apply_query_key_layer_scaling: true 0: normalization: layernorm 0: layernorm_epsilon: 1.0e-05 0: do_layer_norm_weight_decay: false 0: make_vocab_size_divisible_by: 128 0: pre_process: true 0: post_process: true 0: persist_layer_norm: true 0: tokenizer: 0: library: megatron 0: type: GPT2BPETokenizer 0: model: null 0: vocab_file: gpt2-vocab.json 0: merge_file: gpt2-merges.txt 0: delimiter: null 0: sentencepiece_legacy: false 0: native_amp_init_scale: 4294967296 0: native_amp_growth_interval: 1000 0: hysteresis: 2 0: fp32_residual_connection: false 0: fp16_lm_cross_entropy: false 0: megatron_amp_O2: false 0: grad_allreduce_chunk_size_mb: 125 0: grad_div_ar_fusion: true 0: gradient_accumulation_fusion: false 0: bias_activation_fusion: true 0: bias_dropout_add_fusion: true 0: masked_softmax_fusion: true 0: seed: 1234 0: resume_from_checkpoint: null 0: use_cpu_initialization: false 0: onnx_safe: false 0: apex_transformer_log_level: 30 0: gradient_as_bucket_view: true 0: sync_batch_comm: false 0: activations_checkpoint_granularity: null 0: activations_checkpoint_method: null 0: activations_checkpoint_num_layers: null 0: num_micro_batches_with_partial_activation_checkpoints: null 0: activations_checkpoint_layers_per_pipeline: null 0: sequence_parallel: false 0: transformer_engine: false 0: fp8: false 0: fp8_e4m3: false 0: fp8_hybrid: false 0: fp8_margin: 0 0: fp8_interval: 1 0: fp8_amax_history_len: 1 0: fp8_amax_compute_algo: most_recent 0: use_emha: false 0: data: 0: data_prefix: 0: - 1.0 0: - hfbpe_gpt_training_data_text_document 0: index_mapping_dir: null 0: data_impl: mmap 0: splits_string: 980,10,10 0: seq_length: 1024 0: skip_warmup: true 0: num_workers: 2 0: dataloader_type: single 0: reset_position_ids: false 0: reset_attention_mask: false 0: eod_mask_loss: false 0: validation_drop_last: true 0: nsys_profile: 0: enabled: false 0: start_step: 10 0: end_step: 10 0: ranks: 0: - 0 0: gen_shape: false 0: optim: 0: name: fused_adam 0: lr: 0.0006 0: weight_decay: 0.1 0: betas: 0: - 0.9 0: - 0.95 0: sched: 0: name: CosineAnnealing 0: warmup_steps: 750 0: constant_steps: 80000 0: min_lr: 6.0e-05 0: 0: GPU available: True (cuda), used: True 0: TPU available: False, using: 0 TPU cores 0: IPU available: False, using: 0 IPUs 0: HPU available: False, using: 0 HPUs 1: GPU available: True (cuda), used: True 1: TPU available: False, using: 0 TPU cores 1: IPU available: False, using: 0 IPUs 1: HPU available: False, using: 0 HPUs 0: [NeMo E 2023-01-18 07:38:39 exp_manager:423] You are running multi-node training without SLURM handling the processes. Please note that this is not tested in NeMo and could result in errors. 0: [NeMo W 2023-01-18 07:38:39 exp_manager:614] No version folders would be created under the log folder as 'resume_if_exists' is enabled. 0: [NeMo W 2023-01-18 07:38:39 exp_manager:466] There was no checkpoint folder at checkpoint_dir :/project/home/p200097/faton/nemo_test/nemo_experiments/megatron_gpt/checkpoints. Training from scratch. 0: [NeMo I 2023-01-18 07:38:39 exp_manager:315] Experiments will be logged at /project/home/p200097/faton/nemo_test/nemo_experiments/megatron_gpt 0: [NeMo I 2023-01-18 07:38:39 exp_manager:704] TensorboardLogger has been set up 0: [NeMo W 2023-01-18 07:38:39 exp_manager:971] The checkpoint callback was told to monitor a validation value and trainer's max_steps was set to 300000. Please ensure that max_steps will run for at least 1 epochs to ensure that checkpointing will not error out. 0: [NeMo I 2023-01-18 07:38:39 megatron_gpt_pretraining:74] Resuming training from checkpoint: None 1: 23-01-18 07:38:39 - PID:27971 - rank:(0, 0, 0, 0) - microbatches.py:39 - INFO - setting number of micro-batches to constant 4 0: [NeMo I 2023-01-18 07:38:39 megatron_init:223] Rank 0 has data parallel group: [0, 1, 2, 3, 4, 5, 6, 7] 0: [NeMo I 2023-01-18 07:38:39 megatron_init:226] All data parallel group ranks: [[0, 1, 2, 3, 4, 5, 6, 7]] 0: [NeMo I 2023-01-18 07:38:39 megatron_init:227] Ranks 0 has data parallel rank: 0 0: [NeMo I 2023-01-18 07:38:39 megatron_init:235] Rank 0 has model parallel group: [0] 0: [NeMo I 2023-01-18 07:38:39 megatron_init:236] All model parallel group ranks: [[0], [1], [2], [3], [4], [5], [6], [7]] 0: [NeMo I 2023-01-18 07:38:39 megatron_init:246] Rank 0 has tensor model parallel group: [0] 0: [NeMo I 2023-01-18 07:38:39 megatron_init:250] All tensor model parallel group ranks: [[0], [1], [2], [3], [4], [5], [6], [7]] 0: [NeMo I 2023-01-18 07:38:39 megatron_init:251] Rank 0 has tensor model parallel rank: 0 0: [NeMo I 2023-01-18 07:38:39 megatron_init:265] Rank 0 has pipeline model parallel group: [0] 0: [NeMo I 2023-01-18 07:38:39 megatron_init:277] Rank 0 has embedding group: [0] 0: [NeMo I 2023-01-18 07:38:39 megatron_init:283] All pipeline model parallel group ranks: [[0], [1], [2], [3], [4], [5], [6], [7]] 0: [NeMo I 2023-01-18 07:38:39 megatron_init:284] Rank 0 has pipeline model parallel rank 0 0: [NeMo I 2023-01-18 07:38:39 megatron_init:285] All embedding group ranks: [[0], [1], [2], [3], [4], [5], [6], [7]] 0: [NeMo I 2023-01-18 07:38:39 megatron_init:286] Rank 0 has embedding rank: 0 0: 23-01-18 07:38:39 - PID:23743 - rank:(0, 0, 0, 0) - microbatches.py:39 - INFO - setting number of micro-batches to constant 4 0: [NeMo W 2023-01-18 07:38:39 modelPT:222] You tried to register an artifact under config key=tokenizer.vocab_file but an artifact for it has already been registered. 0: [NeMo I 2023-01-18 07:38:39 tokenizer_utils:204] Getting Megatron tokenizer for pretrained model name: megatron-gpt-345m, custom vocab file: /project/home/p200097/faton/nemo_test/gpt2-vocab.json, and merges file: /project/home/p200097/faton/nemo_test/gpt2-merges.txt 0: [NeMo I 2023-01-18 07:38:39 tokenizer_utils:130] Getting HuggingFace AutoTokenizer with pretrained_model_name: gpt2, vocab_file: /project/home/p200097/faton/nemo_test/gpt2-vocab.json, merges_files: /project/home/p200097/faton/nemo_test/gpt2-merges.txt, special_tokens_dict: {}, and use_fast: False 0: Using sep_token, but it is not set yet. 0: Using cls_token, but it is not set yet. 1: Using sep_token, but it is not set yet. 1: Using cls_token, but it is not set yet. 0: Using pad_token, but it is not set yet. 0: Using mask_token, but it is not set yet. 1: Using pad_token, but it is not set yet. 1: Using mask_token, but it is not set yet. 0: [NeMo I 2023-01-18 07:38:42 megatron_base_model:204] Padded vocab_size: 50304, original vocab_size: 50257, dummy tokens: 47. 1: Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/8 0: Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/8 0: [NeMo W 2023-01-18 07:39:29 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. 0: [NeMo W 2023-01-18 07:39:29 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. 0: [NeMo W 2023-01-18 07:39:29 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. 0: [NeMo W 2023-01-18 07:39:40 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. 0: [NeMo W 2023-01-18 07:39:40 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. 0: [NeMo W 2023-01-18 07:39:40 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. 0: [NeMo I 2023-01-18 07:39:41 megatron_gpt_pretraining:36] 0: 0: ************** Experiment configuration *********** 0: [NeMo I 2023-01-18 07:39:41 megatron_gpt_pretraining:36] 0: 0: ************** Experiment configuration *********** 0: [NeMo I 2023-01-18 07:39:41 megatron_gpt_pretraining:37] 0: name: megatron_gpt 0: restore_from_path: null 0: trainer: 0: devices: 4 0: num_nodes: 2 0: accelerator: gpu 0: precision: 16 0: logger: false 0: enable_checkpointing: false 0: replace_sampler_ddp: false 0: max_epochs: null 0: max_steps: 300000 0: log_every_n_steps: 50 0: val_check_interval: 300 0: limit_val_batches: 50 0: limit_test_batches: 50 0: accumulate_grad_batches: 1 0: gradient_clip_val: 1.0 0: benchmark: false 0: enable_model_summary: false 0: exp_manager: 0: explicit_log_dir: null 0: exp_dir: null 0: name: megatron_gpt 0: create_wandb_logger: false 0: wandb_logger_kwargs: 0: project: null 0: name: null 0: resume_if_exists: true 0: resume_ignore_no_checkpoint: true 0: create_checkpoint_callback: true 0: checkpoint_callback_params: 0: monitor: val_loss 0: save_top_k: 3 0: mode: min 0: always_save_nemo: false 0: save_nemo_on_train_end: false 0: filename: megatron_gpt--{val_loss:.2f}-{step}-{consumed_samples} 0: model_parallel_size: ${multiply:${model.tensor_model_parallel_size}, ${model.pipeline_model_parallel_size}} 0: model: 0: micro_batch_size: 6 0: global_batch_size: 192 0: tensor_model_parallel_size: 1 0: pipeline_model_parallel_size: 1 0: virtual_pipeline_model_parallel_size: null 0: encoder_seq_length: 1024 0: max_position_embeddings: 1024 0: num_layers: 12 0: hidden_size: 768 0: ffn_hidden_size: 3072 0: num_attention_heads: 12 0: init_method_std: 0.021 0: use_scaled_init_method: true 0: hidden_dropout: 0.1 0: kv_channels: null 0: apply_query_key_layer_scaling: true 0: normalization: layernorm 0: layernorm_epsilon: 1.0e-05 0: do_layer_norm_weight_decay: false 0: make_vocab_size_divisible_by: 128 0: pre_process: true 0: post_process: true 0: persist_layer_norm: true 0: tokenizer: 0: library: megatron 0: type: GPT2BPETokenizer 0: model: null 0: vocab_file: gpt2-vocab.json 0: merge_file: gpt2-merges.txt 0: delimiter: null 0: sentencepiece_legacy: false 0: native_amp_init_scale: 4294967296 0: native_amp_growth_interval: 1000 0: hysteresis: 2 0: fp32_residual_connection: false 0: fp16_lm_cross_entropy: false 0: megatron_amp_O2: false 0: grad_allreduce_chunk_size_mb: 125 0: grad_div_ar_fusion: true 0: gradient_accumulation_fusion: false 0: bias_activation_fusion: true 0: bias_dropout_add_fusion: true 0: masked_softmax_fusion: true 0: seed: 1234 0: resume_from_checkpoint: null 0: use_cpu_initialization: false 0: onnx_safe: false 0: apex_transformer_log_level: 30 0: gradient_as_bucket_view: true 0: sync_batch_comm: false 0: activations_checkpoint_granularity: null 0: activations_checkpoint_method: null 0: activations_checkpoint_num_layers: null 0: num_micro_batches_with_partial_activation_checkpoints: null 0: activations_checkpoint_layers_per_pipeline: null 0: sequence_parallel: false 0: transformer_engine: false 0: fp8: false 0: fp8_e4m3: false 0: fp8_hybrid: false 0: fp8_margin: 0 0: fp8_interval: 1 0: fp8_amax_history_len: 1 0: fp8_amax_compute_algo: most_recent 0: use_emha: false 0: data: 0: data_prefix: 0: - 1.0 0: - hfbpe_gpt_training_data_text_document 0: index_mapping_dir: null 0: data_impl: mmap 0: splits_string: 980,10,10 0: seq_length: 1024 0: skip_warmup: true 0: num_workers: 2 0: dataloader_type: single 0: reset_position_ids: false 0: reset_attention_mask: false 0: eod_mask_loss: false 0: validation_drop_last: true 0: nsys_profile: 0: enabled: false 0: start_step: 10 0: end_step: 10 0: ranks: 0: - 0 0: gen_shape: false 0: optim: 0: name: fused_adam 0: lr: 0.0006 0: weight_decay: 0.1 0: betas: 0: - 0.9 0: - 0.95 0: sched: 0: name: CosineAnnealing 0: warmup_steps: 750 0: constant_steps: 80000 0: min_lr: 6.0e-05 0: 0: [NeMo I 2023-01-18 07:39:41 megatron_gpt_pretraining:37] 0: name: megatron_gpt 0: restore_from_path: null 0: trainer: 0: devices: 4 0: num_nodes: 2 0: accelerator: gpu 0: precision: 16 0: logger: false 0: enable_checkpointing: false 0: replace_sampler_ddp: false 0: max_epochs: null 0: max_steps: 300000 0: log_every_n_steps: 50 0: val_check_interval: 300 0: limit_val_batches: 50 0: limit_test_batches: 50 0: accumulate_grad_batches: 1 0: gradient_clip_val: 1.0 0: benchmark: false 0: enable_model_summary: false 0: exp_manager: 0: explicit_log_dir: null 0: exp_dir: null 0: name: megatron_gpt 0: create_wandb_logger: false 0: wandb_logger_kwargs: 0: project: null 0: name: null 0: resume_if_exists: true 0: resume_ignore_no_checkpoint: true 0: create_checkpoint_callback: true 0: checkpoint_callback_params: 0: monitor: val_loss 0: save_top_k: 3 0: mode: min 0: always_save_nemo: false 0: save_nemo_on_train_end: false 0: filename: megatron_gpt--{val_loss:.2f}-{step}-{consumed_samples} 0: model_parallel_size: ${multiply:${model.tensor_model_parallel_size}, ${model.pipeline_model_parallel_size}} 0: model: 0: micro_batch_size: 6 0: global_batch_size: 192 0: tensor_model_parallel_size: 1 0: pipeline_model_parallel_size: 1 0: virtual_pipeline_model_parallel_size: null 0: encoder_seq_length: 1024 0: max_position_embeddings: 1024 0: num_layers: 12 0: hidden_size: 768 0: ffn_hidden_size: 3072 0: num_attention_heads: 12 0: init_method_std: 0.021 0: use_scaled_init_method: true 0: hidden_dropout: 0.1 0: kv_channels: null 0: apply_query_key_layer_scaling: true 0: normalization: layernorm 0: layernorm_epsilon: 1.0e-05 0: do_layer_norm_weight_decay: false 0: make_vocab_size_divisible_by: 128 0: pre_process: true 0: post_process: true 0: persist_layer_norm: true 0: tokenizer: 0: library: megatron 0: type: GPT2BPETokenizer 0: model: null 0: vocab_file: gpt2-vocab.json 0: merge_file: gpt2-merges.txt 0: delimiter: null 0: sentencepiece_legacy: false 0: native_amp_init_scale: 4294967296 0: native_amp_growth_interval: 1000 0: hysteresis: 2 0: fp32_residual_connection: false 0: fp16_lm_cross_entropy: false 0: megatron_amp_O2: false 0: grad_allreduce_chunk_size_mb: 125 0: grad_div_ar_fusion: true 0: gradient_accumulation_fusion: false 0: bias_activation_fusion: true 0: bias_dropout_add_fusion: true 0: masked_softmax_fusion: true 0: seed: 1234 0: resume_from_checkpoint: null 0: use_cpu_initialization: false 0: onnx_safe: false 0: apex_transformer_log_level: 30 0: gradient_as_bucket_view: true 0: sync_batch_comm: false 0: activations_checkpoint_granularity: null 0: activations_checkpoint_method: null 0: activations_checkpoint_num_layers: null 0: num_micro_batches_with_partial_activation_checkpoints: null 0: activations_checkpoint_layers_per_pipeline: null 0: sequence_parallel: false 0: transformer_engine: false 0: fp8: false 0: fp8_e4m3: false 0: fp8_hybrid: false 0: fp8_margin: 0 0: fp8_interval: 1 0: fp8_amax_history_len: 1 0: fp8_amax_compute_algo: most_recent 0: use_emha: false 0: data: 0: data_prefix: 0: - 1.0 0: - hfbpe_gpt_training_data_text_document 0: index_mapping_dir: null 0: data_impl: mmap 0: splits_string: 980,10,10 0: seq_length: 1024 0: skip_warmup: true 0: num_workers: 2 0: dataloader_type: single 0: reset_position_ids: false 0: reset_attention_mask: false 0: eod_mask_loss: false 0: validation_drop_last: true 0: nsys_profile: 0: enabled: false 0: start_step: 10 0: end_step: 10 0: ranks: 0: - 0 0: gen_shape: false 0: optim: 0: name: fused_adam 0: lr: 0.0006 0: weight_decay: 0.1 0: betas: 0: - 0.9 0: - 0.95 0: sched: 0: name: CosineAnnealing 0: warmup_steps: 750 0: constant_steps: 80000 0: min_lr: 6.0e-05 0: 0: [NeMo I 2023-01-18 07:39:41 megatron_gpt_pretraining:36] 0: 0: ************** Experiment configuration *********** 0: [NeMo I 2023-01-18 07:39:41 megatron_gpt_pretraining:37] 0: name: megatron_gpt 0: restore_from_path: null 0: trainer: 0: devices: 4 0: num_nodes: 2 0: accelerator: gpu 0: precision: 16 0: logger: false 0: enable_checkpointing: false 0: replace_sampler_ddp: false 0: max_epochs: null 0: max_steps: 300000 0: log_every_n_steps: 50 0: val_check_interval: 300 0: limit_val_batches: 50 0: limit_test_batches: 50 0: accumulate_grad_batches: 1 0: gradient_clip_val: 1.0 0: benchmark: false 0: enable_model_summary: false 0: exp_manager: 0: explicit_log_dir: null 0: exp_dir: null 0: name: megatron_gpt 0: create_wandb_logger: false 0: wandb_logger_kwargs: 0: project: null 0: name: null 0: resume_if_exists: true 0: resume_ignore_no_checkpoint: true 0: create_checkpoint_callback: true 0: checkpoint_callback_params: 0: monitor: val_loss 0: save_top_k: 3 0: mode: min 0: always_save_nemo: false 0: save_nemo_on_train_end: false 0: filename: megatron_gpt--{val_loss:.2f}-{step}-{consumed_samples} 0: model_parallel_size: ${multiply:${model.tensor_model_parallel_size}, ${model.pipeline_model_parallel_size}} 0: model: 0: micro_batch_size: 6 0: global_batch_size: 192 0: tensor_model_parallel_size: 1 0: pipeline_model_parallel_size: 1 0: virtual_pipeline_model_parallel_size: null 0: encoder_seq_length: 1024 0: max_position_embeddings: 1024 0: num_layers: 12 0: hidden_size: 768 0: ffn_hidden_size: 3072 0: num_attention_heads: 12 0: init_method_std: 0.021 0: use_scaled_init_method: true 0: hidden_dropout: 0.1 0: kv_channels: null 0: apply_query_key_layer_scaling: true 0: normalization: layernorm 0: layernorm_epsilon: 1.0e-05 0: do_layer_norm_weight_decay: false 0: make_vocab_size_divisible_by: 128 0: pre_process: true 0: post_process: true 0: persist_layer_norm: true 0: tokenizer: 0: library: megatron 0: type: GPT2BPETokenizer 0: model: null 0: vocab_file: gpt2-vocab.json 0: merge_file: gpt2-merges.txt 0: delimiter: null 0: sentencepiece_legacy: false 0: native_amp_init_scale: 4294967296 0: native_amp_growth_interval: 1000 0: hysteresis: 2 0: fp32_residual_connection: false 0: fp16_lm_cross_entropy: false 0: megatron_amp_O2: false 0: grad_allreduce_chunk_size_mb: 125 0: grad_div_ar_fusion: true 0: gradient_accumulation_fusion: false 0: bias_activation_fusion: true 0: bias_dropout_add_fusion: true 0: masked_softmax_fusion: true 0: seed: 1234 0: resume_from_checkpoint: null 0: use_cpu_initialization: false 0: onnx_safe: false 0: apex_transformer_log_level: 30 0: gradient_as_bucket_view: true 0: sync_batch_comm: false 0: activations_checkpoint_granularity: null 0: activations_checkpoint_method: null 0: activations_checkpoint_num_layers: null 0: num_micro_batches_with_partial_activation_checkpoints: null 0: activations_checkpoint_layers_per_pipeline: null 0: sequence_parallel: false 0: transformer_engine: false 0: fp8: false 0: fp8_e4m3: false 0: fp8_hybrid: false 0: fp8_margin: 0 0: fp8_interval: 1 0: fp8_amax_history_len: 1 0: fp8_amax_compute_algo: most_recent 0: use_emha: false 0: data: 0: data_prefix: 0: - 1.0 0: - hfbpe_gpt_training_data_text_document 0: index_mapping_dir: null 0: data_impl: mmap 0: splits_string: 980,10,10 0: seq_length: 1024 0: skip_warmup: true 0: num_workers: 2 0: dataloader_type: single 0: reset_position_ids: false 0: reset_attention_mask: false 0: eod_mask_loss: false 0: validation_drop_last: true 0: nsys_profile: 0: enabled: false 0: start_step: 10 0: end_step: 10 0: ranks: 0: - 0 0: gen_shape: false 0: optim: 0: name: fused_adam 0: lr: 0.0006 0: weight_decay: 0.1 0: betas: 0: - 0.9 0: - 0.95 0: sched: 0: name: CosineAnnealing 0: warmup_steps: 750 0: constant_steps: 80000 0: min_lr: 6.0e-05 0: 0: [NeMo E 2023-01-18 07:39:42 exp_manager:423] You are running multi-node training without SLURM handling the processes. Please note that this is not tested in NeMo and could result in errors. 0: [NeMo W 2023-01-18 07:39:42 exp_manager:614] No version folders would be created under the log folder as 'resume_if_exists' is enabled. 0: [NeMo E 2023-01-18 07:39:42 exp_manager:423] You are running multi-node training without SLURM handling the processes. Please note that this is not tested in NeMo and could result in errors. 0: [NeMo W 2023-01-18 07:39:42 exp_manager:614] No version folders would be created under the log folder as 'resume_if_exists' is enabled. 0: [NeMo W 2023-01-18 07:39:42 exp_manager:466] There was no checkpoint folder at checkpoint_dir :/project/home/p200097/faton/nemo_test/nemo_experiments/megatron_gpt/checkpoints. Training from scratch. 0: [NeMo I 2023-01-18 07:39:42 exp_manager:315] Experiments will be logged at /project/home/p200097/faton/nemo_test/nemo_experiments/megatron_gpt 0: [NeMo W 2023-01-18 07:39:42 exp_manager:466] There was no checkpoint folder at checkpoint_dir :/project/home/p200097/faton/nemo_test/nemo_experiments/megatron_gpt/checkpoints. Training from scratch. 0: [NeMo I 2023-01-18 07:39:42 exp_manager:315] Experiments will be logged at /project/home/p200097/faton/nemo_test/nemo_experiments/megatron_gpt 0: [NeMo E 2023-01-18 07:39:42 exp_manager:423] You are running multi-node training without SLURM handling the processes. Please note that this is not tested in NeMo and could result in errors. 0: [NeMo W 2023-01-18 07:39:42 exp_manager:614] No version folders would be created under the log folder as 'resume_if_exists' is enabled. 0: [NeMo W 2023-01-18 07:39:42 exp_manager:466] There was no checkpoint folder at checkpoint_dir :/project/home/p200097/faton/nemo_test/nemo_experiments/megatron_gpt/checkpoints. Training from scratch. 0: [NeMo I 2023-01-18 07:39:42 exp_manager:315] Experiments will be logged at /project/home/p200097/faton/nemo_test/nemo_experiments/megatron_gpt 0: [NeMo I 2023-01-18 07:39:42 exp_manager:704] TensorboardLogger has been set up 0: [NeMo W 2023-01-18 07:39:42 exp_manager:971] The checkpoint callback was told to monitor a validation value and trainer's max_steps was set to 300000. Please ensure that max_steps will run for at least 1 epochs to ensure that checkpointing will not error out. 0: [NeMo I 2023-01-18 07:39:42 exp_manager:704] TensorboardLogger has been set up 0: [NeMo I 2023-01-18 07:39:42 exp_manager:704] TensorboardLogger has been set up 0: [NeMo W 2023-01-18 07:39:42 exp_manager:971] The checkpoint callback was told to monitor a validation value and trainer's max_steps was set to 300000. Please ensure that max_steps will run for at least 1 epochs to ensure that checkpointing will not error out. 0: [NeMo W 2023-01-18 07:39:42 exp_manager:971] The checkpoint callback was told to monitor a validation value and trainer's max_steps was set to 300000. Please ensure that max_steps will run for at least 1 epochs to ensure that checkpointing will not error out. 0: [NeMo I 2023-01-18 07:39:42 megatron_gpt_pretraining:74] Resuming training from checkpoint: None 0: [NeMo I 2023-01-18 07:39:42 megatron_gpt_pretraining:74] Resuming training from checkpoint: None 0: [NeMo I 2023-01-18 07:39:42 megatron_gpt_pretraining:74] Resuming training from checkpoint: None 0: [NeMo I 2023-01-18 07:39:42 megatron_init:223] Rank 3 has data parallel group: [0, 1, 2, 3, 4, 5, 6, 7] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:223] Rank 1 has data parallel group: [0, 1, 2, 3, 4, 5, 6, 7] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:223] Rank 2 has data parallel group: [0, 1, 2, 3, 4, 5, 6, 7] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:226] All data parallel group ranks: [[0, 1, 2, 3, 4, 5, 6, 7]] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:227] Ranks 3 has data parallel rank: 3 0: [NeMo I 2023-01-18 07:39:42 megatron_init:235] Rank 3 has model parallel group: [3] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:236] All model parallel group ranks: [[0], [1], [2], [3], [4], [5], [6], [7]] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:246] Rank 3 has tensor model parallel group: [3] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:250] All tensor model parallel group ranks: [[0], [1], [2], [3], [4], [5], [6], [7]] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:251] Rank 3 has tensor model parallel rank: 0 0: [NeMo I 2023-01-18 07:39:42 megatron_init:265] Rank 3 has pipeline model parallel group: [3] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:277] Rank 3 has embedding group: [3] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:283] All pipeline model parallel group ranks: [[0], [1], [2], [3], [4], [5], [6], [7]] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:284] Rank 3 has pipeline model parallel rank 0 0: [NeMo I 2023-01-18 07:39:42 megatron_init:285] All embedding group ranks: [[0], [1], [2], [3], [4], [5], [6], [7]] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:286] Rank 3 has embedding rank: 0 0: [NeMo I 2023-01-18 07:39:42 megatron_init:226] All data parallel group ranks: [[0, 1, 2, 3, 4, 5, 6, 7]] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:227] Ranks 1 has data parallel rank: 1 0: [NeMo I 2023-01-18 07:39:42 megatron_init:235] Rank 1 has model parallel group: [1] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:236] All model parallel group ranks: [[0], [1], [2], [3], [4], [5], [6], [7]] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:246] Rank 1 has tensor model parallel group: [1] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:250] All tensor model parallel group ranks: [[0], [1], [2], [3], [4], [5], [6], [7]] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:251] Rank 1 has tensor model parallel rank: 0 0: [NeMo I 2023-01-18 07:39:42 megatron_init:265] Rank 1 has pipeline model parallel group: [1] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:277] Rank 1 has embedding group: [1] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:283] All pipeline model parallel group ranks: [[0], [1], [2], [3], [4], [5], [6], [7]] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:284] Rank 1 has pipeline model parallel rank 0 0: [NeMo I 2023-01-18 07:39:42 megatron_init:285] All embedding group ranks: [[0], [1], [2], [3], [4], [5], [6], [7]] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:286] Rank 1 has embedding rank: 0 0: [NeMo I 2023-01-18 07:39:42 megatron_init:226] All data parallel group ranks: [[0, 1, 2, 3, 4, 5, 6, 7]] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:227] Ranks 2 has data parallel rank: 2 0: [NeMo I 2023-01-18 07:39:42 megatron_init:235] Rank 2 has model parallel group: [2] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:236] All model parallel group ranks: [[0], [1], [2], [3], [4], [5], [6], [7]] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:246] Rank 2 has tensor model parallel group: [2] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:250] All tensor model parallel group ranks: [[0], [1], [2], [3], [4], [5], [6], [7]] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:251] Rank 2 has tensor model parallel rank: 0 0: [NeMo I 2023-01-18 07:39:42 megatron_init:265] Rank 2 has pipeline model parallel group: [2] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:277] Rank 2 has embedding group: [2] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:283] All pipeline model parallel group ranks: [[0], [1], [2], [3], [4], [5], [6], [7]] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:284] Rank 2 has pipeline model parallel rank 0 0: [NeMo I 2023-01-18 07:39:42 megatron_init:285] All embedding group ranks: [[0], [1], [2], [3], [4], [5], [6], [7]] 0: [NeMo I 2023-01-18 07:39:42 megatron_init:286] Rank 2 has embedding rank: 0 0: [NeMo W 2023-01-18 07:39:42 modelPT:222] You tried to register an artifact under config key=tokenizer.vocab_file but an artifact for it has already been registered. 0: [NeMo W 2023-01-18 07:39:42 modelPT:222] You tried to register an artifact under config key=tokenizer.vocab_file but an artifact for it has already been registered. 0: [NeMo W 2023-01-18 07:39:42 modelPT:222] You tried to register an artifact under config key=tokenizer.vocab_file but an artifact for it has already been registered. 0: [NeMo I 2023-01-18 07:39:42 tokenizer_utils:204] Getting Megatron tokenizer for pretrained model name: megatron-gpt-345m, custom vocab file: /project/home/p200097/faton/nemo_test/gpt2-vocab.json, and merges file: /project/home/p200097/faton/nemo_test/gpt2-merges.txt 0: [NeMo I 2023-01-18 07:39:42 tokenizer_utils:130] Getting HuggingFace AutoTokenizer with pretrained_model_name: gpt2, vocab_file: /project/home/p200097/faton/nemo_test/gpt2-vocab.json, merges_files: /project/home/p200097/faton/nemo_test/gpt2-merges.txt, special_tokens_dict: {}, and use_fast: False 0: [NeMo I 2023-01-18 07:39:42 tokenizer_utils:204] Getting Megatron tokenizer for pretrained model name: megatron-gpt-345m, custom vocab file: /project/home/p200097/faton/nemo_test/gpt2-vocab.json, and merges file: /project/home/p200097/faton/nemo_test/gpt2-merges.txt 0: [NeMo I 2023-01-18 07:39:42 tokenizer_utils:130] Getting HuggingFace AutoTokenizer with pretrained_model_name: gpt2, vocab_file: /project/home/p200097/faton/nemo_test/gpt2-vocab.json, merges_files: /project/home/p200097/faton/nemo_test/gpt2-merges.txt, special_tokens_dict: {}, and use_fast: False 0: [NeMo I 2023-01-18 07:39:42 tokenizer_utils:204] Getting Megatron tokenizer for pretrained model name: megatron-gpt-345m, custom vocab file: /project/home/p200097/faton/nemo_test/gpt2-vocab.json, and merges file: /project/home/p200097/faton/nemo_test/gpt2-merges.txt 0: [NeMo I 2023-01-18 07:39:42 tokenizer_utils:130] Getting HuggingFace AutoTokenizer with pretrained_model_name: gpt2, vocab_file: /project/home/p200097/faton/nemo_test/gpt2-vocab.json, merges_files: /project/home/p200097/faton/nemo_test/gpt2-merges.txt, special_tokens_dict: {}, and use_fast: False 1: Using sep_token, but it is not set yet. 1: Using cls_token, but it is not set yet. 1: Using pad_token, but it is not set yet. 1: Using mask_token, but it is not set yet. 1: Using sep_token, but it is not set yet. 1: Using cls_token, but it is not set yet. 1: Using pad_token, but it is not set yet. 1: Using mask_token, but it is not set yet. 1: Using sep_token, but it is not set yet. 1: Using cls_token, but it is not set yet. 1: Using pad_token, but it is not set yet. 1: Using mask_token, but it is not set yet. 0: Using sep_token, but it is not set yet. 0: Using cls_token, but it is not set yet. 0: Using pad_token, but it is not set yet. 0: Using sep_token, but it is not set yet. 0: Using cls_token, but it is not set yet. 0: Using pad_token, but it is not set yet. 0: Using mask_token, but it is not set yet. 0: [NeMo I 2023-01-18 07:39:45 megatron_base_model:204] Padded vocab_size: 50304, original vocab_size: 50257, dummy tokens: 47. 0: Using mask_token, but it is not set yet. 0: [NeMo I 2023-01-18 07:39:45 megatron_base_model:204] Padded vocab_size: 50304, original vocab_size: 50257, dummy tokens: 47. 0: Using sep_token, but it is not set yet. 0: Using cls_token, but it is not set yet. 0: Using pad_token, but it is not set yet. 0: Using mask_token, but it is not set yet. 0: [NeMo I 2023-01-18 07:39:45 megatron_base_model:204] Padded vocab_size: 50304, original vocab_size: 50257, dummy tokens: 47. 0: Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/8 0: Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/8 0: Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/8 1: Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/8 1: Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/8 1: Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/8 1: Added key: store_based_barrier_key:1 to store for rank: 1 1: Added key: store_based_barrier_key:1 to store for rank: 3 1: Added key: store_based_barrier_key:1 to store for rank: 2 0: Added key: store_based_barrier_key:1 to store for rank: 1 0: Added key: store_based_barrier_key:1 to store for rank: 2 0: Added key: store_based_barrier_key:1 to store for rank: 3 1: Waiting in store based barrier to initialize process group for rank: 2, key: store_based_barrier_key:1 (world_size=8, worker_count=3, timeout=0:30:00) 1: Waiting in store based barrier to initialize process group for rank: 1, key: store_based_barrier_key:1 (world_size=8, worker_count=3, timeout=0:30:00) 1: Waiting in store based barrier to initialize process group for rank: 3, key: store_based_barrier_key:1 (world_size=8, worker_count=3, timeout=0:30:00) 0: Waiting in store based barrier to initialize process group for rank: 1, key: store_based_barrier_key:1 (world_size=8, worker_count=3, timeout=0:30:00) 0: Waiting in store based barrier to initialize process group for rank: 2, key: store_based_barrier_key:1 (world_size=8, worker_count=3, timeout=0:30:00) 0: Waiting in store based barrier to initialize process group for rank: 3, key: store_based_barrier_key:1 (world_size=8, worker_count=3, timeout=0:30:00) 1: Waiting in store based barrier to initialize process group for rank: 2, key: store_based_barrier_key:1 (world_size=8, worker_count=3, timeout=0:30:00) 1: Waiting in store based barrier to initialize process group for rank: 3, key: store_based_barrier_key:1 (world_size=8, worker_count=3, timeout=0:30:00) 1: Waiting in store based barrier to initialize process group for rank: 1, key: store_based_barrier_key:1 (world_size=8, worker_count=3, timeout=0:30:00) 0: Waiting in store based barrier to initialize process group for rank: 1, key: store_based_barrier_key:1 (world_size=8, worker_count=3, timeout=0:30:00) 0: Waiting in store based barrier to initialize process group for rank: 3, key: store_based_barrier_key:1 (world_size=8, worker_count=3, timeout=0:30:00) 0: Waiting in store based barrier to initialize process group for rank: 2, key: store_based_barrier_key:1 (world_size=8, worker_count=3, timeout=0:30:00) ```
{ "login": "Lauler", "id": 7157234, "node_id": "MDQ6VXNlcjcxNTcyMzQ=", "avatar_url": "https://avatars.githubusercontent.com/u/7157234?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Lauler", "html_url": "https://github.com/Lauler", "followers_url": "https://api.github.com/users/Lauler/followers", "following_url": "https://api.github.com/users/Lauler/following{/other_user}", "gists_url": "https://api.github.com/users/Lauler/gists{/gist_id}", "starred_url": "https://api.github.com/users/Lauler/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Lauler/subscriptions", "organizations_url": "https://api.github.com/users/Lauler/orgs", "repos_url": "https://api.github.com/users/Lauler/repos", "events_url": "https://api.github.com/users/Lauler/events{/privacy}", "received_events_url": "https://api.github.com/users/Lauler/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5819/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/5819/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5818
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5818/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5818/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5818/events
https://github.com/NVIDIA/NeMo/pull/5818
1,537,353,259
PR_kwDOC_bI7s5Hl50I
5,818
add apt-get upgrade -y in dockerfile
{ "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-01-18T03:35:29
2023-01-18T04:53:24
2023-01-18T04:53:21
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5818", "html_url": "https://github.com/NVIDIA/NeMo/pull/5818", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5818.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5818.patch", "merged_at": "2023-01-18T04:53:21" }
# What does this PR do ? add apt-get upgrade -y in dockerfile **Collection**: core # Changelog - add apt-get upgrade -y in dockerfile to upgrade packages for vulns patch # 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": "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/5818/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/5818/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5817
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5817/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5817/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5817/events
https://github.com/NVIDIA/NeMo/pull/5817
1,537,346,834
PR_kwDOC_bI7s5Hl4hw
5,817
add apt-get upgrade -y in dockerfile
{ "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 }
[ { "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-01-18T03:23:34
2023-01-18T03:34:55
2023-01-18T03:34:51
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5817", "html_url": "https://github.com/NVIDIA/NeMo/pull/5817", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5817.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5817.patch", "merged_at": "2023-01-18T03:34:51" }
# What does this PR do ? add apt-get upgrade -y in dockerfile **Collection**: core # Changelog - add apt-get upgrade -y in dockerfile to upgrade packages for vulns patch # 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": "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/5817/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/5817/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5816
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5816/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5816/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5816/events
https://github.com/NVIDIA/NeMo/pull/5816
1,537,310,403
PR_kwDOC_bI7s5HlxOG
5,816
Add container info to main page
{ "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 }
[]
closed
false
null
[]
null
null
2023-01-18T02:35:12
2023-01-18T03:34:58
2023-01-18T03:33:58
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5816", "html_url": "https://github.com/NVIDIA/NeMo/pull/5816", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5816.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5816.patch", "merged_at": "2023-01-18T03:33:58" }
# What does this PR do ? Add container in for to main page **Collection**: core # Changelog - Add built container info to main readme for better visibility. # 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**: - [ ] 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/5816/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/5816/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5815
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5815/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5815/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5815/events
https://github.com/NVIDIA/NeMo/pull/5815
1,537,208,876
PR_kwDOC_bI7s5HlcJ0
5,815
Update description for question answering tutorial
{ "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-01-18T00:18:35
2023-01-18T03:44:51
2023-01-18T03:44:47
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5815", "html_url": "https://github.com/NVIDIA/NeMo/pull/5815", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5815.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5815.patch", "merged_at": "2023-01-18T03:44:47" }
# What does this PR do ? Placed a note to remove support for multiple GPU in question answering tutorial, redirecting them to use examples scripts instead, if multiple GPU is needed **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**: - [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": "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/5815/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/5815/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5814
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5814/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5814/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5814/events
https://github.com/NVIDIA/NeMo/pull/5814
1,537,207,000
PR_kwDOC_bI7s5Hlbwu
5,814
Update description for question answering tutorial
{ "login": "Zhilin123", "id": 29811458, "node_id": "MDQ6VXNlcjI5ODExNDU4", "avatar_url": "https://avatars.githubusercontent.com/u/29811458?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Zhilin123", "html_url": "https://github.com/Zhilin123", "followers_url": "https://api.github.com/users/Zhilin123/followers", "following_url": "https://api.github.com/users/Zhilin123/following{/other_user}", "gists_url": "https://api.github.com/users/Zhilin123/gists{/gist_id}", "starred_url": "https://api.github.com/users/Zhilin123/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Zhilin123/subscriptions", "organizations_url": "https://api.github.com/users/Zhilin123/orgs", "repos_url": "https://api.github.com/users/Zhilin123/repos", "events_url": "https://api.github.com/users/Zhilin123/events{/privacy}", "received_events_url": "https://api.github.com/users/Zhilin123/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-01-18T00:15:48
2023-01-18T00:17:49
2023-01-18T00:17:46
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5814", "html_url": "https://github.com/NVIDIA/NeMo/pull/5814", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5814.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5814.patch", "merged_at": "2023-01-18T00:17:45" }
# What does this PR do ? Placed a note to remove support for multiple GPU in question answering tutorial, redirecting them to use examples scripts instead, if multiple GPU is needed **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**: - [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": "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/5814/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/5814/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5813
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5813/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5813/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5813/events
https://github.com/NVIDIA/NeMo/pull/5813
1,536,702,934
PR_kwDOC_bI7s5Hjw5t
5,813
Fix data simulator
{ "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-01-17T16:44:00
2023-03-27T17:16:30
2023-01-20T02:41:28
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5813", "html_url": "https://github.com/NVIDIA/NeMo/pull/5813", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5813.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5813.patch", "merged_at": "2023-01-20T02:41:28" }
# What does this PR do ? Fixed a few things in data simulator and related files, based on Taejin's script: https://github.com/tango4j/NeMo/blob/fix_mulspk_sim/scripts/speaker_tasks/create_alignment_manifest.py **Collection**: [ASR]
{ "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/5813/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/5813/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5812
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5812/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5812/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5812/events
https://github.com/NVIDIA/NeMo/pull/5812
1,536,677,423
PR_kwDOC_bI7s5HjrZr
5,812
add constraint info on batch size for tar dataset
{ "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 }
[ { "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-01-17T16:27:25
2023-01-17T18:38:46
2023-01-17T18:38:43
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5812", "html_url": "https://github.com/NVIDIA/NeMo/pull/5812", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5812.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5812.patch", "merged_at": "2023-01-17T18:38:43" }
Signed-off-by: Yang Zhang <[email protected]> # What does this PR do ? add documentation on tar dataset batch size for duplex normalization
{ "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/5812/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/5812/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5811
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5811/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5811/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5811/events
https://github.com/NVIDIA/NeMo/issues/5811
1,536,038,346
I_kwDOC_bI7s5bjhXK
5,811
Script to fine-tune a pretrained NMT model
{ "login": "joncamgui", "id": 77108301, "node_id": "MDQ6VXNlcjc3MTA4MzAx", "avatar_url": "https://avatars.githubusercontent.com/u/77108301?v=4", "gravatar_id": "", "url": "https://api.github.com/users/joncamgui", "html_url": "https://github.com/joncamgui", "followers_url": "https://api.github.com/users/joncamgui/followers", "following_url": "https://api.github.com/users/joncamgui/following{/other_user}", "gists_url": "https://api.github.com/users/joncamgui/gists{/gist_id}", "starred_url": "https://api.github.com/users/joncamgui/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/joncamgui/subscriptions", "organizations_url": "https://api.github.com/users/joncamgui/orgs", "repos_url": "https://api.github.com/users/joncamgui/repos", "events_url": "https://api.github.com/users/joncamgui/events{/privacy}", "received_events_url": "https://api.github.com/users/joncamgui/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-01-17T09:21:02
2023-01-18T04:51:27
2023-01-18T04:13:09
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
Documentation is very clear on how to train from scratch but I cannot find how to fine-tune one of the available models https://docs.nvidia.com/deeplearning/nemo/user-guide/docs/en/stable/nlp/machine_translation/machine_translation.html Could you provide some insights or an example doing that? Thanks,
{ "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 }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5811/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/5811/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5810
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5810/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5810/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5810/events
https://github.com/NVIDIA/NeMo/pull/5810
1,535,813,513
PR_kwDOC_bI7s5Hgy9W
5,810
Fix transducer and question answering tutorial bugs 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": "" }, { "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-01-17T05:50:07
2023-02-01T17:57:10
2023-02-01T17:57:03
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5810", "html_url": "https://github.com/NVIDIA/NeMo/pull/5810", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5810.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5810.patch", "merged_at": "2023-02-01T17:57:03" }
# What does this PR do ? Fix bugs in Intro to Transducer and Question Answering tutorials **Collection**: nlp, 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**: - [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": "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/5810/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/5810/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5809
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5809/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5809/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5809/events
https://github.com/NVIDIA/NeMo/pull/5809
1,535,731,772
PR_kwDOC_bI7s5Hgh0E
5,809
Fix transducer and question answering tutorial bugs bugs
{ "login": "Zhilin123", "id": 29811458, "node_id": "MDQ6VXNlcjI5ODExNDU4", "avatar_url": "https://avatars.githubusercontent.com/u/29811458?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Zhilin123", "html_url": "https://github.com/Zhilin123", "followers_url": "https://api.github.com/users/Zhilin123/followers", "following_url": "https://api.github.com/users/Zhilin123/following{/other_user}", "gists_url": "https://api.github.com/users/Zhilin123/gists{/gist_id}", "starred_url": "https://api.github.com/users/Zhilin123/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Zhilin123/subscriptions", "organizations_url": "https://api.github.com/users/Zhilin123/orgs", "repos_url": "https://api.github.com/users/Zhilin123/repos", "events_url": "https://api.github.com/users/Zhilin123/events{/privacy}", "received_events_url": "https://api.github.com/users/Zhilin123/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": 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-01-17T03:41:23
2023-01-17T17:16:16
2023-01-17T05:49:28
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5809", "html_url": "https://github.com/NVIDIA/NeMo/pull/5809", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5809.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5809.patch", "merged_at": "2023-01-17T05:49:27" }
# What does this PR do ? Fix bugs in Intro to Transducer and Question Answering tutorials **Collection**: nlp, 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**: - [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": "Zhilin123", "id": 29811458, "node_id": "MDQ6VXNlcjI5ODExNDU4", "avatar_url": "https://avatars.githubusercontent.com/u/29811458?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Zhilin123", "html_url": "https://github.com/Zhilin123", "followers_url": "https://api.github.com/users/Zhilin123/followers", "following_url": "https://api.github.com/users/Zhilin123/following{/other_user}", "gists_url": "https://api.github.com/users/Zhilin123/gists{/gist_id}", "starred_url": "https://api.github.com/users/Zhilin123/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Zhilin123/subscriptions", "organizations_url": "https://api.github.com/users/Zhilin123/orgs", "repos_url": "https://api.github.com/users/Zhilin123/repos", "events_url": "https://api.github.com/users/Zhilin123/events{/privacy}", "received_events_url": "https://api.github.com/users/Zhilin123/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5809/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/5809/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5808
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5808/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5808/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5808/events
https://github.com/NVIDIA/NeMo/pull/5808
1,535,619,757
PR_kwDOC_bI7s5HgKx_
5,808
Megatron positional encoding alibi fix
{ "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-01-17T00:13:10
2023-01-25T23:35:04
2023-01-25T23:34:55
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5808", "html_url": "https://github.com/NVIDIA/NeMo/pull/5808", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5808.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5808.patch", "merged_at": "2023-01-25T23:34:55" }
# What does this PR do ? This PR fixes a bug in ALiBi implementation. ALiBi paper: https://arxiv.org/abs/2108.12409 Results shows that ALiBi is comparable in performance to RPE, and is faster by 7% from RPE and 8% slower than learnable abs embeddings during training. See plots below. ALiBi (this PR) in green, ALiBi (before fix) in pink, learned absolute embeddings in red, and RPE in cyan. ![Screen Shot 2023-01-25 at 17 32 00](https://user-images.githubusercontent.com/7453913/214607208-fcc652b2-4ae0-42b5-864c-d01eb62e7996.png) ![Screen Shot 2023-01-25 at 17 32 50](https://user-images.githubusercontent.com/7453913/214607215-c41b7bc8-33e6-4378-8356-f811f22e3c02.png) ![Screen Shot 2023-01-25 at 17 33 01](https://user-images.githubusercontent.com/7453913/214607219-6bd338e0-e088-4891-ac4e-edd1fa314d16.png) ![Screen Shot 2023-01-25 at 17 33 27](https://user-images.githubusercontent.com/7453913/214607227-1480cd98-c17e-453d-bf56-5ae6f1e3d053.png) ![Screen Shot 2023-01-25 at 17 36 03](https://user-images.githubusercontent.com/7453913/214607229-f395a390-ffe8-4fd8-b55e-090623fd0b34.png) ![Screen Shot 2023-01-25 at 17 36 17](https://user-images.githubusercontent.com/7453913/214607232-6a87f3c8-aee7-4f2a-81bc-f38167932ff5.png) **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/5808/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/5808/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5807
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5807/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5807/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5807/events
https://github.com/NVIDIA/NeMo/pull/5807
1,534,861,575
PR_kwDOC_bI7s5Hdm_X
5,807
Add build action
{ "login": "SeanNaren", "id": 6707363, "node_id": "MDQ6VXNlcjY3MDczNjM=", "avatar_url": "https://avatars.githubusercontent.com/u/6707363?v=4", "gravatar_id": "", "url": "https://api.github.com/users/SeanNaren", "html_url": "https://github.com/SeanNaren", "followers_url": "https://api.github.com/users/SeanNaren/followers", "following_url": "https://api.github.com/users/SeanNaren/following{/other_user}", "gists_url": "https://api.github.com/users/SeanNaren/gists{/gist_id}", "starred_url": "https://api.github.com/users/SeanNaren/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SeanNaren/subscriptions", "organizations_url": "https://api.github.com/users/SeanNaren/orgs", "repos_url": "https://api.github.com/users/SeanNaren/repos", "events_url": "https://api.github.com/users/SeanNaren/events{/privacy}", "received_events_url": "https://api.github.com/users/SeanNaren/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-01-16T12:34:13
2023-01-16T13:47:45
2023-01-16T13:47:26
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
true
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5807", "html_url": "https://github.com/NVIDIA/NeMo/pull/5807", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5807.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5807.patch", "merged_at": null }
Signed-off-by: SeanNaren <[email protected]> # 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": "SeanNaren", "id": 6707363, "node_id": "MDQ6VXNlcjY3MDczNjM=", "avatar_url": "https://avatars.githubusercontent.com/u/6707363?v=4", "gravatar_id": "", "url": "https://api.github.com/users/SeanNaren", "html_url": "https://github.com/SeanNaren", "followers_url": "https://api.github.com/users/SeanNaren/followers", "following_url": "https://api.github.com/users/SeanNaren/following{/other_user}", "gists_url": "https://api.github.com/users/SeanNaren/gists{/gist_id}", "starred_url": "https://api.github.com/users/SeanNaren/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SeanNaren/subscriptions", "organizations_url": "https://api.github.com/users/SeanNaren/orgs", "repos_url": "https://api.github.com/users/SeanNaren/repos", "events_url": "https://api.github.com/users/SeanNaren/events{/privacy}", "received_events_url": "https://api.github.com/users/SeanNaren/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5807/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/5807/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5806
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5806/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5806/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5806/events
https://github.com/NVIDIA/NeMo/issues/5806
1,534,732,474
I_kwDOC_bI7s5beii6
5,806
How to choose number of epochs in Conformer-Transducer (RNNT) pretrained model finetuning
{ "login": "manjuke", "id": 6142443, "node_id": "MDQ6VXNlcjYxNDI0NDM=", "avatar_url": "https://avatars.githubusercontent.com/u/6142443?v=4", "gravatar_id": "", "url": "https://api.github.com/users/manjuke", "html_url": "https://github.com/manjuke", "followers_url": "https://api.github.com/users/manjuke/followers", "following_url": "https://api.github.com/users/manjuke/following{/other_user}", "gists_url": "https://api.github.com/users/manjuke/gists{/gist_id}", "starred_url": "https://api.github.com/users/manjuke/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/manjuke/subscriptions", "organizations_url": "https://api.github.com/users/manjuke/orgs", "repos_url": "https://api.github.com/users/manjuke/repos", "events_url": "https://api.github.com/users/manjuke/events{/privacy}", "received_events_url": "https://api.github.com/users/manjuke/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-01-16T11:04:01
2023-02-28T02:01:04
2023-02-28T02:01:04
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
Hi All, I have taken conformer-transducer (RNNT) & conformer CTC pretrained English medium models, and finetuned them for Tamil dataset. Finetuned CTC has decent WERs, whereas RNNT models have unacceptable WERs. Both were trained for 18 epochs. The CTC finetuning has consistently exponentially decreasing Validation loss. However, validation loss of RNNT consistently increased after 5th epoch. PFA RNNT val loss snapshot. ![image](https://user-images.githubusercontent.com/6142443/212663699-62081f70-cf12-418d-9e4d-52b1464aa57b.png) So, in this case, Question 1: Do you suggest me to train only for 5 epochs while using RNNT and use the saved model for decoding? Question 2: Is there any way like any parameter to be set either in exp_manager or trainer, so that it would automatically save the check point with best WER Question 3: Am I doing anything wrong here. Should I need to check/change anything to make RNNT validation error to decrease. Note: We have done several experiments with Conformer-CTC and they seem to work without any issues with same setup (like no. of epochs etc). However, we are exploring the RNNT for the first time. So, not sure if something is missing. Please suggest @titu1994 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/5806/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/5806/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5805
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5805/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5805/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5805/events
https://github.com/NVIDIA/NeMo/pull/5805
1,534,562,867
PR_kwDOC_bI7s5HcmSf
5,805
[TTS][DE] Augment tokenization/G2P to preserve capitalization of words and mix phonemes with word-level graphemes for an input text.
{ "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": 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": 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-01-16T09:13:30
2023-01-23T08:39:13
2023-01-23T08:39:08
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5805", "html_url": "https://github.com/NVIDIA/NeMo/pull/5805", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5805.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5805.patch", "merged_at": "2023-01-23T08:39:08" }
Signed-off-by: Xuesong Yang <[email protected]> # What does this PR do ? ``` 1. support grapheme case options with either "upper", "lower", or "mixed". 2. automatically prepend a symbol "#" or any customized one to each grapheme of a word if both phonemes and graphemes are mixed in order to distinguish graphemes from phoneme symbols if there are overlaps in between. 3. normalize texts with "NFC" form to represent the letter with diacritics as a single letter. Similar reason as https://github.com/NVIDIA/NeMo/blob/main/nemo_text_processing/g2p/data/data_utils.py#L140. 4. add de IPA dictionary and de heteronym set. 5. fix typos. ``` **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**: - [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": "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/5805/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/5805/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5803
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5803/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5803/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5803/events
https://github.com/NVIDIA/NeMo/issues/5803
1,533,249,191
I_kwDOC_bI7s5bY4an
5,803
Decoder model [Duplex Text Normalization] train failing, using TarredDataset
{ "login": "fr0zenshard", "id": 24573300, "node_id": "MDQ6VXNlcjI0NTczMzAw", "avatar_url": "https://avatars.githubusercontent.com/u/24573300?v=4", "gravatar_id": "", "url": "https://api.github.com/users/fr0zenshard", "html_url": "https://github.com/fr0zenshard", "followers_url": "https://api.github.com/users/fr0zenshard/followers", "following_url": "https://api.github.com/users/fr0zenshard/following{/other_user}", "gists_url": "https://api.github.com/users/fr0zenshard/gists{/gist_id}", "starred_url": "https://api.github.com/users/fr0zenshard/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/fr0zenshard/subscriptions", "organizations_url": "https://api.github.com/users/fr0zenshard/orgs", "repos_url": "https://api.github.com/users/fr0zenshard/repos", "events_url": "https://api.github.com/users/fr0zenshard/events{/privacy}", "received_events_url": "https://api.github.com/users/fr0zenshard/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-01-14T13:15:03
2023-03-11T01:55:08
2023-03-11T01:55:08
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Unable to start training Decoder** model **using tarred dataset** obtained from script [create_tarred_dataset.py](https://github.com/NVIDIA/NeMo/blob/main/examples/nlp/duplex_text_normalization/data/create_tarred_dataset.py). The error occurs on the line: https://github.com/NVIDIA/NeMo/blob/dd921e792427e3788ad9fe3a1e568afc85a8bc93/nemo/collections/nlp/data/text_normalization/decoder_dataset.py#L537 and looks like: `ValueError: didn't find ['pkl'] in ['__key__', 'tsv-batch-3649.pkl', 'tsv-batch-3650.pkl', 'tsv-batch-3651.pkl', 'tsv-batch-3652.pkl', ....]` (where by "...." I mean enumeration of other .pkl files). As I understand it, it would be more correct to do the following in [decoder_dataset.py](https://github.com/NVIDIA/NeMo/blob/main/nemo/collections/nlp/data/text_normalization/decoder_dataset.py#L537): 1. Obtain every filename with ".pkl" extension and create `pkls` (List). After, create a string like: ``` pkls = ';'.join(pkls) ``` 2. Rename as follows (using every key, separated by ";" - **supports by WebDataset**) ``` self._dataset = self._dataset.rename(pkl=pkls, key='__key__').to_tuple('pkl', 'key').map(f=self._build_sample) ``` However, this method also does not allow you to start training.
{ "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/5803/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/5803/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5802
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5802/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5802/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5802/events
https://github.com/NVIDIA/NeMo/pull/5802
1,533,085,103
PR_kwDOC_bI7s5HXyhz
5,802
update torchmetrics to latest version
{ "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": "" }, { "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-01-14T01:31:58
2023-01-14T03:34:14
2023-01-14T03:34:11
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5802", "html_url": "https://github.com/NVIDIA/NeMo/pull/5802", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5802.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5802.patch", "merged_at": "2023-01-14T03:34:11" }
Signed-off-by: nithinraok <[email protected]> # What does this PR do ? update torchmetrics to latest version **Collection**: ASR # Changelog - update to latest API of torch metrics - Timer issue with dataloader is because of wrong num of classes (when only 2 present). This behavior got updated with latest torchmetrics. # 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/5802/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/5802/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5801
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5801/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5801/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5801/events
https://github.com/NVIDIA/NeMo/pull/5801
1,533,001,481
PR_kwDOC_bI7s5HXgr4
5,801
update torchmetrics to latest version
{ "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 }
[ { "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": 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-01-13T22:42:36
2023-01-14T02:17:34
2023-01-14T01:31:20
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5801", "html_url": "https://github.com/NVIDIA/NeMo/pull/5801", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5801.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5801.patch", "merged_at": "2023-01-14T01:31:20" }
Signed-off-by: nithinraok <[email protected]> # What does this PR do ? update torchmetrics to latest version **Collection**: ASR # Changelog - update to latest API of torch metrics - Timer issue with dataloader is because of wrong num of classes (when only 2 present). This behavior got updated with latest torchmetrics. # 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": "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 }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5801/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/5801/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5800
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5800/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5800/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5800/events
https://github.com/NVIDIA/NeMo/pull/5800
1,532,931,428
PR_kwDOC_bI7s5HXRNp
5,800
RETRO model finetuning
{ "login": "yidong72", "id": 43824965, "node_id": "MDQ6VXNlcjQzODI0OTY1", "avatar_url": "https://avatars.githubusercontent.com/u/43824965?v=4", "gravatar_id": "", "url": "https://api.github.com/users/yidong72", "html_url": "https://github.com/yidong72", "followers_url": "https://api.github.com/users/yidong72/followers", "following_url": "https://api.github.com/users/yidong72/following{/other_user}", "gists_url": "https://api.github.com/users/yidong72/gists{/gist_id}", "starred_url": "https://api.github.com/users/yidong72/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yidong72/subscriptions", "organizations_url": "https://api.github.com/users/yidong72/orgs", "repos_url": "https://api.github.com/users/yidong72/repos", "events_url": "https://api.github.com/users/yidong72/events{/privacy}", "received_events_url": "https://api.github.com/users/yidong72/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
{ "login": "yidong72", "id": 43824965, "node_id": "MDQ6VXNlcjQzODI0OTY1", "avatar_url": "https://avatars.githubusercontent.com/u/43824965?v=4", "gravatar_id": "", "url": "https://api.github.com/users/yidong72", "html_url": "https://github.com/yidong72", "followers_url": "https://api.github.com/users/yidong72/followers", "following_url": "https://api.github.com/users/yidong72/following{/other_user}", "gists_url": "https://api.github.com/users/yidong72/gists{/gist_id}", "starred_url": "https://api.github.com/users/yidong72/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yidong72/subscriptions", "organizations_url": "https://api.github.com/users/yidong72/orgs", "repos_url": "https://api.github.com/users/yidong72/repos", "events_url": "https://api.github.com/users/yidong72/events{/privacy}", "received_events_url": "https://api.github.com/users/yidong72/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "login": "yidong72", "id": 43824965, "node_id": "MDQ6VXNlcjQzODI0OTY1", "avatar_url": "https://avatars.githubusercontent.com/u/43824965?v=4", "gravatar_id": "", "url": "https://api.github.com/users/yidong72", "html_url": "https://github.com/yidong72", "followers_url": "https://api.github.com/users/yidong72/followers", "following_url": "https://api.github.com/users/yidong72/following{/other_user}", "gists_url": "https://api.github.com/users/yidong72/gists{/gist_id}", "starred_url": "https://api.github.com/users/yidong72/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yidong72/subscriptions", "organizations_url": "https://api.github.com/users/yidong72/orgs", "repos_url": "https://api.github.com/users/yidong72/repos", "events_url": "https://api.github.com/users/yidong72/events{/privacy}", "received_events_url": "https://api.github.com/users/yidong72/received_events", "type": "User", "user_view_type": "public", "site_admin": false } ]
null
null
2023-01-13T21:24:47
2023-01-28T14:45:51
2023-01-28T14:45:45
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5800", "html_url": "https://github.com/NVIDIA/NeMo/pull/5800", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5800.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5800.patch", "merged_at": "2023-01-28T14:45:45" }
# What does this PR do ? 1. Add RETRO model NQA finetune scripts. 2. Make RETRO model compatible with MegatronLM RETRO model. - Can turn off the RoPe positional embedding. - Add version to RETRO model. 3. Add stride to the RETRO indexed memory map file. 4. during inference, host multiple BERT models for retrieval service to use.
{ "login": "yidong72", "id": 43824965, "node_id": "MDQ6VXNlcjQzODI0OTY1", "avatar_url": "https://avatars.githubusercontent.com/u/43824965?v=4", "gravatar_id": "", "url": "https://api.github.com/users/yidong72", "html_url": "https://github.com/yidong72", "followers_url": "https://api.github.com/users/yidong72/followers", "following_url": "https://api.github.com/users/yidong72/following{/other_user}", "gists_url": "https://api.github.com/users/yidong72/gists{/gist_id}", "starred_url": "https://api.github.com/users/yidong72/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yidong72/subscriptions", "organizations_url": "https://api.github.com/users/yidong72/orgs", "repos_url": "https://api.github.com/users/yidong72/repos", "events_url": "https://api.github.com/users/yidong72/events{/privacy}", "received_events_url": "https://api.github.com/users/yidong72/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5800/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/5800/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5799
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5799/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5799/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5799/events
https://github.com/NVIDIA/NeMo/pull/5799
1,532,928,487
PR_kwDOC_bI7s5HXQlL
5,799
Fix setuptools to usable version
{ "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-01-13T21:21:11
2023-01-13T21:23:35
2023-01-13T21:23:32
CONTRIBUTOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5799", "html_url": "https://github.com/NVIDIA/NeMo/pull/5799", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5799.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5799.patch", "merged_at": "2023-01-13T21:23:32" }
Signed-off-by: smajumdar <[email protected]> # What does this PR do ? Setuptools 65.x is causing issues with **Collection**: [Core] # 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": "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/5799/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/5799/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5798
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5798/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5798/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5798/events
https://github.com/NVIDIA/NeMo/pull/5798
1,532,927,416
PR_kwDOC_bI7s5HXQVv
5,798
Fix setuptools to usable version
{ "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 }
[]
closed
false
null
[]
null
null
2023-01-13T21:20:23
2023-01-13T21:20:42
2023-01-13T21:20:37
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5798", "html_url": "https://github.com/NVIDIA/NeMo/pull/5798", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5798.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5798.patch", "merged_at": "2023-01-13T21:20:37" }
Signed-off-by: smajumdar <[email protected]> # What does this PR do ? Setuptools 65.x is causing issues with **Collection**: [Core] # 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": "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/5798/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/5798/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5797
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5797/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5797/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5797/events
https://github.com/NVIDIA/NeMo/pull/5797
1,532,524,013
PR_kwDOC_bI7s5HV4aM
5,797
CommonVoice support for `convert_hf_dataset_to_nemo` script
{ "login": "SeanNaren", "id": 6707363, "node_id": "MDQ6VXNlcjY3MDczNjM=", "avatar_url": "https://avatars.githubusercontent.com/u/6707363?v=4", "gravatar_id": "", "url": "https://api.github.com/users/SeanNaren", "html_url": "https://github.com/SeanNaren", "followers_url": "https://api.github.com/users/SeanNaren/followers", "following_url": "https://api.github.com/users/SeanNaren/following{/other_user}", "gists_url": "https://api.github.com/users/SeanNaren/gists{/gist_id}", "starred_url": "https://api.github.com/users/SeanNaren/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SeanNaren/subscriptions", "organizations_url": "https://api.github.com/users/SeanNaren/orgs", "repos_url": "https://api.github.com/users/SeanNaren/repos", "events_url": "https://api.github.com/users/SeanNaren/events{/privacy}", "received_events_url": "https://api.github.com/users/SeanNaren/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[]
closed
false
{ "login": "SeanNaren", "id": 6707363, "node_id": "MDQ6VXNlcjY3MDczNjM=", "avatar_url": "https://avatars.githubusercontent.com/u/6707363?v=4", "gravatar_id": "", "url": "https://api.github.com/users/SeanNaren", "html_url": "https://github.com/SeanNaren", "followers_url": "https://api.github.com/users/SeanNaren/followers", "following_url": "https://api.github.com/users/SeanNaren/following{/other_user}", "gists_url": "https://api.github.com/users/SeanNaren/gists{/gist_id}", "starred_url": "https://api.github.com/users/SeanNaren/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SeanNaren/subscriptions", "organizations_url": "https://api.github.com/users/SeanNaren/orgs", "repos_url": "https://api.github.com/users/SeanNaren/repos", "events_url": "https://api.github.com/users/SeanNaren/events{/privacy}", "received_events_url": "https://api.github.com/users/SeanNaren/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "login": "SeanNaren", "id": 6707363, "node_id": "MDQ6VXNlcjY3MDczNjM=", "avatar_url": "https://avatars.githubusercontent.com/u/6707363?v=4", "gravatar_id": "", "url": "https://api.github.com/users/SeanNaren", "html_url": "https://github.com/SeanNaren", "followers_url": "https://api.github.com/users/SeanNaren/followers", "following_url": "https://api.github.com/users/SeanNaren/following{/other_user}", "gists_url": "https://api.github.com/users/SeanNaren/gists{/gist_id}", "starred_url": "https://api.github.com/users/SeanNaren/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SeanNaren/subscriptions", "organizations_url": "https://api.github.com/users/SeanNaren/orgs", "repos_url": "https://api.github.com/users/SeanNaren/repos", "events_url": "https://api.github.com/users/SeanNaren/events{/privacy}", "received_events_url": "https://api.github.com/users/SeanNaren/received_events", "type": "User", "user_view_type": "public", "site_admin": false } ]
null
null
2023-01-13T15:51:08
2023-01-20T01:12:13
2023-01-20T01:12:06
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5797", "html_url": "https://github.com/NVIDIA/NeMo/pull/5797", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5797.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5797.patch", "merged_at": "2023-01-20T01:12:06" }
# What does this PR do ? Related #5638 #5772 Renames `sentence` column to `text` before creating manifest. Exposes `ensure_ascii` for saving the transcripts + fix naming of config class. **Collection**: ASR # Changelog - CommonVoice support for `convert_hf_dataset_to_nemo` script. # Usage * You can potentially add a usage example below ```bash python scripts/speech_recognition/convert_hf_dataset_to_nemo.py \ output_dir=/data/commonvoice/ \ path="mozilla-foundation/common_voice_11_0" \ name="eo" \ # esperanto split="validation" \ ensure_ascii=False \ use_auth_token=True ``` **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 - [ ] Documentation
{ "login": "SeanNaren", "id": 6707363, "node_id": "MDQ6VXNlcjY3MDczNjM=", "avatar_url": "https://avatars.githubusercontent.com/u/6707363?v=4", "gravatar_id": "", "url": "https://api.github.com/users/SeanNaren", "html_url": "https://github.com/SeanNaren", "followers_url": "https://api.github.com/users/SeanNaren/followers", "following_url": "https://api.github.com/users/SeanNaren/following{/other_user}", "gists_url": "https://api.github.com/users/SeanNaren/gists{/gist_id}", "starred_url": "https://api.github.com/users/SeanNaren/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SeanNaren/subscriptions", "organizations_url": "https://api.github.com/users/SeanNaren/orgs", "repos_url": "https://api.github.com/users/SeanNaren/repos", "events_url": "https://api.github.com/users/SeanNaren/events{/privacy}", "received_events_url": "https://api.github.com/users/SeanNaren/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5797/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/5797/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5796
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5796/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5796/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5796/events
https://github.com/NVIDIA/NeMo/issues/5796
1,531,822,444
I_kwDOC_bI7s5bTcFs
5,796
Error trying to finetune HifiGan: stack expects each tensor to be equal size
{ "login": "dustinjoe", "id": 7971146, "node_id": "MDQ6VXNlcjc5NzExNDY=", "avatar_url": "https://avatars.githubusercontent.com/u/7971146?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dustinjoe", "html_url": "https://github.com/dustinjoe", "followers_url": "https://api.github.com/users/dustinjoe/followers", "following_url": "https://api.github.com/users/dustinjoe/following{/other_user}", "gists_url": "https://api.github.com/users/dustinjoe/gists{/gist_id}", "starred_url": "https://api.github.com/users/dustinjoe/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dustinjoe/subscriptions", "organizations_url": "https://api.github.com/users/dustinjoe/orgs", "repos_url": "https://api.github.com/users/dustinjoe/repos", "events_url": "https://api.github.com/users/dustinjoe/events{/privacy}", "received_events_url": "https://api.github.com/users/dustinjoe/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-01-13T07:13:38
2023-01-14T05:36:49
2023-01-14T05:31:53
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
**Describe the bug** I am trying to finetune the HifiGan vocoder using a set of my own audio data file. It is based on the FastPitch notebook in the tutorial. https://github.com/NVIDIA/NeMo/blob/main/tutorials/tts/FastPitch_Finetuning.ipynb Actually the first spec model of FastPitch is trained successfully. But the training of HifiGan failed. Feel a little strange because the same procedure was used on another set of data a few days ago and got a success. **Steps/Code to reproduce bug** Command I use to run the finetuning: `hifigan_finetune.py --config-name=hifigan.yaml model.train_ds.dataloader_params.batch_size=32 model.max_steps=1000 model.optim.lr=0.00001 ~model.optim.sched train_dataset=./hifigan_train_ft.json validation_datasets=./hifigan_train_ft.json exp_manager.exp_dir=hifigan_ft +init_from_pretrained_model=tts_hifigan trainer.check_val_every_n_epoch=10 model/train_ds=train_ds_finetune model/validation_ds=val_ds_finetune` Here are the first ten lines of hifigan_train_ft.json: {"audio_filepath": "./wavs/SPEAKER_target/0_0.wav", "text": " Hi everyone, this is Kevin Chiang from Experian Datalab.", "mel_filepath": "data_mels/mel_0_0.npy"} {"audio_filepath": "./wavs/SPEAKER_target/0_1.wav", "text": " This is what happens when machine meets world.", "mel_filepath": "data_mels/mel_0_1.npy"} {"audio_filepath": "./wavs/SPEAKER_target/10_0.wav", "text": " It is a very wide scope,", "mel_filepath": "data_mels/mel_10_0.npy"} {"audio_filepath": "./wavs/SPEAKER_target/10_1.wav", "text": " obvious because everybody is much more familiar", "mel_filepath": "data_mels/mel_10_1.npy"} {"audio_filepath": "./wavs/SPEAKER_target/10_2.wav", "text": " with credit bureau, but it really covered a lot of areas.", "mel_filepath": "data_mels/mel_10_2.npy"} {"audio_filepath": "./wavs/SPEAKER_target/10_3.wav", "text": " So you asked about Datalab.", "mel_filepath": "data_mels/mel_10_3.npy"} {"audio_filepath": "./wavs/SPEAKER_target/10_4.wav", "text": " Datalab is actually the R&D arm of Experian.", "mel_filepath": "data_mels/mel_10_4.npy"} {"audio_filepath": "./wavs/SPEAKER_target/10_5.wav", "text": " We are founded about 10, 11 years ago.", "mel_filepath": "data_mels/mel_10_5.npy"} {"audio_filepath": "./wavs/SPEAKER_target/10_6.wav", "text": " And then starting from that point,", "mel_filepath": "data_mels/mel_10_6.npy"} {"audio_filepath": "./wavs/SPEAKER_target/10_7.wav", "text": " we have grown into four labs globally.", "mel_filepath": "data_mels/mel_10_7.npy"} Here is how the mel file path look like: [ ![Screenshot from 2023-01-13 01-00-33](https://user-images.githubusercontent.com/7971146/212257571-42ed282a-382d-4ae8-8790-1e76d80c10b9.png) ](url) **Expected behavior** Error in training step: [ ![Screenshot from 2023-01-13 00-52-05](https://user-images.githubusercontent.com/7971146/212256373-ff8df136-b04c-4bbb-91ec-8b2cffb54674.png) ](url) **Environment overview (please complete the following information)** python 3.8.15 nemo installed with 'pip install --upgrade nemo_toolkit[all]' **Additional context** GPU model: Nvidia P5200 Thank you!
{ "login": "dustinjoe", "id": 7971146, "node_id": "MDQ6VXNlcjc5NzExNDY=", "avatar_url": "https://avatars.githubusercontent.com/u/7971146?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dustinjoe", "html_url": "https://github.com/dustinjoe", "followers_url": "https://api.github.com/users/dustinjoe/followers", "following_url": "https://api.github.com/users/dustinjoe/following{/other_user}", "gists_url": "https://api.github.com/users/dustinjoe/gists{/gist_id}", "starred_url": "https://api.github.com/users/dustinjoe/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dustinjoe/subscriptions", "organizations_url": "https://api.github.com/users/dustinjoe/orgs", "repos_url": "https://api.github.com/users/dustinjoe/repos", "events_url": "https://api.github.com/users/dustinjoe/events{/privacy}", "received_events_url": "https://api.github.com/users/dustinjoe/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/issues/5796/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/5796/timeline
null
completed
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5795
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5795/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5795/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5795/events
https://github.com/NVIDIA/NeMo/pull/5795
1,531,802,270
PR_kwDOC_bI7s5HTcC-
5,795
[DOC] move installation guide to doc intro from README
{ "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": 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-01-13T06:53:45
2023-02-21T08:36:29
2023-02-05T02:01:52
COLLABORATOR
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
false
{ "url": "https://api.github.com/repos/NVIDIA/NeMo/pulls/5795", "html_url": "https://github.com/NVIDIA/NeMo/pull/5795", "diff_url": "https://github.com/NVIDIA/NeMo/pull/5795.diff", "patch_url": "https://github.com/NVIDIA/NeMo/pull/5795.patch", "merged_at": null }
Signed-off-by: Xuesong Yang <[email protected]> # What does this PR do ? This PR was cherry-picked from https://github.com/NVIDIA/NeMo/pull/5484, which attempted to merge r1.13.0. Rebased to r1.15.0. **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 - [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": "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/5795/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/5795/timeline
null
null
true
https://api.github.com/repos/NVIDIA/NeMo/issues/5794
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5794/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5794/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5794/events
https://github.com/NVIDIA/NeMo/issues/5794
1,531,730,199
I_kwDOC_bI7s5bTFkX
5,794
Lexicon support for multiple pronunciations of the same word
{ "login": "manjuke", "id": 6142443, "node_id": "MDQ6VXNlcjYxNDI0NDM=", "avatar_url": "https://avatars.githubusercontent.com/u/6142443?v=4", "gravatar_id": "", "url": "https://api.github.com/users/manjuke", "html_url": "https://github.com/manjuke", "followers_url": "https://api.github.com/users/manjuke/followers", "following_url": "https://api.github.com/users/manjuke/following{/other_user}", "gists_url": "https://api.github.com/users/manjuke/gists{/gist_id}", "starred_url": "https://api.github.com/users/manjuke/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/manjuke/subscriptions", "organizations_url": "https://api.github.com/users/manjuke/orgs", "repos_url": "https://api.github.com/users/manjuke/repos", "events_url": "https://api.github.com/users/manjuke/events{/privacy}", "received_events_url": "https://api.github.com/users/manjuke/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-01-13T05:26:58
2023-02-20T02:01:30
2023-02-20T02:01:30
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
Hi All, Does nemo has lexicon support for handling multiple pronunciations of the same word. I understand this is supported in Riva framework as mentioned at https://docs.nvidia.com/deeplearning/riva/user-guide/docs/tutorials/asr-python-advanced-customize-vocabulary-and-lexicon.html#customizing-pronunciation-with-lexicon-mapping . But, just wanted to know, is it also supported during normal decoding. Hi @titu1994 , Is there any further update on https://github.com/NVIDIA/NeMo/issues/2903 ? Whether any functionality is added for offline support than Riva support? 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/5794/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/5794/timeline
null
not_planned
false
https://api.github.com/repos/NVIDIA/NeMo/issues/5793
https://api.github.com/repos/NVIDIA/NeMo
https://api.github.com/repos/NVIDIA/NeMo/issues/5793/labels{/name}
https://api.github.com/repos/NVIDIA/NeMo/issues/5793/comments
https://api.github.com/repos/NVIDIA/NeMo/issues/5793/events
https://github.com/NVIDIA/NeMo/issues/5793
1,531,725,471
I_kwDOC_bI7s5bTEaf
5,793
Domain language adaptation functionality in Nemo
{ "login": "manjuke", "id": 6142443, "node_id": "MDQ6VXNlcjYxNDI0NDM=", "avatar_url": "https://avatars.githubusercontent.com/u/6142443?v=4", "gravatar_id": "", "url": "https://api.github.com/users/manjuke", "html_url": "https://github.com/manjuke", "followers_url": "https://api.github.com/users/manjuke/followers", "following_url": "https://api.github.com/users/manjuke/following{/other_user}", "gists_url": "https://api.github.com/users/manjuke/gists{/gist_id}", "starred_url": "https://api.github.com/users/manjuke/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/manjuke/subscriptions", "organizations_url": "https://api.github.com/users/manjuke/orgs", "repos_url": "https://api.github.com/users/manjuke/repos", "events_url": "https://api.github.com/users/manjuke/events{/privacy}", "received_events_url": "https://api.github.com/users/manjuke/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": "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-01-13T05:21:16
2023-03-12T02:01:43
2023-03-12T02:01:43
NONE
{ "total": 0, "completed": 0, "percent_completed": 0 }
null
null
null
Hi All, I wanted to adapt some specific domain text to a model trained on Generic datasets. In Kaldi, this is done by adding more domain data to LM and use it during decoding. Is it this similar in Nemo too, like building a LM by adding domain specific text data & generic training text data together, then use this LM at the time of decoding? Or any other specific Nemo feature/ functionality that provide better support to accomplish this? 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/5793/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/5793/timeline
null
not_planned
false