Submitted by Steve_Sizzou t3_zasxg5 in MachineLearning
Is it correct that with a sufficiently large - in terms of layers and nodes - neural network, that when trained, the network kind of performs feature engineering? I know that would not be formally how to describe it, but does a neural network find interesting patterns in the data that are kind of like features that are maybe even difficult to describe? Here's an example to describe what I'm getting at.
just say I'm trying to predict what picture a person is looking at based upon their brain activity, which I measure with EEG as a time series, across 128 electrodes. with a neural network can I just feed in the raw time series voltage recordings, and that will take case of discerning any valuable features, or should I also create a bunch of feature from the data - like mean, std. dev, median, entropy etc?
Thanks!
michelin_chalupa t1_iynu2rx wrote
Some of those additional features are going to be correlated, or otherwise implicit. I think the most basic thing you’d want to do is some smoothing.
Maybe even try DFT representations, depending on how your signals behave (not familiar with EEG data myself).