Searched refs:ActivationConverter (Results 1 – 8 of 8) sorted by relevance
/frameworks/ml/nn/tools/test_generator/tests/P_vts_variation/ |
D | conv_float.mod.py | 41 relu = ActivationConverter("relu").Identify([output], [act]) 42 relu6 = ActivationConverter("relu6").Identify([output], [act])
|
/frameworks/ml/nn/tools/test_generator/tests/P_vts_naming/ |
D | conv_float.mod.py | 42 relu = ActivationConverter("relu", name="act").Identify([output], [act]) 43 relu6 = ActivationConverter("relu6").Identify([output], [act])
|
/frameworks/ml/nn/tools/test_generator/tests/P_naming/ |
D | conv_float.mod.py | 42 relu = ActivationConverter("relu", name="act").Identify([output], [act]) 43 relu6 = ActivationConverter("relu6").Identify([output], [act])
|
/frameworks/ml/nn/tools/test_generator/ |
D | README.md | 120 - ActivationConverter 196 #### ActivationConverter subsubsection 201 converter = ActivationConverter(name="variation_name").Identify( 298 # ActivationConverter 299 example.AddVariations(ActivationConverter("relu").Identify(op_list)) 304 ActivationConverter("relu").Identify(op_list), 305 ActivationConverter("relu1").Identify(op_list), 306 ActivationConverter("relu6").Identify(op_list))
|
D | test_generator.py | 922 class ActivationConverter(ModelVariation, ImplicitVariation): class 933 assert ActivationConverter.IsCompatible(self.act) 934 self.enum = ActivationConverter.actMap[self.act][0] 935 self.low = ActivationConverter.actMap[self.act][1] 936 self.high = ActivationConverter.actMap[self.act][2] 940 return value.lower() in ActivationConverter.actMap.keys() 1047 var = ActivationConverter("relu").Identify(args) 1052 var = [ActivationConverter(i).Identify(args) 1053 for i in sorted(ActivationConverter.actMap.keys())]
|
D | spec_visualizer.py | 40 from test_generator import ActivationConverter
|
D | vts_generator.py | 40 from test_generator import ActivationConverter
|
D | cts_generator.py | 36 from test_generator import ActivationConverter
|