摘要:
首先看下量化: 我们对a1的量化称为激活量化,那么采用非对称量化的话,参考下面公式: Asymmetric Quantization During the training we optimize the input_low and input_range parameters using grad 阅读全文
摘要:
python中import的几种方式: 1. import math import os, math, sys 2. import math as pymath 3. from math import exp 4. from math import * 在理解import原理之前,需要明白pytho 阅读全文