Replies: 1 comment
-
It is indeed possible to swap out the recognition model while keeping the detection model. When using the CLI, the models for different tasks can be specified using the The basic process would be:
In order for the model to work, the "API" of the model (input shape, output shape and pre/post-processing) needs to be the same. This is where you'll run into issues if you try to take an ONNX model from some unrelated project and try to use it today, as those projects probably do different preprocessing. As long as the API of another project's models is not too different than how the current models work, I think it should be possible to add some flexibility to this project so you could use them though. |
Beta Was this translation helpful? Give feedback.
-
Hello, this is a great repository for OCR project. But I find this project now only recognizes English characters, but now I target french text, which is very poor with current recogniton model, maybe. So I consider if it is possible to introduce ONNX model for recognition tasks, detection is the same?
Beta Was this translation helpful? Give feedback.
All reactions