Skip to content

Commit 0232fb9

Browse files
committed
Adding marathon-prescription model.
1 parent f122681 commit 0232fb9

File tree

4 files changed

+11112
-24
lines changed

4 files changed

+11112
-24
lines changed

Makefile.am

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ librnnoise_la_SOURCES = \
2323
src/rnn.c \
2424
src/rnn_data.c \
2525
src/models/cb.c \
26+
src/models/mp.c \
2627
src/rnn_reader.c \
2728
src/models.c \
2829
src/pitch.c \

src/models.c

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,19 @@
3838
static const char *model_names[] = {
3939
"orig",
4040
"cb",
41+
"mp",
4142
NULL
4243
};
4344

44-
extern const struct RNNModel model_orig, model_cb;
45+
extern const struct RNNModel
46+
model_orig,
47+
model_cb,
48+
model_mp;
4549

4650
static const struct RNNModel *models[] = {
4751
&model_orig,
48-
&model_cb
52+
&model_cb,
53+
&model_mp
4954
};
5055

5156
const char **rnnoise_models()

src/models/cb.rnnn

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)