CRNN-Keras icon indicating copy to clipboard operation
CRNN-Keras copied to clipboard

very bad result in the real-plate images

Open ghost opened this issue 6 years ago • 3 comments

Hi, I've trained the VGG-GRU network for around 700k artificially generated images, and i got 96% accuracy for test data (about 140k generated image), but when i test the trained the model on real-images , the results are very bad, why ?

ghost avatar Feb 16 '19 13:02 ghost

Due to overfitting, it is no wonder that it does not work properly in real images.

so, I recommend pre-training with synthetic images and fine-tune with real data.

qjadud1994 avatar Feb 20 '19 06:02 qjadud1994

@qjadud1994 How would you recommend fine-tuning, should we use differential learning rates, i.e. lower lr for CNN and higher for RNN? Or a global lower learning rate like 1e-3 or smaller? Or because it's using Adadelta, this is not required at all, and we can use default lr(1.0)? @mzeynali did you get it working?

danishansari avatar Mar 04 '19 07:03 danishansari

@qjadud1994, Because I used Early Stopping callback, in my opinion, Should not happen the overfitting problem, right?

PythonImageDeveloper avatar Mar 04 '19 09:03 PythonImageDeveloper