Skip to content
Snippets Groups Projects
Commit 06d9bb53 authored by Maxence Naud's avatar Maxence Naud Committed by Cyril Moineau
Browse files

fix bias dim in test_recipes.py

parent 24a4a877
No related branches found
No related tags found
1 merge request!610.2.2
......@@ -40,7 +40,7 @@ class test_recipes(unittest.TestCase):
graph_view.set_backend("cpu")
np_weights = np.arange(9).reshape([1, 1, 3, 3]).astype(np.float32)
np_bias = np.arange(1).reshape([1, 1]).astype(np.float32)
np_bias = np.arange(1).reshape([1]).astype(np.float32)
np_scale = np.array([0.05]).astype(np.float32)
np_shift = np.array([0.05]).astype(np.float32)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment