Data Loading in CSV

I want to load a CSV file which has my training samples(25000) and there are 6 vectors for each sample.

How shall I write my data loader class for this as normal CSV loaders treat each line as single feature vector?

This thread might be helpful.
You could load it with pandas or as @rasbt suggested load it as a HDF5 file.

1 Like