File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -166,9 +166,9 @@ def test_seed_not_provided():
166166 """
167167 basemath = BaseMathsTest (0.3 , 0.9 , 0.05 , 0.2 )
168168 assert basemath .required_samples == 42
169- # First evaluation to show that the experiment starts inconclusive. Using any number of samples lower than
170- # the total requirement risks losing the 'coin flip' to determine whether we crossed the line (since we don't
171- # control the seed in this test), so we set it to zero to keep the test deterministic
169+ # First evaluation to show that the experiment starts inconclusive. Using a number of samples that's greater than
170+ # zero but less than the total requirement risks losing the 'coin flip' to determine whether we crossed the line
171+ # (since we don't control the seed in this test), so we set it to zero to keep the test deterministic
172172 assert basemath .evaluate_experiment (0 , 0 , 0 , 0 ) == 0
173173 # And now we evaluate with all the samples at once, again deterministic
174174 assert basemath .evaluate_experiment (0 , - 10 , 0 , 50 ) == - 1
You can’t perform that action at this time.
0 commit comments