summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/Ex/one_hot_ex_float_2_nnfw.mod.py
blob: 6a41488dfe1f190fc7f6bae014429826ead286ec (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
#
# Copyright (C) 2018 The Android Open Source Project
# Copyright (C) 2020 Samsung Electronics Co., Ltd. All Rights Reserved
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

model = Model()


indices = Input("indices", "TENSOR_INT32", "{1, 2, 2}")
depth = Parameter("depth", "TENSOR_INT32", "{1}", [3])
onvalue = Input("onvalue", "TENSOR_FLOAT32", "{1}")
offvalue = Input("offvalue", "TENSOR_FLOAT32", "{1}")

axis0 = Int32Scalar("axis", 1) # default value is -1.
model_output0 = Output("output", "TENSOR_FLOAT32", "{1, 3, 2, 2}")

model0 = model.Operation("ONE_HOT_EX", indices, depth, onvalue, offvalue, axis0).To(model_output0)

model_output_data = ([1., 1., 2., 1.,
		              2., 1., 1., 1.,
					  1., 2., 1., 2.,])

indices_data = [1, 2, 0, 2]
onvalue_data = [2.]
offvalue_data = [1.]

Example(
  {
    indices : indices_data,
    onvalue : onvalue_data,
    offvalue : offvalue_data,

    model_output0 : model_output_data,
  })