summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Quant_TransposeConv_001/test.recipe
blob: c281b04827ce7d3ff3ed7e4ba7ce211b95c9b6e4 (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
operand {
  name: "out_shape"
  type: INT32
  shape { dim: 4 }
  filler {
    tag: "explicit"
    arg: "1" arg: "4" arg: "4" arg: "3" 
  }
}
operand {
  name: "bias"
  type: FLOAT32
  shape { dim: 3 }
  filler {
    tag: "explicit"
    arg: "1" arg: "2" arg: "3"
  }
}
operand {
  name: "ker"
  type: FLOAT32
  shape { dim: 3 dim: 1 dim: 1 dim: 3 }
  filler {
    tag: "gaussian"
    arg: "0.0"
    arg: "1.0"
  }
}
operand {
  name: "ifm"
  type: FLOAT32
  shape { dim: 1 dim: 4 dim: 4 dim: 3 }
}
operand {
  name: "ofm"
  type: FLOAT32
  shape { dim: 1 dim: 4 dim: 4 dim: 3 }
}

operation {
  type: "TransposeConv"
  transpose_conv_options {
    padding: SAME
    stride_w: 1
    stride_h: 1
  }
  input: "out_shape"
  input: "ker"
  input: "ifm"
  input: "bias"
  output: "ofm"
}
input: "ifm"
output: "ofm"