-
Hi all, My team is implementing algorithms that don't come pre-implemented in OmniSafe, and we'd love to use the Experiment Grid API to compare them to baselines (and to each other). We can add algorithms to the grid configuration (via the What is the process for registering a novel algorithm so that its string representation can be used in Experiment Grid for comparison? We have tried registering our algorithms using Of course, we can manually modify the OmniSafe code, but I would assume there is a better mechanism for this. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Sorry for the late reply. You can follow the registration of |
Beta Was this translation helpful? Give feedback.
Sorry for the late reply. You can follow the registration of
PPO-Lag
. Suppose your novel algorithm isALGO
and it is an on-policy algorithm innaive_lagrange
. You can register it in the__init__.py
innaive_lagrange
,on-policy
andalgorithms
folder. Just like what we have done onPPO-Lag
.