Skip to content

Commit 880ade0

Browse files
committed
black
1 parent c7416c6 commit 880ade0

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

colibri/monte_carlo_fit.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ def monte_carlo_fit(
2727
optimizer_provider,
2828
early_stopper,
2929
max_epochs,
30+
data_batches,
3031
batch_size=None,
3132
batch_seed=1,
3233
record_parameters=False,
3334
record_every=50,
34-
data_batches,
3535
):
3636
"""
3737
This function performs a Monte Carlo fit.
@@ -121,7 +121,14 @@ def loss_validation(parameters):
121121
)
122122

123123

124-
def run_monte_carlo_fit(monte_carlo_fit, forward_map, output_path, replica_index, Q0, record_parameters=False):
124+
def run_monte_carlo_fit(
125+
monte_carlo_fit,
126+
forward_map,
127+
output_path,
128+
replica_index,
129+
Q0,
130+
record_parameters=False,
131+
):
125132
"""
126133
Runs the Monte Carlo fit and writes the output to the output directory.
127134

0 commit comments

Comments
 (0)