I have implemented a network in C++ using the CPU and I am trying to train it using the GPU together with python. The problem I face is that the input is very large (and sparse) with about 50000 input neurons where usually only 30 are activated.
My model looks like this:
__________________________________________________________________________________________________
Layer (type) Output Shape Param # Connected to
==================================================================================================
input_1 (InputLayer) (None, 24576) 0
__________________________________________________________________________________________________
input_2 (InputLayer) (None, 24576) 0
__________________________________________________________________________________________________
dense_1 (Dense) (None, 256) 6291712 input_1[0][0]
__________________________________________________________________________________________________
dense_2 (Dense) (None, 256) 6291712 input_2[0][0]
__________________________________________________________________________________________________
leaky_re_lu_1 (LeakyReLU) (None, 256) 0 dense_1[0][0]
__________________________________________________________________________________________________
leaky_re_lu_2 (LeakyReLU) (None, 256) 0 dense_2[0][0]
__________________________________________________________________________________________________
concatenate_1 (Concatenate) (None, 512) 0 leaky_re_lu_1[0][0]
leaky_re_lu_2[0][0]
__________________________________________________________________________________________________
dense_3 (Dense) (None, 32) 16416 concatenate_1[0][0]
__________________________________________________________________________________________________
leaky_re_lu_3 (LeakyReLU) (None, 32) 0 dense_3[0][0]
__________________________________________________________________________________________________
dense_4 (Dense) (None, 32) 1056 leaky_re_lu_3[0][0]
__________________________________________________________________________________________________
leaky_re_lu_4 (LeakyReLU) (None, 32) 0 dense_4[0][0]
__________________________________________________________________________________________________
dense_5 (Dense) (None, 1) 33 leaky_re_lu_4[0][0]
==================================================================================================
Total params: 12,600,929
Trainable params: 12,600,929
Non-trainable params: 0
I also got about 300 million input/output values I am trying to feed into my network. Needless to say, the data is way too much to fit onto my GPU all at once.
For speed purpose, I generate sparse matrices each which represent about 100000 inputs and saved them in memory (about 50Gb). I can easily load them without losing much speed like this:
# loads both the inputs and the output for the given chunk (100000 inputs/outputs) from the memory
trainX1,trainX2,trainY = readNumpyChunkAndCreateInput(chunk)
I use this to train my network like this:
for chunk in chunks:
trainX1,trainX2,trainY = readNumpyChunkAndCreateInput(chunk)
_res = model.fit([trainX1,trainX2], trainY, epochs=1,steps_per_epoch=1,verbose=0)
loss = list(_res.history.values())[0]
totalLoss += loss[0]
Clearly this is not optimal by any means. I know that there is something called data generators in Keras/TensorFlow but sadly I do not know how to use them for my specific case because all tutorials deal with dense inputs.
I am very happy if someone could help me out here!
Greetings, Finn
Edit 1
The way I load the data:
filePath = os.path.abspath(os.path.dirname(sys.argv[0]))
path = filePath + "\\data\\" + name + "\\"
indices1 = np.load(path + 'indices1.npy')
indices2 = np.load(path + 'indices2.npy')
outputs = np.load(path + 'outputs.npy')
meta = open(path + 'meta.txt', "r")
metaInf = meta.readlines()[0].split(" ")
meta.close()
entry1Count = int(metaInf[0])
entry2Count = int(metaInf[1])
lineCount = int(metaInf[2])
values1 = tf.ones(entry1Count)
values2 = tf.ones(entry2Count)
shape = (lineCount, 6 * 64 * 64)
trainX1 = tf.SparseTensor(
indices=indices1,
values=values1,
dense_shape=shape
)
trainX2 = tf.SparseTensor(
indices=indices2,
values=values2,
dense_shape=shape
)
return trainX1, trainX2, outputs