Submitted by AutoModerator t3_100mjlp in MachineLearning
I-am_Sleepy t1_j49d3mv wrote
Reply to comment by JobPsychological5509 in [D] Simple Questions Thread by AutoModerator
FYI, using output from first stage model is called model stacking
Are you trying to model time series classification (many-to-one)? I don't know if making it a 2 stage model is appropriate i.e. using 0 and 1 as an intermediate representation
The hierarchical classification error will propagate through multiple stage if using raw prediction from previous stage alone. For example, if first stage model is 0.9 in accuracy, and second stage is also 0.9. The maximal accuracy two stage model will be 0.9*0.9 = 0.81 (performance degrade)
JobPsychological5509 t1_j4hjk93 wrote
Thanks. Time series classification is what I was looking for.
Thanks for letting me know about model stacking, I have never done it but will try and see which fits the best.
Cheers!
Viewing a single comment thread. View all comments