docker部署PaddleOCR_paddleocr 镜像,字节跳动历年大数据开发中高级面试题全收录
先自我介绍一下,小编浙江大学毕业,去过华为、字节跳动等大厂,目前阿里P7
深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年最新大数据全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上大数据知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新
如果你需要这些资料,可以添加V获取:vip204888 (备注大数据)
正文
当然也可以用 docker-compose 管理
version: '3'
services:
ocr:
image: paddle-ocr:cpu
restart: always
container_name: ocr
ports:
- 8866:8866
3. 服务配置
镜像运行后,使用 docker exec -it ocr bash 进入容器内进行修改,修改后重新容器即可。
- 文本检测+文本方向分类+文本识别3阶段串联服务(ocr_system)配置文件是deploy/hubserving/ocr_system/params.py,包含模型路径和相关参数,这里使用默认配置即可,如果更换模型需要对应修改配置文件。
- 表格识别服务(structure_table)配置.
#打开配置文件
vim deploy/hubserving/structure_table/params.py
#调整模型文件路径为./inference/ch\_ppstructure\_mobile\_v2.0\_SLANet\_infer/
#调整字典文件路径为./ppocr/utils/dict/table\_structure\_dict\_ch.txt
4. 测试调用
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.14</version>
</dependency>
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
import sun.misc.BASE64Encoder;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.text.ParseException;
public class HttpUtils {
//接口地址
//private static final String apiURL = "http://192.168.0.101:8866/predict/structure\_table";
private static final String apiURL = "http://192.168.0.101:8866/predict/ocr\_system";
public static void main(String[] args) throws ParseException {
JSONArray arry = new JSONArray();
JSONObject param = new JSONObject();
arry.add(fileToBase64("C:\\Users\\Aaron\\Pictures\\2.PNG"));
param.put("images",arry);
String result = HttpUtils.post(apiURL, param.toJSONString());
System.out.println(result);
}
/**
* 调用 API
*/
public static String post(String url, String parameters) {
HttpPost post = new HttpPost(url);
// 建立一个NameValuePair数组,用于存储欲传送的参数
post.addHeader("Content-type","application/json");
post.setHeader("Accept", "application/json");
post.setEntity(new StringEntity(parameters, StandardCharsets.UTF_8));
long startTime = System.currentTimeMillis();
try (CloseableHttpClient httpClient = HttpClients.createDefault()){
HttpResponse response = httpClient.execute(post);
long endTime = System.currentTimeMillis();
int statusCode = response.getStatusLine().getStatusCode();
System.out.println("statusCode:" + statusCode);
System.out.println("调用API 花费时间(单位:秒):" + (endTime - startTime)/1000);
if (statusCode != HttpStatus.SC_OK) {
System.out.println("Method failed:" + response.getStatusLine());
}
String body = EntityUtils.toString(response.getEntity(),"utf-8");
return body;
} catch (IOException e) {
// 网络错误
e.printStackTrace();
}
return "";
}
public static String fileToBase64(String path) {
// 读取图片字节数组
try (InputStream in = Files.newInputStream(Paths.get(path))){
byte[] data = new byte[in.available()];
in.read(data);
// 对字节数组Base64编码
BASE64Encoder encoder = new BASE64Encoder();
return encoder.encode(data);// 返回Base64编码过的字节数组字符串
} catch (IOException e) {
e.printStackTrace();
}
return "";
}
}
5. 遇到的问题
- 报 protobuf 包依赖冲突,后在Dockerfile 文件里后面加了这行,安装个低版本的 protobuf 解决
RUN pip install protobuf==3.20.0 -i https://mirror.baidu.com/pypi/simple
- PaddlePaddle出现“非法指令”或“illegal instruction”
原因:PaddlePaddle使用avx SIMD指令提高cpu执行效率,因此错误的使用二进制发行版可能会导致这种错误,请先判断你的电脑是否支持AVX指令集,再选择性的安装支持AVX指令集的PaddlePaddle还是不支持AVX指令集的PaddlePaddle,或者使用Docker镜像来安装最新版本的PaddlePaddle,Docker镜像中的PaddlePaddle默认支持是支持AVX指令集的,可以提高cpu的执行效率。在启动的时候会检查系统是否支持PaddlePaddle初始化时所需要的资源,从AVX指令集开始检查。
解决:遇到此问题可以先用 lscpu 命令查看docker宿主机是否支持AVX指令集,我是换台服务器解决。
- 容器运行后,调用的时候报了 module ‘numpy’ has no attribute ‘int’. 异常
AttributeError: module 'numpy' has no attribute 'int'.
`np.int` was a deprecated alias for the builtin `int`. To avoid this error in existing code, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
The aliases was originally deprecated in NumPy 1.20; for more details and guidance see the original release note at:
原因:np.int 在 NumPy 1.20 中已弃用,在 NumPy 1.24 中已删除。
解决:将容器中的 /PaddleOCR/deploy/hubserving/ocr_system/module.py
/np.ini 文件中的 np.int 更改为np.int_
具体操作如下:
网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
需要这份系统化的资料的朋友,可以添加V获取:vip204888 (备注大数据)
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
难做到真正的技术提升。**
需要这份系统化的资料的朋友,可以添加V获取:vip204888 (备注大数据)
[外链图片转存中…(img-xT5pjtMe-1713119593162)]
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
更多推荐
所有评论(0)