dtransposed commited on
Commit
584dd6c
·
verified ·
1 Parent(s): 3b7c5a2

Upload 2 files

Browse files
Files changed (2) hide show
  1. classifier.onnx +3 -0
  2. config.pbtxt +26 -0
classifier.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36b92beaea0d77a05bc45bf35c185cbcc576998b0967422db511d4fb251b37ea
3
+ size 354369849
config.pbtxt ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: "voicemail_classifier"
2
+ backend: "onnxruntime"
3
+ max_batch_size: 64
4
+
5
+ input [
6
+ {
7
+ name: "audio_features"
8
+ data_type: TYPE_FP32
9
+ dims: [ -1, 80, 3000 ] # [batch_size, n_mels, time]
10
+ }
11
+ ]
12
+
13
+ output [
14
+ {
15
+ name: "probabilities"
16
+ data_type: TYPE_FP32
17
+ dims: [ 2 ] # Binary classification
18
+ }
19
+ ]
20
+
21
+ instance_group [
22
+ {
23
+ kind: KIND_CPU
24
+ count: 1
25
+ }
26
+ ]