moripiri / DiverseRL

(Yet another) Reinforcement Learning repository that aims to implement and benchmark various RL algorithms
2 stars 0 forks source link

configuration management + training flow change #32

Closed moripiri closed 1 month ago

moripiri commented 1 month ago

expected outcome

from diverserl.algos import PPO

if __name__ == '__main__':
    args = get_args()

    algo = PPO(**args)
    algo.train()

use hydra

moripiri commented 1 month ago