dtransposed commited on
Commit
9578963
·
verified ·
1 Parent(s): 96bbd57

Upload 2 files

Browse files
Files changed (2) hide show
  1. classifier.onnx +2 -2
  2. config.pbtxt +11 -1
classifier.onnx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:36b92beaea0d77a05bc45bf35c185cbcc576998b0967422db511d4fb251b37ea
3
- size 354369849
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b8511ab7e9d0c0bf6c2a53de8906ad6876040cbf8b8c94cf9d6b565280c2f87
3
+ size 354370070
config.pbtxt CHANGED
@@ -6,15 +6,25 @@ input [
6
  {
7
  name: "audio_features"
8
  data_type: TYPE_FP32
9
- dims: [80, 3000 ] # [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
 
 
6
  {
7
  name: "audio_features"
8
  data_type: TYPE_FP32
9
+ dims: [ 80, 3000 ] # [n_mels, time]
10
  }
11
  ]
12
 
13
  output [
14
+ {
15
+ name: "logits"
16
+ data_type: TYPE_FP32
17
+ dims: [ 2 ] # Binary classification
18
+ },
19
  {
20
  name: "probabilities"
21
  data_type: TYPE_FP32
22
  dims: [ 2 ] # Binary classification
23
+ },
24
+ {
25
+ name: "predicted_class"
26
+ data_type: TYPE_INT64
27
+ dims: [ 1 ] # Binary classification
28
  }
29
  ]
30