I have data with columns A, B, C as inputs and columns D, E, F, G as outputs. The table has a shape (1000,7). I would like to train the model, validate and test it.
My data:
A = [100, 120, 140, 160, 180, 200, 220, 240, 260, 280];
B = [300, 320, 340, 360, 380, 400, 420, 440, 460, 480];
C = [500, 520, 540, 560, 580, 600, 620, 640, 660, 680];
My desired outcome:
For each combination of A, B, C --> I get D, E, F, G as outputs (for example):
D = 2.846485609
E = 5.06656901
F = 3.255358183
G = 5.464482379)
Also, for each different combination of A, B, C; I have a different set of outputs (D, E, F, G).
My Question: Is it possible to train a neural network, using this experienced network to predict new values of D, E, F, G; for new combination of A, B, C?