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 6119480 commit 18544e6Copy full SHA for 18544e6
simbench/networks/profiles.py
@@ -233,7 +233,7 @@ def get_absolute_profiles_from_relative_profiles(
233
missing = list(applied_profiles[~applied_profiles.isin(relative_profiles.columns)])
234
if len(missing):
235
raise ValueError("These profiles are set to be applied but are missing in the profiles "
236
- "data: " + str(missings))
+ "data: " + str(missing))
237
isna = applied_profiles.isnull()
238
is_not_na_pos = np.arange(len(isna), dtype=int)[~isna.values]
239
relative_profiles_vals[:, is_not_na_pos] = \
0 commit comments