You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why is there a distinction between EnvParams and __init__ keyword arguments? I understand __init__ keyword arguments are used for settings that are never modified after instantiation. But the distinction seems arbitrary. I think it would be better to eliminate __init__ keyword arguments entirely and store all "static" configuration inside EnvParams. This is both simpler and more flexible.
The text was updated successfully, but these errors were encountered:
Why is there a distinction between
EnvParams
and__init__
keyword arguments? I understand__init__
keyword arguments are used for settings that are never modified after instantiation. But the distinction seems arbitrary. I think it would be better to eliminate__init__
keyword arguments entirely and store all "static" configuration insideEnvParams
. This is both simpler and more flexible.The text was updated successfully, but these errors were encountered: