自动摘要: |时间|对应版本号|修订人|主要修订内容| ||||| ||V1.0.0|[@SindreYang( ……..
时间 | 对应版本号 | 修订人 | 主要修订内容 |
---|---|---|---|
V1.0.0 | @Sindre Yang(sindre) | 基于flask在线部署 |
V1.0.0
背景:
- 基于Flask;
目录结构:
model—>模型文件目录infer.py—>接口文件dockerfile—>docker生成脚本文件
步骤:
构建框架
1
docker build -t ocr .
运行
1
2
3#{DATA_DIR}=/home/sindre/ocr
docker run --gpus all --shm-size=8g -it -p 8888:8888 -v {DATA_DIR}:/mmocr/ocr --name ocr ocr
docker run --gpus all --shm-size=8g -it -p 8888:8888 -v /home/sindre/ocr:/mmocr/ --name ocr ocr
-
参数
preprocess
1 | def preprocess(img_path) |
功能:对图片进行处理
img_path:图片路径
1
inference
1 | def inference(, model) |
功能:将处理后的输出进行推理
X:转换后的数据
model:对应模型路径
1
postprocess
1 | def postprocess(): |
功能: 用Flask进行post定义
1