I will state my question in a generic way relative to distance time and an object. Let’s say I have a range of distance that occurs once per day. Call it an upper bound and lower bound. This calculation happens once per day but is dynamic in its size, lets call it Y. So size Y can be call it 8ft one day 10ft another and so on. Now let’s say I have an object that moves through this space that is measured in velocity per second, lets call it X. I am trying to understand, measure and predict in how X moves across Y to go beyond the upper and lower bound from a machine learning point of view. Meaning…
My question is feeding machine learning models as a whole. As the greatest potential per day will be the furthest distance X moved from the upper or lower bound. Which will be a single value. Let’s just say on day one, X reached upper bound of Y and went 4 ft past it. 4 is a scalar value but I need to be able to understand how X_ per second is changing relative to equal 4 ft past upper day bound. Over a period of call it 10 years.
I understand there a a bunch of ways to play this. The most obvious is to subtract max distance from upper and lower and map it back in. Then I have a single value repeating 86400 per day relative to a dynamic change of X_ per second. I have played with putting 0 in on all seconds X is within upper and lower bound than repeating the max distance for every second after you breach upper and lower bound. If you simply subtract X_ per second from upper or lower bound and treat this as your independent variable, your quantifying change per second and I need to measure, quantify and predict the max distance past the upper or lower bound.
Does anyone have any insight and or experience with the inconstancy of time to calculations of different lengths. I run into this a lot in dealing in a base layer of time to math to larger time and the relationship of a calculation that can occur at any given second, relative to something that can occur every hour or even day, in how to deal with this from a mathematic point of view, relative to an algorithm within a ML model as a whole ingesting data.
Ive looked at it form the math point of view, a single value representing a day which will repeat statically call it 86400 times relative to a calculation that is dynamic and changing as a different value for 86400 times over a period of call it 5 years. I definitely underhand the mathematical variations in how you can deal with this. I am more curious in how you deal with it in feeding models as a whole in building out features and the advantages or disadvantages of one way or another. I certainly understand try them all and use the most reliable or stable statistical distribution…but maybe someone with more experience has some insight in how to tackle this from a ML algorithm point of view? Thanks.