-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
21 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
<!-- https://wandb.ai/zzmtsvv/sac_rnd/runs/d03hrwpr?workspace=user-zzmtsvv --> | ||
<!-- https://wandb.ai/zzmtsvv/sac_drnd/runs/d03hrwpr?workspace=user-zzmtsvv --> | ||
|
||
# Anti-Exploration with Distributional Random Network Distillation on PyTorch | ||
|
||
This repository contains possible (not ideal one actually) PyTorch implementation of offline [SAC DRND](https://arxiv.org/abs/2401.09750) with the [wandb](https://wandb.ai/zzmtsvv/sac_drnd?workspace=user-zzmtsvv) integration. Actually, It is just a slightly modified [my realization](https://github.com/zzmtsvv/sac_rnd) of [SAC RND](https://arxiv.org/abs/2301.13616). | ||
|
||
if you want to train the model, setup `drnd_config` in `config.py`, initialize `SACDRNDTrainer` in `trainer.py` and run its `train` method: | ||
|
||
```python3 | ||
from trainer import SACDRNDTrainer | ||
|
||
trainer = SACDRNDTrainer() | ||
trainer.train() | ||
``` | ||
if you find any bugs and mistakes in the code, please contact me :) | ||
|
||
# Anti-Exploration with Distributional Random Network Distillation on PyTorch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters