Posts by caiokameda • 1 point
2 posts
-
0
votes1
answer80
viewsA: Keras is using the entire batch at once in the fit_generator in a 3 output model
Solved I changed the following Googlenet_batchfromfilesmixin code(): elif self.class_mode == 'raw': batch_y = self.labels[index_array] for elif self.class_mode == 'raw': batch_y =…
-
-1
votes1
answer80
viewsQ: Keras is using the entire batch at once in the fit_generator in a 3 output model
Good morning, I’m using the model available in this Git Googlenet in Keras for transfer Learning and I’m trying to adapt the fit_generator of Keras to use in the model. As can be seen in the link,…