-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -183,6 +183,11 @@ x = Dense(32)(x) | |
x = Relu()(x) | ||
~~~ | ||
|
||
## Tips - improving accuracy | ||
- Attaching an BatchNormalization after each convolutional layer limit the activation range thus help quantisation. BN add no extra computation in NNoM. | ||
- Dont train too much epoch. Large epoch number increases extreme number in activation -> lower the quantisation resolution. | ||
- Leave enough data for bottleneck - do not compress data at before the output of a model, infomation will be lost when it is quantised. | ||
|
||
## Contacts | ||
Jianjia Ma | ||
[email protected] | ||
|