Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 5, 2024
1 parent e364fde commit 740d723
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion source/tests/test_model_format_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@
class TestNativeLayer(unittest.TestCase):
def test_serialize_deserize(self):
for (ni, no), bias, ut, activation_function, resnet in itertools.product(
[(5, 5), (5, 10), (5, 9), (9, 5)], [True, False], [True, False], ["tanh", "none"], [True, False]
[(5, 5), (5, 10), (5, 9), (9, 5)],
[True, False],
[True, False],
["tanh", "none"],
[True, False],
):
ww = np.full((ni, no), 3.0)
bb = np.full((no,), 4.0) if bias else None
Expand Down

0 comments on commit 740d723

Please sign in to comment.