Skip to content

Commit 265bd73

Browse files
committed
Merge branch 'r2.0.0rc0' of github.com:NVIDIA/NeMo into r2.0.0rc0
2 parents 8b65e3e + d02bb32 commit 265bd73

File tree

123 files changed

+1896
-8913
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+1896
-8913
lines changed

.github/workflows/cicd-main.yml

Lines changed: 45 additions & 1069 deletions
Large diffs are not rendered by default.

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ Use this installation mode if you want the latest released version.
247247
.. code-block:: bash
248248
249249
apt-get update && apt-get install -y libsndfile1 ffmpeg
250-
pip install Cython
250+
pip install Cython packaging
251251
pip install nemo_toolkit['all']
252252
253253
Depending on the shell used, you may need to use ``"nemo_toolkit[all]"`` instead in the above command.
@@ -272,7 +272,7 @@ Use this installation mode if you want the version from a particular GitHub bran
272272
.. code-block:: bash
273273
274274
apt-get update && apt-get install -y libsndfile1 ffmpeg
275-
pip install Cython
275+
pip install Cython packaging
276276
python -m pip install git+https://github.com/NVIDIA/NeMo.git@{BRANCH}#egg=nemo_toolkit[all]
277277
278278
@@ -310,7 +310,7 @@ To install NeMo on Mac with Apple M-Series GPU:
310310
conda install -c conda-forge pynini
311311
312312
# install Cython manually
313-
pip install cython
313+
pip install cython packaging
314314
315315
# clone the repo and install in development mode
316316
git clone https://github.com/NVIDIA/NeMo

examples/asr/conf/fastconformer/cache_aware_streaming/fastconformer_ctc_bpe_streaming.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ model:
8080
feat_out: -1 # you may set it if you need different output size other than the default d_model
8181
n_layers: 17
8282
d_model: 512
83+
use_bias: True # whether to apply bias in the feedforward, MHA and convolution modules
8384

8485
# Sub-sampling parameters
8586
subsampling: dw_striding # vggnet, striding, stacking or stacking_norm, dw_striding

examples/asr/conf/fastconformer/cache_aware_streaming/fastconformer_ctc_char_streaming.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ model:
7878
feat_out: -1 # you may set it if you need different output size other than the default d_model
7979
n_layers: 17
8080
d_model: 512
81+
use_bias: True # whether to apply bias in the feedforward, MHA and convolution modules
8182

8283
# Sub-sampling params
8384
subsampling: dw_striding # vggnet, striding, stacking or stacking_norm, dw_striding

examples/asr/conf/fastconformer/cache_aware_streaming/fastconformer_transducer_bpe_streaming.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ model:
8585
feat_out: -1 # you may set it if you need different output size other than the default d_model
8686
n_layers: 17
8787
d_model: 512
88+
use_bias: True # whether to apply bias in the feedforward, MHA and convolution modules
8889

8990
# Sub-sampling parameters
9091
subsampling: dw_striding # vggnet, striding, stacking or stacking_norm, dw_striding

examples/asr/conf/fastconformer/cache_aware_streaming/fastconformer_transducer_char_streaming.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ model:
8484
feat_out: -1 # you may set it if you need different output size other than the default d_model
8585
n_layers: 17
8686
d_model: 512
87+
use_bias: True # whether to apply bias in the feedforward, MHA and convolution modules
8788

8889
# Sub-sampling params
8990
subsampling: dw_striding # vggnet, striding, stacking or stacking_norm, dw_striding

examples/asr/conf/fastconformer/hybrid_cache_aware_streaming/fastconformer_hybrid_transducer_ctc_bpe_streaming.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ model:
9090
feat_out: -1 # you may set it if you need different output size other than the default d_model
9191
n_layers: 17
9292
d_model: 512
93+
use_bias: True # whether to apply bias in the feedforward, MHA and convolution modules
9394

9495
# Sub-sampling parameters
9596
subsampling: dw_striding # vggnet, striding, stacking or stacking_norm, dw_striding

examples/asr/conf/fastconformer/hybrid_cache_aware_streaming/fastconformer_hybrid_transducer_ctc_char_streaming.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ model:
8888
feat_out: -1 # you may set it if you need different output size other than the default d_model
8989
n_layers: 17
9090
d_model: 512
91+
use_bias: True # whether to apply bias in the feedforward, MHA and convolution modules
9192

9293
# Sub-sampling params
9394
subsampling: dw_striding # vggnet, striding, stacking or stacking_norm, dw_striding

examples/asr/conf/fastconformer/hybrid_transducer_ctc/fastconformer_hybrid_transducer_ctc_bpe.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ model:
8787
feat_out: -1 # you may set it if you need different output size other than the default d_model
8888
n_layers: 17
8989
d_model: 512
90+
use_bias: True # whether to apply bias in the feedforward, MHA and convolution modules
9091

9192
# Sub-sampling parameters
9293
subsampling: dw_striding # vggnet, striding, stacking or stacking_norm, dw_striding

examples/asr/conf/fastconformer/hybrid_transducer_ctc/fastconformer_hybrid_transducer_ctc_char.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ model:
8585
feat_out: -1 # you may set it if you need different output size other than the default d_model
8686
n_layers: 17
8787
d_model: 512
88+
use_bias: True # whether to apply bias in the feedforward, MHA and convolution modules
8889

8990
# Sub-sampling params
9091
subsampling: dw_striding # vggnet, striding, stacking or stacking_norm, dw_striding

0 commit comments

Comments
 (0)