facebookresearch / BenchMARL

A collection of MARL benchmarks based on TorchRL
https://benchmarl.readthedocs.io/
MIT License
216 stars 27 forks source link

[Feature] Allow separate config for critic model #17

Closed matteobettini closed 11 months ago

matteobettini commented 11 months ago

Before this PR, for uniformity, all experiments just took one model config and experiments involving actor critic losses had by default the same config for actor and critic

With this PR we introduce the possibility of passing a critic model config that can be used by actor critic losses.

If not provided this will default to the actor config.