I want to train a neural network with input of some array and output such as a time series ( 2D matrix):
input = [ a1, a2, ..., an] ====> n = 1,2,...,10
output = [ t1 , t2 , ... , tm ;
f(t1), f(t2), ... , f(tm)] m => 1,2, ..., j j is variable between 500 to 1000]
where n is small (less than 10), and m is varied for each input, It is also large such as time series, f in above output matrix is a function with high nonlinearity.
In other word the output is the solution of ODE with variable step size and input is the parameters of ODE equation.
I want to create an accurate neural network to predict a good output graph by giving a new input parameters. Which types of neural network you suggest.?
Please see the attached figure.
Keyword: Artificial Neural Networks
Deep Learning
Multilayer Perceptron
Convolutional Neural Network
LSTM
NN
CNN