I am new to ML, and I have a dataset:
Where:
X = {X_1, X_2, X_3, X_4, X_5, X_6, X_7};
Y = Y;
I'm trying to find the possible relationship between X and Y like Y = M(X) using Deep Learning. To my knowledge, this is a regression task since the data type of my target Y is real.
I have tried some regression algorithms like LMS and Stepwise regression but none of those gives me a promising result. So I'm turning into the deep neural network solution, so:
- Can ANN do this regression task?
- How to design the network, especially the type of layers, activation function, etc.?
- Is there some existing NN architecture I can refer to?
Any help is appreciated.