Skip to content

Commit

Permalink
chore: update cifar training readme + accuracy eval (#572)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrery authored Apr 3, 2024
1 parent 00dcfc8 commit 5306f6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion use_case_examples/cifar/cifar_brevitas_training/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Here, an image from the CIFAR10 data-set is randomly chosen and preprocessed. Th

## Hardware Used for the Experiment

Experiments were conducted on an m6i.metal machine offering 128 CPU cores and 512GB of memory. The choice of hardware can significantly influence the execution time and performance of the model.
Experiments were conducted on an m6i.metal machine offering 128 CPU cores and 512GB of memory. The choice of hardware can significantly influence the execution time of the model.

## Accuracy and performance

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,9 @@ def main(args):
input_set,
n_bits={"model_inputs": 8, "model_outputs": 8},
configuration=cfg,
rounding_threshold_bits=rounding_threshold_bits,
rounding_threshold_bits={"n_bits": rounding_threshold_bits, "method": "EXACT"}
if rounding_threshold_bits is not None
else None,
)

# Print max bit-width in the circuit
Expand Down

0 comments on commit 5306f6c

Please sign in to comment.