Home
last modified time | relevance | path

Searched refs:ActivationConverter (Results 1 – 8 of 8) sorted by relevance

/frameworks/ml/nn/tools/test_generator/tests/P_vts_variation/
Dconv_float.mod.py41 relu = ActivationConverter("relu").Identify([output], [act])
42 relu6 = ActivationConverter("relu6").Identify([output], [act])
/frameworks/ml/nn/tools/test_generator/tests/P_vts_naming/
Dconv_float.mod.py42 relu = ActivationConverter("relu", name="act").Identify([output], [act])
43 relu6 = ActivationConverter("relu6").Identify([output], [act])
/frameworks/ml/nn/tools/test_generator/tests/P_naming/
Dconv_float.mod.py42 relu = ActivationConverter("relu", name="act").Identify([output], [act])
43 relu6 = ActivationConverter("relu6").Identify([output], [act])
/frameworks/ml/nn/tools/test_generator/
DREADME.md120 - 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))
Dtest_generator.py922 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())]
Dspec_visualizer.py40 from test_generator import ActivationConverter
Dvts_generator.py40 from test_generator import ActivationConverter
Dcts_generator.py36 from test_generator import ActivationConverter