Bvicii
Bvicii
你好,请问这个权重经过了多少轮的预训练?谢谢
> > 你好,请问这个权重经过了多少轮的预训练?谢谢 > > 您好,由于年代久远,我只能猜测当时应该使用了 https://github.com/cfzd/Ultra-Fast-Lane-Detection/tree/353df107756b8c03c22c27201e33fc63d84ecfe6/configs 中的默认训练设置。 谢谢您及时的回复,使用res34进行验证后发现效果与论文内相似,应该是默认训练设置中的50轮
请问在容器启动后运行paddle相关程序时会出现报错吗?
I believe this issue has been resolved in [PR #75731](https://github.com/PaddlePaddle/Paddle/pull/75731). I recommend installing the latest nightly build of PaddlePaddle and retrying your code. Your feedback would be greatly appreciated.
@KwinyarutP Hi, looking at your PaddlePaddle version, I think you’re still using the latest **released** version. The fix is on the **develop** branch and hasn’t been released yet. You can...
感谢反馈,这个问题我已经提了一个 PR 来修复PaddlePaddle/PaddleX/pull/4731,等合入并发布新版本后应该就不会再出现了。
PaddleOCR-VL 内置了「文档方向分类」子模块,可以检测并返回页面的旋转角度,用于自动纠偏。 在 CLI 中,只需要在命令里加上 `--use_doc_orientation_classify True` 即可启用,例如: ```bash paddleocr doc_parser -i ./paddleocr_vl_demo.png --use_doc_orientation_classify True ``` 如果使用 Python API,可以在实例化时开启该模块: ```python from paddlex import PaddleOCRVL ocr = PaddleOCRVL(use_doc_orientation_classify=True) ``` 启用后,预测结果中的 `doc_preprocessor_res`...
Thanks for your feedback. We’ll look into this issue shortly.
The split comes directly from the way `return_word_box` groups characters. In `ppocr/postprocess/rec_postprocess.py`, `BaseRecLabelDecode.get_word_info` classifies each decoded character: - letters/digits matching `[a-zA-Z0-9]` get the state `"en&num"` - Chinese characters get `"cn"`...
感谢您提供的问题样例反馈,我们会在后续版本中参考该样例优化模型效果。