You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
expr.startswith("experiment_") checks if the experiment name starts with "experiment_".
The other two conditions check if the suffix is a valid digit in correct range.
If any of those checks fail due to mismatch or an exception the boolean flag is set to false.
Maybe regex can make it a bit slim. Something like ^experiment_[0-9]+$. Caution : verify the expression before using it and set bounds for maximum experiments properly.
Right now we are checking the number of experiments in an utterly obscure fashion namely through:
It is completely impossible to know what is going on there...
The text was updated successfully, but these errors were encountered: