Dear Forum,
I really enjoyed the course so far. Inspired by the “Practice Lab: Neural Networks for Handwritten Digit Recognition, Multiclass (C2_W2_Assignment)” I would like to apply its concepts in real life and have two questions:
- Is it possible to get a neural network to accept more than one array as its input variables e.g. an array and a feature which itself is also an array?
To give a little background to what I am trying to accomplish:
I would like to recognize abnormal time-domain waveforms from a collection of many waveforms and classify them as either pass or fail.
As the main input I have a time series, which represents a waveform X_1 captured on an oscilloscope. This could be represented as a numpy array as is the case in the Practice Lab. Secondly, I would like to include feature X_2, itself a time series which has an influence on every X_1.
Is the neural network in the Practice Lab the right approach for this use case or do I need to learn more advanced concepts?
- How can I combine both scalar(e.g. boolean) and vector(array) features for classification using a neural network?
Thank you all in advance.