Wich feature can i use to classify timeseries? #141
Unanswered
muriloasouza
asked this question in
Q&A
Replies: 1 comment
-
As a general guideline, the features depend on the problem at hand; therefore, possessing domain knowledge about the problem and its associated data is particularly important. Based on your description, I recommend exploring features from the statistical set, especially as you are generating new samples for class 1 by scaling the data |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a dataset with
N
timeseries and24
hourly measurements of electricity energy consumption (a single day). So, it is a dataset withN
rows and24
columns. Consider these samples as class0
.I need to generate more
N
rows, multiplying each of those rows of my original dataset by a random reduction factor between 0.1 and 0.9. These new samples are class1
.The problem is to solve this timeseries classification problem. One sample from class
0
that has a low energy consumption pattern, could be missclassified as class1
(since class1
timeseries has the same format/shape as class0
, but with the reduction factor applied). Wich feature could i use to improve my model predicton?I have used the mean value wich improved a bit, but still far from acceptable. Anything else i could try?
Beta Was this translation helpful? Give feedback.
All reactions