Hi!
Thank you for open-sourcing a powerful solver! I’ve drafted a Genesis implementation of the ComFree solver in this PR: #2625.
I also conducted a comparative experiment between Newton and ComFree on the BeyondMimic task. You can find the full performance report here: WandB Report.
Blue: newton (dt=0.005, decimation=4)
Green: comfree (dt=0.005, decimation=4)
Red: comfree (dt=0.002, decimation=10)
Key Findings:
- Speed: ComFree demonstrates a clear advantage in computation time (when using same dt and decimation steps).
- Performance: Currently, the ComFree-trained model is underperforming compared to Newton (sim2sim cannot be stably performed). I suspect this is due to unoptimized hyperparameters (default stiffness and damping). Decreasing the dt helps improve the performance but it is still worse than Newton.
I will play with the stiffness and damping parameters but do you have any recommendation on how to optimize the solver while keeping the speed advantage over Newton?
Looking forward to your thoughts!
Hi!
Thank you for open-sourcing a powerful solver! I’ve drafted a Genesis implementation of the ComFree solver in this PR: #2625.
I also conducted a comparative experiment between Newton and ComFree on the BeyondMimic task. You can find the full performance report here: WandB Report.
Blue: newton (dt=0.005, decimation=4)
Green: comfree (dt=0.005, decimation=4)
Red: comfree (dt=0.002, decimation=10)
Key Findings:
I will play with the stiffness and damping parameters but do you have any recommendation on how to optimize the solver while keeping the speed advantage over Newton?
Looking forward to your thoughts!