Skip to content

Commit

Permalink
FEAT(client): Restore RNNoise for version 0.2
Browse files Browse the repository at this point in the history
Added the git submodule from xiph/rnnoise after removing ReNameNoise.
Chose to go with `main` here. This commit follows the revert to
ReNameNoise.

Resolves #6395

Remove extra rnnoise submodule section
  • Loading branch information
guillermofbriceno committed Oct 13, 2024
1 parent 6e5ca80 commit 1472d26
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@
[submodule "3rdparty/cmake-compiler-flags"]
path = 3rdparty/cmake-compiler-flags
url = https://github.com/Krzmbrzl/cmake-compiler-flags.git
[submodule "3rdparty/rnnoise-src"]
path = 3rdparty/rnnoise-src
url = https://github.com/xiph/rnnoise.git
[submodule "3rdparty/flag-icons"]
path = 3rdparty/flag-icons
url = https://github.com/lipis/flag-icons.git
Expand Down
2 changes: 1 addition & 1 deletion 3rdparty/rnnoise-src
Submodule rnnoise-src updated 67 files
+2 −1 COPYING
+49 −9 Makefile.am
+101 −2 README
+2 −0 autogen.sh
+22 −0 configure.ac
+173 −0 datasets.txt
+34 −0 doc/Makefile
+31 −0 download_model.sh
+9 −0 examples/rnnoise_demo.c
+18 −1 include/rnnoise.h
+1 −0 model_version
+17 −0 scripts/dump_features_parallel.sh
+68 −0 scripts/rir_deconv.py
+7 −0 scripts/shrink_model.sh
+28 −0 scripts/sweep.py
+6 −136 src/celt_lpc.c
+3 −17 src/celt_lpc.h
+8 −0 src/common.h
+53 −0 src/cpu_support.h
+171 −312 src/denoise.c
+56 −0 src/denoise.h
+499 −0 src/dump_features.c
+105 −0 src/dump_rnnoise_tables.c
+18 −18 src/kiss_fft.c
+18 −18 src/kiss_fft.h
+123 −0 src/nnet.c
+169 −0 src/nnet.h
+257 −0 src/nnet_arch.h
+35 −0 src/nnet_default.c
+237 −0 src/parse_lpcnet_weights.c
+16 −44 src/pitch.c
+4 −6 src/pitch.h
+17 −135 src/rnn.c
+9 −29 src/rnn.h
+0 −11,051 src/rnn_data.c
+0 −34 src/rnn_data.h
+0 −168 src/rnn_reader.c
+874 −0 src/rnnoise_tables.c
+0 −45 src/tansig_table.h
+388 −0 src/vec.h
+884 −0 src/vec_avx.h
+474 −0 src/vec_neon.h
+77 −0 src/write_weights.c
+85 −0 src/x86/dnn_x86.h
+40 −0 src/x86/nnet_avx2.c
+40 −0 src/x86/nnet_sse4_1.c
+47 −0 src/x86/x86_arch_macros.h
+74 −0 src/x86/x86_dnn_map.c
+166 −0 src/x86/x86cpu.c
+88 −0 src/x86/x86cpu.h
+93 −0 torch/rnnoise/dump_rnnoise_weights.py
+109 −0 torch/rnnoise/rnnoise.py
+178 −0 torch/rnnoise/train_rnnoise.py
+2 −0 torch/sparsification/__init__.py
+121 −0 torch/sparsification/common.py
+187 −0 torch/sparsification/gru_sparsifier.py
+21 −0 torch/weight-exchange/README.md
+1 −0 torch/weight-exchange/requirements.txt
+48 −0 torch/weight-exchange/setup.py
+30 −0 torch/weight-exchange/wexchange/__init__.py
+31 −0 torch/weight-exchange/wexchange/c_export/__init__.py
+182 −0 torch/weight-exchange/wexchange/c_export/c_writer.py
+387 −0 torch/weight-exchange/wexchange/c_export/common.py
+5 −0 torch/weight-exchange/wexchange/tf/__init__.py
+188 −0 torch/weight-exchange/wexchange/tf/tf.py
+37 −0 torch/weight-exchange/wexchange/torch/__init__.py
+433 −0 torch/weight-exchange/wexchange/torch/torch.py

0 comments on commit 1472d26

Please sign in to comment.