We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5957038 commit 6c0f9f0Copy full SHA for 6c0f9f0
rocketsled/examples/batch.py
@@ -127,7 +127,7 @@ def wf_creator_rosenbrock(x):
127
# A batch will only run once rocketsled has seen at
128
# least batch_size samples. Every batch_size new
129
# evaluations will lead to another batch optimization.
130
- for bs in range(batch_size):
+ for _ in range(batch_size):
131
launchpad.add_wf(
132
wf_creator_rosenbrock(
133
[np.random.uniform(-5, 5), np.random.uniform(-5, 5)]
0 commit comments