Skip to content

Commit

Permalink
Fix perf_sigmoid_fitter.py after architecture change.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sopel97 committed May 18, 2021
1 parent 0892fa8 commit d1fcd44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion perf_sigmoid_fitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def gather_statistics_from_batches(batches, bucket_size):
data = dict()
i = 0
for batch in batches:
us, them, white, black, outcome, score = batch
us, them, white_indices, white_values, black_indices, black_values, outcome, score, psqt_indices, layer_stack_indices = batch
batch_size = len(us)
bucket = torch.round(score / bucket_size) * bucket_size
perf = outcome
Expand Down

0 comments on commit d1fcd44

Please sign in to comment.