facebookresearch / BenchMARL

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

[Feature] Allow separate config for critic model #17

Closed matteobettini closed 1 year ago

matteobettini commented 1 year 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.