Hi @reinier, I think that the main challenge isn't necessarily time series forecasting but rather predictive modeling using the sensor readings.
From your problem description, I’m assuming your data looks something like this:
Date | sensor a | sensor b | sensor c | y
Given this setup, I think you're correct in using sensors a, b, and c to predict the values of sensor y. If the date feature doesn’t play a critical role in the changes of sensor readings, it might be best to not add it to the predictive model, but rather use it to keep the data organized.
Date 1: (a1, b1, c1) -> y1
Date 2: (a2, b2, c2) -> y2
Date 3: (a3, b3, c3) -> y3
TimeGPT and the rest of our models are for solving time series forecasting problems, and in your case, I think what is needed is some kind of ML algorithm for prediction. Thinking about the simplest model, something like this:
yhat = alpha*a + beta*b + gamma*c + error
Here the coefficients alpha, beta and gamma can be estimated using the historical values (I don’t think a linear model will be enough, but just to give you an example)