Skip to content

Commit 5b608af

Browse files
committed
Adding somnolent-hogwash model
1 parent b5f2e21 commit 5b608af

File tree

4 files changed

+11191
-2
lines changed

4 files changed

+11191
-2
lines changed

src/models.c

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ static const char *model_names[] = {
4141
"mp",
4242
"bd",
4343
"lq",
44+
"sh",
4445
NULL
4546
};
4647

@@ -49,14 +50,16 @@ extern const struct RNNModel
4950
model_cb,
5051
model_mp,
5152
model_bd,
52-
model_lq;
53+
model_lq,
54+
model_sh;
5355

5456
static const struct RNNModel *models[] = {
5557
&model_orig,
5658
&model_cb,
5759
&model_mp,
5860
&model_bd,
59-
&model_lq
61+
&model_lq,
62+
&model_sh
6063
};
6164

6265
const char **rnnoise_models()

src/models/bd.c

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
/*
2+
* SUITE: beguiling-drafter-2018-08-30
3+
*
4+
* INTENT:
5+
*
6+
* Voice in a reasonable recording environment. Fans, AC, computers, etc.
7+
*
8+
*
9+
* SIGNAL:
10+
*
11+
* voice
12+
* hamlet-002-act-1-scene-1.1626
13+
* http://etc.usf.edu/lit2go/94/hamlet/1626/
14+
* human_rights_un_chi_nf.mp3
15+
* https://librivox.org/universal-declaration-of-human-rights-by-united-nations-volume-02/
16+
* human_rights_un_cze_msed.mp3
17+
* https://librivox.org/universal-declaration-of-human-rights-by-united-nations-volume-02/
18+
* huntingofthesnark_01_carrol_128kb
19+
* https://librivox.org/the-hunting-of-the-snark-by-lewis-carroll-3/
20+
* teacupclub_01_armstrong_128kb
21+
* https://librivox.org/the-teacup-club-by-eliza-armstrong/
22+
* warletters_01_allan_128kb.mp3
23+
* https://librivox.org/war-letters-from-a-young-queenslander-by-robert-marshall-allen/
24+
* TSPspeech
25+
* http://www-mmsp.ece.mcgill.ca/Documents/Data/
26+
*
27+
* sounds
28+
* cough
29+
* https://freesound.org/ sounds: 205012 222644 252240 323532 342587 343880 343885 343986 369295 391284 401334 407839 419781 425777 87412
30+
* laugh
31+
* https://freesound.org/ sounds: 167578 189278 263775 319346 343934 344043 344064 367680 381275 383237 393353 401214 433921 73123
32+
*
33+
*
34+
* ./chopper voice/hamlet-002-act-1-scene-1.1626.raw voice/human_rights_un_chi_nf.raw sounds/cough.raw voice/human_rights_un_cze_msed.raw voice/huntingofthesnark_01_carrol_128kb.raw sounds/laugh.raw voice/teacupclub_01_armstrong_128kb.raw voice/warletters_01_allan_128kb.raw voice/TSPspeech.raw
35+
*
36+
*
37+
* NOISE:
38+
*
39+
* rnnoise_contributions (only "other" and "none" samples)
40+
* https://people.xiph.org/~jm/demo/rnnoise/rnnoise_contributions.tar.gz
41+
*
42+
*
43+
* COUNT: 13212874 (x87)
44+
*
45+
* NOTE: All files processed into correct raws through ffmpeg: ffmpeg -i in -f s16le -ac 1 -ar 48000 out.raw
46+
*/
47+
148
/*This file is automatically generated from a Keras model*/
249

350
#ifdef HAVE_CONFIG_H

src/models/lq.c

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,53 @@
1+
/*
2+
* SUITE: leavened-quisling-2018-08-31
3+
*
4+
* INTENT:
5+
*
6+
* Voice in a noisy recording environment.
7+
*
8+
*
9+
* SIGNAL:
10+
*
11+
* voice
12+
* hamlet-002-act-1-scene-1.1626
13+
* http://etc.usf.edu/lit2go/94/hamlet/1626/
14+
* human_rights_un_chi_nf.mp3
15+
* https://librivox.org/universal-declaration-of-human-rights-by-united-nations-volume-02/
16+
* human_rights_un_cze_msed.mp3
17+
* https://librivox.org/universal-declaration-of-human-rights-by-united-nations-volume-02/
18+
* huntingofthesnark_01_carrol_128kb
19+
* https://librivox.org/the-hunting-of-the-snark-by-lewis-carroll-3/
20+
* teacupclub_01_armstrong_128kb
21+
* https://librivox.org/the-teacup-club-by-eliza-armstrong/
22+
* warletters_01_allan_128kb.mp3
23+
* https://librivox.org/war-letters-from-a-young-queenslander-by-robert-marshall-allen/
24+
* TSPspeech
25+
* http://www-mmsp.ece.mcgill.ca/Documents/Data/
26+
*
27+
* sounds
28+
* cough
29+
* https://freesound.org/ sounds: 205012 222644 252240 323532 342587 343880 343885 343986 369295 391284 401334 407839 419781 425777 87412
30+
* laugh
31+
* https://freesound.org/ sounds: 167578 189278 263775 319346 343934 344043 344064 367680 381275 383237 393353 401214 433921 73123
32+
*
33+
*
34+
* ./chopper voice/hamlet-002-act-1-scene-1.1626.raw voice/human_rights_un_chi_nf.raw sounds/cough.raw voice/human_rights_un_cze_msed.raw voice/huntingofthesnark_01_carrol_128kb.raw sounds/laugh.raw voice/teacupclub_01_armstrong_128kb.raw voice/warletters_01_allan_128kb.raw voice/TSPspeech.raw
35+
*
36+
*
37+
* NOISE:
38+
*
39+
* rnnoise_contributions
40+
* https://people.xiph.org/~jm/demo/rnnoise/rnnoise_contributions.tar.gz
41+
*
42+
*
43+
* ./noise-chopper *.raw
44+
*
45+
*
46+
* COUNT: 10000000 (x87)
47+
*
48+
* NOTE: All files processed into correct raws through ffmpeg: ffmpeg -i in -f s16le -ac 1 -ar 48000 out.raw
49+
*/
50+
151
/*This file is automatically generated from a Keras model*/
252

353
#ifdef HAVE_CONFIG_H

0 commit comments

Comments
 (0)