启动一个cmd 命令行;
D:\devware\Anaconda3\Scripts\activate.bat "D:\devware\Anaconda3"# 或者使用 “Anaconda Prompt”, 但是由于某些原因(重装系统,重置电脑) Anaconda Prompt 在开始菜单可能会无法找到,所以 active 这个方式非常可靠。# 此时会提示 base xxx ,例如: "(base) D:\devware\Anaconda3\Scripts";# 切换到包含 .ipynb 文件的文件夹cd /ipynb_dir
jupyter lab
# 观察控制台输出,有类似[Or copy and paste one of these URLs:http://localhost:8888/?token=6e05bfebfa823fb8a0fc4df34e4731e81fe5776000d871c1or http://127.0.0.1:8888/?token=6e05bfebfa823fb8a0fc4df34e4731e81fe5776000d871c1]# 访问其中任意一个地址即可(电脑如果配置了默认浏览器,会自动打开链接的)
纯 python 环境使用 jupyter-notebook
启动一个cmd 命令行;
pip install jupyter
jupyter notebook # 直接启动 jupyter-notebook# 控制台也会有类似输出:[Or copy and paste one of these URLs:http://localhost:8888/?token=6e05bfebfa823fb8a0fc4df34e4731e81fe5776000d871c1or http://127.0.0.1:8888/?token=6e05bfebfa823fb8a0fc4df34e4731e81fe5776000d871c1]
纯 python 环境使用 jupyter-lab
启动一个cmd 命令行;
pip install jupyterlab
jupyter lab # 直接启动 jupyter-notebook# 控制台也会有类似输出:[Or copy and paste one of these URLs:http://localhost:8888/?token=6e05bfebfa823fb8a0fc4df34e4731e81fe5776000d871c1or http://127.0.0.1:8888/?token=6e05bfebfa823fb8a0fc4df34e4731e81fe5776000d871c1]
KL散度量化
前面介绍的非对称量化中,是将数据中的min值和max值直接映射到[-128, 127]。 同样的,前面介绍的对称量化是将数据的最大绝对值 ∣ m a x ∣ |max| ∣max∣直接映射到127。 上面两种直接映射的方法比较粗暴,而TensorRT中的int8量化…