SAMPLE DATASET:
A1 A2 B1 B2 C1 C2
2 4 5 6 7 3
4 6 7 3 0 1
3 4 5 3 2 8
What if I want to import the dataset in the form of (2, 3) where The number accompanying the letter is one dimension and the letters are part of the same 'channel' are the other so that each row will be reconstructed into a batch like:
1 2 1 2 1 2
A 2 4 A 4 6 A 3 4
B 5 6 B 7 3 B 5 3
C 7 3 , C 0 1 , C 2 8
Each row will turn into a batch making turning it into a (3,2,3) array. I am not melting them togheter becuase I want to keep each row as its own batch.
I am workign with eeg data. Each row is a batch.
My idea is to grab the specific number of columns in each row but I am not sure how to do this I am not very experienced with working with CSV data.