Closed beckstev closed 5 years ago
I am not sure if our RAM can handle ~15K images at once. So maybe we need a Dataloader which loads all images on the fly.
Check this out:
https://stanford.edu/~shervine/blog/keras-how-to-generate-data-on-the-fly
In der ___datageneration-Methode müssen wir np.genfromtxt oder das äquivalent von Pandas nutzen, da man mit np.load keine csv Dateien laden kann.
We can use pandas.read_csv('path_to_file') .
pandas.read_csv('path_to_file')
Implemented
I am not sure if our RAM can handle ~15K images at once. So maybe we need a Dataloader which loads all images on the fly.
Check this out:
https://stanford.edu/~shervine/blog/keras-how-to-generate-data-on-the-fly