Open NeighborhoodCoding opened 4 years ago
Hello. Did you find the solution? I am having the same problem with COCO-text dataset
@SungmanHong @ahsan44411 im having the same pronlem with COCO Dataset. Found any possible fix?
try this
if tf.config.list_physical_devices('GPU'):
physical_devices = tf.config.list_physical_devices('GPU')
tf.config.experimental.set_memory_growth(physical_devices[0], enable=True)
tf.config.experimental.set_virtual_device_configuration(physical_devices[0], [tf.config.experimental.VirtualDeviceConfiguration(memory_limit=3072)])
Hi, I'm following your tutorial https://keras-ocr.readthedocs.io/en/latest/examples/end_to_end_training.html and my step is training the recognizer with no Pre-trained weight. Also I changed recognizer alphabet to non latin characters
However, In the recognizer train step, I got a ZeroDivisionError: division by zero. I think... Train image generator? has no label or no image? If you please, for other non-latin trainers of the future, can you explain what is this error?? Thanks in advance.