We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5baed55 commit c034f7dCopy full SHA for c034f7d
tests/tflm/tflite_export/test_write.py
@@ -110,5 +110,6 @@ def test_tflite_fb_write(hybrid_quant_output):
110
print("out2 :", test_model.get_tensor(test_model.get_output_details()[2]["index"]))
111
112
113
- test_pass = True
114
- assert test_pass, 'error message here'
+ output = test_model.get_tensor(test_model.get_output_details()[2]["index"])
+
115
+ assert np.abs(output - 707) <= 0.0001, 'error is greater than 0.0001'
0 commit comments