-
Notifications
You must be signed in to change notification settings - Fork 754
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Numbers are not detect well in psenet_r50_fpnf_600e_icdar2017 #274
Comments
Can you provide the test image to us? We can use it to analyze the issue. |
Hey i will try to train model. I want to finetune the model psenet_r50_fpnf_600e_icdar2017 on 200 images. what you think it's sufficient data for finetune? I have done data preparation https://mmocr.readthedocs.io/en/latest/datasets.html according to this. |
|
Hi @cuhk-hbsun can you tell me that psenet_r50_fpnf_600e_icdar2017 is trained on synthtext or not? Currently i know that first it's trined on icdar2017 then icdar2015 so it's trained in synthtext also? |
Please check out the model zoo page. Each model has its training configs. |
https://mmocr.readthedocs.io/en/latest/textdet_models.html#psenet |
The page should contain the full reproducible information. If not, then we will fix it. |
Hi, i have done the training on my images. I am getting number now but i have one problem of not detecting single or two character word or a small word in images. Can you guide me which parameter i can change to achieve the small text in image. |
One more issue in robust_scanner model it will misclassify / as 1 also if number have .000 then . will classify as C and result we get c000 . Can you tell me how can i make this correct also. |
First thing to try is to check the data. Make sure there are sufficiently large number of high quality training samples for the bad cases |
Hey can you tell me how to convert synthtext dataset for text detection? it is given here https://github.com/open-mmlab/mmocr/blob/main/docs/datasets.md but steps are missing to convert. So how can i trained the psenet on synthtext ? |
@innerlee can you please guide me about synthtext training for text detection part and which config i can use for psenet to train on synthtext. |
|
Psenet is working great in the alphabets but if we consider the float numbers then it will separate numbers by comma (,) or decimal sign( . ) .
Like 1,000,00.00 it will be detect line [ "1" , ",000" , ",00" , "00" ] So it will miss decimal sign or comma sometime. Also it will miss the 1 in 1,000,00.00 so we will only get ,000,00.00 .
Can you tell me how can we resolve this issue?
The text was updated successfully, but these errors were encountered: