On Thursday, 2 June 2016 16:03:03 BST Hiro Hamada wrote:
> Hello everyone, how can I make my own dataset for use in Keras? (I have
> 48000 sign language images of 32x32 px )
Keras doesn't have any specific file formats, model.fit takes a (num_samples,
num_channels, width, height) numpy array for images in convolutional layers,
or just a (num_samples, num_features) array for non-convolutional layers.
So you just need to convert your data to a 4-dimensional numpy array, store it
(with pickle, numpy.save, HDF5), and load it back when you train.
The same applies for labels.