-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmodel.h
29 lines (21 loc) · 781 Bytes
/
model.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
int LSTM_1_BIAS_SHAPE_0 = 1024;
extern const float LSTM_1_BIAS[];
int LSTM_1_KERNEL_SHAPE_0 = 47;
int LSTM_1_KERNEL_SHAPE_1 = 1024;
extern const float LSTM_1_KERNEL[];
int LSTM_1_RECURRENT_KERNEL_SHAPE_0 = 256;
int LSTM_1_RECURRENT_KERNEL_SHAPE_1 = 1024;
extern const float LSTM_1_RECURRENT_KERNEL[];
int LSTM_2_BIAS_SHAPE_0 = 1024;
extern const float LSTM_2_BIAS[];
int LSTM_2_KERNEL_SHAPE_0 = 256;
int LSTM_2_KERNEL_SHAPE_1 = 1024;
extern const float LSTM_2_KERNEL[];
int LSTM_2_RECURRENT_KERNEL_SHAPE_0 = 256;
int LSTM_2_RECURRENT_KERNEL_SHAPE_1 = 1024;
extern const float LSTM_2_RECURRENT_KERNEL[];
int DENSE_1_BIAS_SHAPE_0 = 47;
extern const float DENSE_1_BIAS[];
int DENSE_1_KERNEL_SHAPE_0 = 256;
int DENSE_1_KERNEL_SHAPE_1 = 47;
extern const float DENSE_1_KERNEL[];