summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Softmax_U8_000/test.recipe
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowLiteRecipes/Softmax_U8_000/test.recipe')
-rw-r--r--res/TensorFlowLiteRecipes/Softmax_U8_000/test.recipe22
1 files changed, 22 insertions, 0 deletions
diff --git a/res/TensorFlowLiteRecipes/Softmax_U8_000/test.recipe b/res/TensorFlowLiteRecipes/Softmax_U8_000/test.recipe
new file mode 100644
index 000000000..a753ca437
--- /dev/null
+++ b/res/TensorFlowLiteRecipes/Softmax_U8_000/test.recipe
@@ -0,0 +1,22 @@
+operand {
+ name: "ifm"
+ type: UINT8
+ shape { dim: 1 dim: 1001 }
+ quant { min: -6.02353 max: 5.97647 scale: 0.0470588 zero_point: 128 }
+}
+operand {
+ name: "ofm"
+ type: UINT8
+ shape { dim: 1 dim: 1001 }
+ quant { min: 0 max: 0.996094 scale: 0.00390625 zero_point: 0 }
+}
+operation {
+ type: "Softmax"
+ softmax_options {
+ beta: 1.0
+ }
+ input: "ifm"
+ output: "ofm"
+}
+input: "ifm"
+output: "ofm"