Multiple timeseries for same id feature selection #840
-
Dear All, your guidance will be highly appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @harvetech ! You mentioned regression in your question but I am not 100% sure I understand where the regression comes into the game. If this is the case, I would do the following: extract features for each of time series (you could just enumerate them, so you choose an artificial Id which is not the machine ID). Then maybe add some additional machine features to each set of extracted time series features and give them to the selection. Remember: what you put into the selection needs to have the same length as your ground truth labels. |
Beta Was this translation helpful? Give feedback.
Hi @harvetech !
You mentioned regression in your question but I am not 100% sure I understand where the regression comes into the game.
As I have understood your use-case, you have multiple time series (e.g. one time series per day) for each machine (which has a ID). For each time series you have a ground truth label if the machine is broken or not (e.g. a bool per day).
If this is the case, I would do the following: extract features for each of time series (you could just enumerate them, so you choose an artificial Id which is not the machine ID). Then maybe add some additional machine features to each set of extracted time series features and give them to the selection.
Remember: what y…