File tree Expand file tree Collapse file tree 5 files changed +22103
-3
lines changed Expand file tree Collapse file tree 5 files changed +22103
-3
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ librnnoise_la_SOURCES = \
24
24
src/rnn_data.c \
25
25
src/models/cb.c \
26
26
src/models/mp.c \
27
+ src/models/bd.c \
28
+ src/models/lq.c \
27
29
src/rnn_reader.c \
28
30
src/models.c \
29
31
src/pitch.c \
Original file line number Diff line number Diff line change 8
8
9
9
(4) ./rnn_train.py
10
10
11
- (5) ./dump_rnn.py weights.hdf5 ../src/ rnn_data.c ../src/ rnn_data.h
11
+ (5) ./dump_rnn.py weights.hdf5 rnn_data.c rnn_data.rnnn name
Original file line number Diff line number Diff line change @@ -39,18 +39,24 @@ static const char *model_names[] = {
39
39
"orig" ,
40
40
"cb" ,
41
41
"mp" ,
42
+ "bd" ,
43
+ "lq" ,
42
44
NULL
43
45
};
44
46
45
47
extern const struct RNNModel
46
48
model_orig ,
47
49
model_cb ,
48
- model_mp ;
50
+ model_mp ,
51
+ model_bd ,
52
+ model_lq ;
49
53
50
54
static const struct RNNModel * models [] = {
51
55
& model_orig ,
52
56
& model_cb ,
53
- & model_mp
57
+ & model_mp ,
58
+ & model_bd ,
59
+ & model_lq
54
60
};
55
61
56
62
const char * * rnnoise_models ()
You can’t perform that action at this time.
0 commit comments