Juncai
Juncai
你看下使用的是那个loss api,参考官方api的说明检查一下输入类型是否匹配。
可以做,需要自己标注数据,然后使用paddleseg进行训练。
最近paddleocr开源了表格文字提取的功能,你可以取看看,说不定可以直接使用。 https://github.com/PaddlePaddle/PaddleOCR https://github.com/PaddlePaddle/PaddleOCR/tree/release/2.6/ppstructure
我们在持续改进,目前暂时还只能做到这种程度,需要人工再筛查一下不好的图像。
导出预测模型后,可以参考seg的c++部署文档进行部署。
1. mean_acc是等同于OA 2. PaddleSeg中计算的mIoU和mAcc方法等同于使用混淆矩阵计算
标注的样本标签必须从0开始增加,如果有两类,必须是0和1,不可以是0和2
The tutorial shows the training on cityscapes dataset. If you want to train the model on other dataset, you need to read and modify the code by yourself.
You only need to change the code under DomainAdaptation for using DA on your custom dataset.