diff --git a/examples/extending/algorithm/README.md b/examples/extending/algorithm/README.md index 64b99df6..31d4a8df 100644 --- a/examples/extending/algorithm/README.md +++ b/examples/extending/algorithm/README.md @@ -15,7 +15,7 @@ for an example. 3. Place your algorithm script in [`benchmarl/algorithms`](../../../benchmarl/algorithms) and your config in [`benchmarl/conf/algorithm`](../../../benchmarl/conf/algorithm) (or any other place you want to override from) -4. Add `{"custom_agorithm": CustomAlgorithmConfig}` to the [`benchmarl.algorithm.algorithm_config_registry`](../../../benchmarl/algorithms/__init__.py) +4. Add `{"customagorithm": CustomAlgorithmConfig}` to the [`benchmarl.algorithms.algorithm_config_registry`](../../../benchmarl/algorithms/__init__.py) 5. Load it with ```bash python benchmarl/run.py algorithm=customalgorithm task=...