Skip to content
This repository was archived by the owner on Feb 15, 2024. It is now read-only.

Commit 5f1c23e

Browse files
committed
Uploading pretrained models
1 parent f9e005e commit 5f1c23e

File tree

6 files changed

+5
-2
lines changed

6 files changed

+5
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,4 @@ venv.bak/
103103
# mypy
104104
.mypy_cache/
105105
/.idea/
106+
__pycache__

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PyTorch implementation of DDPG for continuous control tasks.
44
This is a PyTorch implementation of Deep Deterministic Policy Gradients developed in [CONTINUOUS CONTROL WITH DEEP REINFORCEMENT LEARNING](https://arxiv.org/abs/1509.02971).
55

66
<p align="center">
7-
<img src="img/roboschool_swingup.gif">
7+
<img src="_assets/roboschool_swingup.gif">
88
</p>
99

1010
This implementation is inspired by the OpenAI baseline of [DDPG](https://github.com/openai/baselines/tree/master/baselines/ddpg), the newer [TD3](https://github.com/sfujim/TD3) implementation and also various other resources about DDPG. But instead of parameter space noise this implementation uses the original Ornstein-Uhlenbeck noise process of the original DDPG implementation.
@@ -21,7 +21,6 @@ Since 'Roboschool' is deprecated, I highly recommend using [PyBullet](http://pyb
2121
* TensorBoard
2222
* TQDM
2323
* [PyTorch](http://pytorch.org/)
24-
* [OpenAI baselines](https://github.com/openai/baselines)
2524
* [OpenAI gym](https://github.com/openai/baselines)
2625
* [OpenAI Roboschool](https://github.com/openai/baselines)
2726

File renamed without changes.

saved_models/README.ME

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
This folder is needed to save and load models.
2+
3+
If you want to use one of the pretrained models in the subfolder, simply uncompress the *.7z* file to get the needed *.tar* file, which can be loaded by PyTorch. The compression was needed to upload the files on Github, since the models saved by PyTorch are large than 100MB (file size limit of Github).
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)