Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Fix bug in how noise scale is computed #2

Merged
merged 1 commit into from Aug 9, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion fisher_experiment.py
Expand Up @@ -135,7 +135,7 @@ def main(args):
stds = []
for eta in args.etas:
# Compute the Gaussian noise scale needed for eta:
scale = eta * etamax
scale = etamax / eta
# Measure test accuracy:
accuracy, std = compute_accuracy(
model, test_data, noise_scale=scale, trials=args.trials,
Expand Down