How to ensemble the results from joint-PoseConv3D and limb-PoseConv3D?
I have a question about how to get the result of PoseConv3D (J + L) ? How to ensemble to get the result of two-stream ?
Hi, @icost77 , To ensemble to two streams, you need to first save the inference result (.pkl files that include the predicted probabilities for every action class and all videos). Then you should do a weighted average to combine the two result file to get the ensembles probabilities. We use the most simple 1: 1 weighted average.
Hi, @icost77 , To ensemble to two streams, you need to first save the inference result (.pkl files that include the predicted probabilities for every action class and all videos). Then you should do a weighted average to combine the two result file to get the ensembles probabilities. We use the most simple 1: 1 weighted average.
What weighs do you use for combing joint, bone, joint motion and bone motion?