Home | History | Annotate | Download | only in V1_0
      1 #
      2 # Copyright (C) 2017 The Android Open Source Project
      3 #
      4 # Licensed under the Apache License, Version 2.0 (the "License");
      5 # you may not use this file except in compliance with the License.
      6 # You may obtain a copy of the License at
      7 #
      8 #      http://www.apache.org/licenses/LICENSE-2.0
      9 #
     10 # Unless required by applicable law or agreed to in writing, software
     11 # distributed under the License is distributed on an "AS IS" BASIS,
     12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13 # See the License for the specific language governing permissions and
     14 # limitations under the License.
     15 #
     16 
     17 # model
     18 model = Model()
     19 
     20 d0 = 2
     21 d1 = 64
     22 d2 = 64
     23 d3 = 2
     24 
     25 i0 = Input("input", "TENSOR_QUANT8_ASYMM", "{%d, %d, %d, %d}, 1.f, 128" % (d0, d1, d2, d3))
     26 
     27 output = Output("output", "TENSOR_QUANT8_ASYMM", "{%d, %d, %d, %d}, 1.f, 128" % (d0, d1, d2, d3))
     28 
     29 model = model.Operation("RELU1", i0).To(output)
     30 
     31 # Example 1. Input in operand 0,
     32 rng = d0 * d1 * d2 * d3
     33 input_values = (lambda r = rng: [x % 256 for x in range(r)])()
     34 input0 = {i0: input_values}
     35 output_values = [127 if x < 127 else 129 if x > 129 else x for x in input_values]
     36 output0 = {output: output_values}
     37 
     38 # Instantiate an example
     39 Example((input0, output0))
     40