Hi,
as input data I am using 20 npz files. Each npz file contains 64 rows with 51 data points.
I want to implement 1D CNN, but I am getting confused what should in_channels be in my case:
layer1 = torch.nn.Conv1d(in_channels, out_channels = 32, kernel_size = 3)
Can someone give me tip here? Thanks!