You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to predict a target variabile using a tcn model based on time series.
Now i follow your code of milk production but i need to consider in the X array all the features of my dataset as predictors, instead on the y i need only one features, my target.
how can i solve this?
Furthermore i have indeed two separated dataset, one for train and one for test, so i need to create from they my couple of x and y train, and x and y test.
I'm struggle on this. Thank you very much
The text was updated successfully, but these errors were encountered:
The TCN layer input/output work exactly like an LSTM. If your X is multivariable and your Y univariate, you're looking at a Many-To-One regression problem. You can google "Keras LSTM many to one regression". And in any tutorial you can swap the LSTM class by the TCN class and it should work seamlessly.
I need to predict a target variabile using a tcn model based on time series.
Now i follow your code of milk production but i need to consider in the X array all the features of my dataset as predictors, instead on the y i need only one features, my target.
how can i solve this?
Furthermore i have indeed two separated dataset, one for train and one for test, so i need to create from they my couple of x and y train, and x and y test.
I'm struggle on this. Thank you very much
The text was updated successfully, but these errors were encountered: