Update config.pbtxt
Browse files- config.pbtxt +26 -31
config.pbtxt
CHANGED
@@ -2,35 +2,30 @@ name: "voicemail_classifier"
|
|
2 |
backend: "onnxruntime"
|
3 |
max_batch_size: 64
|
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 |
-
|
29 |
-
|
30 |
-
|
31 |
-
instance_group [
|
32 |
-
{
|
33 |
-
kind: KIND_CPU
|
34 |
-
count: 1
|
35 |
-
}
|
36 |
]
|
|
|
2 |
backend: "onnxruntime"
|
3 |
max_batch_size: 64
|
4 |
|
5 |
+
max_batch_size: 64
|
6 |
+
input {
|
7 |
+
name: "audio_features"
|
8 |
+
data_type: TYPE_FP32
|
9 |
+
dims: 80
|
10 |
+
dims: 3000
|
11 |
+
}
|
12 |
+
output {
|
13 |
+
name: "logits"
|
14 |
+
data_type: TYPE_FP32
|
15 |
+
dims: 2
|
16 |
+
}
|
17 |
+
output {
|
18 |
+
name: "probabilities"
|
19 |
+
data_type: TYPE_FP32
|
20 |
+
dims: 2
|
21 |
+
}
|
22 |
+
output {
|
23 |
+
name: "predicted_class"
|
24 |
+
data_type: TYPE_INT64
|
25 |
+
dims: 1
|
26 |
+
}
|
27 |
+
instance_group {
|
28 |
+
count: 1
|
29 |
+
kind: KIND_CPU
|
30 |
+
}
|
|
|
|
|
|
|
|
|
|
|
31 |
]
|