diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-01-19 08:06:57 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-01-19 08:06:57 +0100 |
commit | e844c4e325e497ceea5e7ac64d12d77ac5026b95 (patch) | |
tree | 2f4a22d109c8cef5180972e84e5977bc9bf491e0 /lib/parameters.py | |
parent | f4cd1ae0e118b1975b8400ca4047a1d5ca7e20c1 (diff) |
assertions
Diffstat (limited to 'lib/parameters.py')
-rw-r--r-- | lib/parameters.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/parameters.py b/lib/parameters.py index 00ab70a..45a577b 100644 --- a/lib/parameters.py +++ b/lib/parameters.py @@ -1286,8 +1286,11 @@ class ModelAttribute: ) ) ) + assert len(child_indexes[-1]) > 0 - if len(list(filter(len, child_indexes))) <= 1: + assert len(child_indexes) != 0 + + if len(child_indexes) == 1: # this param only has a single value. there's no point in splitting. loss.append(np.inf) continue |