Bartzi / see

Code for the AAAI 2018 publication "SEE: Towards Semi-Supervised End-to-End Scene Text Recognition"
GNU General Public License v3.0
573 stars 147 forks source link

saved model #62

Open un-lock-me opened 5 years ago

un-lock-me commented 5 years ago

Thanks for sharing your code with us. Could you also share your saved model?

Bartzi commented 5 years ago

I already shared the model, please have a look at this website, and also read the correspinding section of the README :wink:

harshalcse commented 5 years ago

@Bartzi Can we build model for CAPITAL ALPHANUMERIC Character string recognition ?

Bartzi commented 5 years ago

Sure :wink: Just find the necesary training data and use create a new char_map only with the ascii codes for captial alphanumerics. Train and enjoy, yhis should be it...

harshalcse commented 5 years ago

@Bartzi so what is preriqusite of dataset preparation like image resolution and image size and image quality...

Bartzi commented 5 years ago

Hi,

good question. I never really cared about image resolution or quality, I mean the text should be readable, but that is about it. All samples that you put into the network will be resized to200x64 pixels (see here), regardless of their original aspect ratio.

So, you will need samples that only contain the already cropped text line and a ground truth file together with the samples. You can find a sample ground truth here.

harshalcse commented 5 years ago

@Bartzi Is it required to create Dataset with bounding box file that is digitStruct.mat as it is there is SVHN dataset and if it is yes that how we can generate it ?

Please help.

Bartzi commented 5 years ago

No, there is no need for bounding boxes! This is the point of the paper, you only need an image and the textual content as annotation. The README and the website I pointed you to should contai all information you need.

harshalcse commented 5 years ago

No, there is no need for bounding boxes! This is the point of the paper, you only need an image and the textual content as annotation. The README and the website I pointed you to should contai all information you need.

@Bartzi Sir, I am asking for retraining and fine-tuning. Please help.

Bartzi commented 5 years ago

I'm sorry but I don't see your problem. If you want to retrain, or finetune, you just have to prepare everything as if you'd like to train the model from scratch, but you can just use an earlier snapshot as a starting point.

harshalcse commented 5 years ago

@Bartzi Sir the trained model provided is trained on which dataset please suggest and also please suggest using which .py file that model is trained.