• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

doc/23-Nov-2023-1914

examples/23-Nov-2023-6131

include/23-Nov-2023-11533

m4/23-Nov-2023-322284

src/23-Nov-2023-15,28914,249

training/23-Nov-2023-239170

AUTHORSD23-Nov-202337 21

Android.bpD23-Nov-2023666 3128

COPYINGD23-Nov-20231.5 KiB3226

METADATAD23-Nov-2023391 2019

MODULE_LICENSE_BSDD23-Nov-20230

Makefile.amD23-Nov-20233.6 KiB13183

READMED23-Nov-2023596 2215

TRAINING-READMED23-Nov-2023311 126

autogen.shD23-Nov-2023227 115

configure.acD23-Nov-20233.7 KiB130101

rnnoise-uninstalled.pc.inD23-Nov-2023320 1411

rnnoise.pc.inD23-Nov-2023293 1512

update_versionD23-Nov-20232.3 KiB6630

README

1RNNoise is a noise suppression library based on a recurrent neural network.
2
3To compile, just type:
4% ./autogen.sh
5% ./configure
6% make
7
8Optionally:
9% make install
10
11While it is meant to be used as a library, a simple command-line tool is
12provided as an example. It operates on RAW 16-bit (machine endian) mono
13PCM files sampled at 48 kHz. It can be used as:
14
15./examples/rnnoise_demo <noisy speech> <output denoised>
16
17The output is also a 16-bit raw PCM file.
18
19The latest version of the source is available from
20https://gitlab.xiph.org/xiph/rnnoise .  The github repository
21is a convenience copy.
22

TRAINING-README

1(1) cd src ; ./compile.sh
2
3(2) ./denoise_training signal.raw noise.raw count > training.f32
4
5    (note the matrix size and replace 500000 87 below)
6
7(3) cd training ; ./bin2hdf5.py ../src/training.f32 500000 87 training.h5
8
9(4) ./rnn_train.py
10
11(5) ./dump_rnn.py weights.hdf5 ../src/rnn_data.c ../src/rnn_data.h
12