araffin / rl-baselines-zoo

A collection of 100+ pre-trained RL agents using Stable Baselines, training and hyperparameter optimization included.
https://stable-baselines.readthedocs.io/
MIT License
1.12k stars 206 forks source link

[Question] Why is ortho_init=False during hyperparameter searches? #113

Closed jkterry1 closed 3 years ago

jkterry1 commented 3 years ago

It's my understanding that orthogonal initialization is basically universally slightly helpful and that this result has been verified in the literature, so it seems odd to disable it for hyperparameter tuning.

araffin commented 3 years ago

Hello,

basically universally slightly helpful

in practice, it mostly depends on the other hyperparameters (in my own experience, when doing hyperparameter optimization with ortho_init as an hyperparam, it was not an important one).

There are also other reasons:

jkterry1 commented 3 years ago

Thanks a ton