summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/FullyConnected_006/test.recipe
blob: b5f329b578d7ad0337e2a21f4049c38d9a5feeb2 (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
operand {
  name: "in"
  type: FLOAT32
  shape { dim: 1 dim: 1 dim: 4 }
}
operand {
  name: "weight"
  type: FLOAT32
  shape { dim: 2 dim: 4 }
}
operand {
  name: "out"
  type: FLOAT32
  shape { dim: 1 dim: 1 dim: 2 }
}
operation {
  type: "FullyConnected"
  fullyconnected_options {
    activation: NONE
    keep_num_dims: true
  }
  input: "in"
  input: "weight"
  input: ""
  output: "out"
}
input: "in"
input: "weight"
output: "out"