enrique a
enrique a
It is possibly caused by the EarlyStopping https://keras.io/callbacks/#earlystopping. Try to run it commenting the line ```python early_stopping = EarlyStopping(monitor='val_acc', patience=20) ``` And removing it from the callbacks ```python callbacks_list =...
Try to create example_files with `codecs`. Add ```python import codecs ``` The modify ```python examples_file = open(examples, "w") ``` For ```python examples_file = codecs.open(examples, 'w', encoding='utf8') ``` And leave the...
Hello. I don't think so, it should be the other way around. The input is a series of words and the output is a single word, i.e. the one that...
You mean something like zoom in?
You may resize the (PIL) image right before putting it in the main panel. Around line 173: `self.img = self.img.resize((self.img.size[0]*2, self.img.size[1]*2), Image.ANTIALIAS)` This will mess with coordinates of bounding boxes...