Skip to content

Commit

Permalink
Fixing 14b -> 13b
Browse files Browse the repository at this point in the history
  • Loading branch information
i-colbert committed Sep 14, 2023
1 parent 1789bee commit 3e0dfec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/brevitas_examples/super_resolution/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Note that this is a difference from many academic works that train only on the Y
||
| [quant_espcn_x2_w4a4_base]() | x2 | int4 | (u)int4 | 30.30 |
| [quant_espcn_x2_w4a4_a2q_32b]() | x2 | int4 | (u)int4 | 30.27 |
| [quant_espcn_x2_w4a4_a2q_14b]() | x2 | int4 | (u)int4 | 30.24 |
| [quant_espcn_x2_w4a4_a2q_13b]() | x2 | int4 | (u)int4 | 30.24 |


## Train
Expand Down
4 changes: 2 additions & 2 deletions src/brevitas_examples/super_resolution/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@
weight_bit_width=4,
act_bit_width=4,
acc_bit_width=32),
'quant_espcn_x2_w4a4_a2q_14b':
'quant_espcn_x2_w4a4_a2q_13b':
partial(
quant_espcn_a2q,
upscale_factor=2,
weight_bit_width=4,
act_bit_width=4,
acc_bit_width=14)}
acc_bit_width=13)}

root_url = 'https://github.com/Xilinx/brevitas/releases/download/super_res-r0'

Expand Down

0 comments on commit 3e0dfec

Please sign in to comment.