My data consists of a set of png files with matching text file (same name, differnent extension). The text file is in comma separated format, header and contains only doubles (. as decimal). The number of data rows (13) and columns (50) is fixed.
The code for the text file returns a RaggedTensor, while the model needs a Tensor of shape (13, 50). How can I get that?
My data consists of a set of png files with matching text file (same name, differnent extension). The text file is in comma separated format, header and contains only doubles (. as decimal). The number of data rows (13) and columns (50) is fixed.
The code for the text file returns a
RaggedTensor
, while the model needs aTensor
of shape (13, 50). How can I get that?