fix doc of quant demo (#1865)
* fix doc of quant demo * fix doc of quant demo
This commit is contained in:
parent
a4fa186010
commit
c9f745e250
|
@ -42,7 +42,7 @@ python deploy/slim/quantization/quant.py -c configs/det/det_mv3_db.yml -o Global
|
||||||
# 比如下载提供的训练模型
|
# 比如下载提供的训练模型
|
||||||
wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_train.tar
|
wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_train.tar
|
||||||
tar -xf ch_ppocr_mobile_v2.0_det_train.tar
|
tar -xf ch_ppocr_mobile_v2.0_det_train.tar
|
||||||
python deploy/slim/quantization/quant.py -c configs/det/det_mv3_db.yml -o Global.pretrain_weights=./ch_ppocr_mobile_v2.0_det_train/best_accuracy Global.save_model_dir=./output/quant_model
|
python deploy/slim/quantization/quant.py -c configs/det/det_mv3_db.yml -o Global.pretrain_weights=./ch_ppocr_mobile_v2.0_det_train/best_accuracy Global.save_inference_dir=./output/quant_inference_model
|
||||||
|
|
||||||
```
|
```
|
||||||
如果要训练识别模型的量化,修改配置文件和加载的模型参数即可。
|
如果要训练识别模型的量化,修改配置文件和加载的模型参数即可。
|
||||||
|
|
|
@ -58,7 +58,7 @@ python deploy/slim/quantization/quant.py -c configs/det/det_mv3_db.yml -o Global
|
||||||
After getting the model after pruning and finetuning we, can export it as inference_model for predictive deployment:
|
After getting the model after pruning and finetuning we, can export it as inference_model for predictive deployment:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
python deploy/slim/quantization/export_model.py -c configs/det/det_mv3_db.yml -o Global.checkpoints=output/quant_model/best_accuracy Global.save_model_dir=./output/quant_inference_model
|
python deploy/slim/quantization/export_model.py -c configs/det/det_mv3_db.yml -o Global.checkpoints=output/quant_model/best_accuracy Global.save_inference_dir=./output/quant_inference_model
|
||||||
```
|
```
|
||||||
|
|
||||||
### 5. Deploy
|
### 5. Deploy
|
||||||
|
|
Loading…
Reference in New Issue