I'm using Keras with the LSTM to make a neural network . The network doesn't predict that well and i want to help it by adding some starting weights.
For exemple I want to add some starting weight to col4 so that the neural network knows that col4 is 3 times more important that col2 and col3 for predicting col_y
timestamp, col_y, co2, col3, col4
9-1-2019 00:00, 136228, 4.9, 19, 0
9-1-2019 01:00, 123012, 4.7, 17, 0
9-1-2019 02:00, 117309, 4.6, 23, 0
9-1-2019 03:00, 114310, 4.5, 12, 0
9-1-2019 04:00, 114096, 4.3, 5, 0
9-1-2019 05:00, 119260, 4.1, 2, 0
9-1-2019 06:00, 136643, 3.9, 13, 5
9-1-2019 07:00, 177303, 3.7, 23, 11
9-1-2019 08:00, 187407, 3.7, 5, 17
9-1-2019 09:00, 173752, 4.0, 7, 55