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
Currently, for on-policy algorithm we can specify net_arch=[dict(pi=[64], vf=[64])]
The idea would be to allow the same (expect the shared part which adds too much complexity) for off-policy algorithms: net_arch=[dict(pi=[64], qf=[64])].
This should be fairly simple to implement.
The text was updated successfully, but these errors were encountered:
araffin
changed the title
[New Feature] Allow different network architectures for off-policy actor/critic
[Feature request] Allow different network architectures for off-policy actor/critic
Jul 20, 2020
Currently, for on-policy algorithm we can specify
net_arch=[dict(pi=[64], vf=[64])]
The idea would be to allow the same (expect the shared part which adds too much complexity) for off-policy algorithms:
net_arch=[dict(pi=[64], qf=[64])]
.This should be fairly simple to implement.
The text was updated successfully, but these errors were encountered: