Per a related discussion on the TrainerRoad forum, I am suggesting an altered display to make the comparison more clear, and maybe help correct poor classification along the way.
Below is a full list of the default classes, with the “weekly class” shown below, under the one that the app links. In the TR case, Threshold is selected and shown, but as you can see, it is likely not the right/best comparison. The week shown should probably be Base or Pyramidal, but definitely not Threshold.
Hmm. You have a good point. I have added re-looking at this to the todo list. If anyone has any references to ways of doing this sort of classification please post them on this thread.
Another data point of an issue I noticed today. Did a mini mini accidental sprint in the middle of a Z2 ride, ICU marked it as “Polarized”. Didn’t know it’s that easy to do polarized training
I realize these are probably quite annoying to code right when you get to edge cases.
Ok, help me here please. I am new to Intervals.icu. i have a few newbie questions (Sorry, but i was not sure how to put in meaningful searches to find the answers)
I was looking at the Totals page, and trying to work out what the actuak ratios of each time in zone are that determine whether the classification is Pyrimid, Threshold, Polarized or whatever. Watching the FFT video did not help because that was still talking about days and not time in zone. Also it did not clarify the precise lines between each type. That was the start of this search.
@ David Your post above provide a set or rules, which i can make sense of, so thank you. @Chad_McNeese are these rules consistent with what Amber describes in her excellent video (299 I think), when she described the research and variety of definitions of the various mixes of training zones?
Does this classification apply to the Date range chosen above? I assumed it does because changing teh date range can change the classification. However @The_bandit says it is only the most recent ride (which seems pretty pointless)
I asked (3) because the @niklas post says he saw a ride classified by intervals.icu. I have looked at my rides and see no such classification? How do I see that? (Do I use this same Totals. but simply zone it down to a single day?
Yes it does apply to the whole date range selected. If you click options and turn on “Show watts” and/or “Show HR” the the watts and/or HR numbers shown on the chart are from the zones for the most recent activity in the date range. You zones may well have changed during the time period. Each activity gets its own copy of the zones with time in each zone etc… So the totals are good, it’s just the watts/bpm numbers that reflect the most recent activity.
Hmm. It doesn’t help that there are no “standard” definitions for the training distributions. If your s1 is very much more than s2 are you really doing pyramidal? I could tweak it a bit. Any suggestions?
if (s3 > s2 && s3 > 0.499 * (s2 + s1)) ans = HITT
else if (s3 > s2 && s1 > s2) ans = POLARIZED
else if (s1 > 3.99 * s2 && s1 > 3 * (s2 + s3)) ans = BASE
else if (s1 > 1.4 * s2 && s2 > 1.4 * s3 && (s3 /all) >= 0.05) ans = PYRAMIDAL
else if (s1 < 4 * s2 && s2 > 0.5 * s3) ans = THRESHOLD
else ans = UNIQUE
So for PYRAMIDAL s3 must be at least 5% of the total and each easier zone at least 1.4 x the one below it. Looking at my own data this did convert some threshold classifications into pyramidal, correctly IMO.
Therefore, the aim of the present study is to relate training intensity distribution with performance during a Half-Ironman race in two groups that followed two different training intensity distributions: “polarized” 84.4% / 4.3% / 11.2% distribution and “pyramidal” 77.9% / 18.8% / 3.3% distribution of total training time for zones 1,2 and 3, respectively.
Hey guys,
I found this interesting debate, and I hope you can clarify a question for me that I have on the same issue. I read this thread thoroughly but did not find an answer yet. So please forgive me if I am missing anything. My question is rather simple, and I hope there is a simple question too.
If my overall training of, say, one season is looked at in intervals.icu, will the classification as “Polarized”, “Threshold”, or “HIIT” be based purely on time spent in zones? Or will the classification be based on the actual purpose of my training sessions?
From your shared code @david I cannot tell if it’s time-based or session-based what the classification is relying on.
One example. If I purely do HIIT sessions, I will still accumulate much more time in Zone 1 (because a typical HITT session is much about coasting along until the next hard but short effort) than in Zone 5 or 6. So If I was looking at time spent in zones, my training is likely to look “polarized” when it is actually HIIT only.
I hope you can answer my question, and I wold very much appreciate a rather simple answer to it.
Keep up all the excellent work @david .
As you rightly say, the purpose of a session might be HIIT, eg. 4-10 sets of 30s all out efforts, with 8 minutes rest in between. The goal then might result in 10/10 on the RPE scale, as it is only the 30s efforts that count and not 5/10 (challenging).
Thank you very much @Gerald for clarifying on this. I must admit, that I hoped for another answer, because of from what I understand, the classification should be based on session count, not on time spent in zones. But maybe I get the whole 80/20 idea of Seiler wrong? Please correct me then.
But I do understand that it would take a lot of additional effort to program an algorithm detecting what purpose any training session serves. But maybe that is worth thinking about?