summaryrefslogtreecommitdiff
path: root/compiler/nnc/tests/acl_soft_backend/models/fully_connected.prototxt
blob: beca80187526c39e74f248c5223871d1c9f7db8d (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
name: "FULLYCONNET"
layer {
  name: "input"
  type: "Input"
  top: "data"
  input_param {
    shape {
      dim: 1
      dim: 3
      dim: 4
      dim: 8
    }
  }
}
layer {
  name: "fc8"
  type: "InnerProduct"
  param { lr_mult: 1 decay_mult: 1 }
  inner_product_param {
    num_output: 10
    weight_filler {
      type: "gaussian"
      std: 0.01
    }
    bias_term: false
  }
  bottom: "data"
  top: "fc8"
}