Skip to content

Commit

Permalink
Merge pull request #377 from mlcommons/fix_rcp_stdev
Browse files Browse the repository at this point in the history
Calculate Stdev without olympic pruning
  • Loading branch information
hiwotadese authored Aug 29, 2024
2 parents 369260b + 52245a0 commit 7f581e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlperf_logging/rcp_checker/rcp_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def compute_rcp_stats(self):
epoch_list.sort()
samples_rejected = 4 if record_contents['Benchmark'] == 'unet3d' else 1
record_contents['RCP Mean'] = np.mean(epoch_list[samples_rejected:len(epoch_list)-samples_rejected])
record_contents['RCP Stdev'] = np.std(epoch_list[samples_rejected:len(epoch_list)-samples_rejected])
record_contents['RCP Stdev'] = np.std(epoch_list)
min_epochs = self._find_min_acceptable_mean(
record_contents['RCP Mean'],
record_contents['RCP Stdev'],
Expand Down

0 comments on commit 7f581e3

Please sign in to comment.