edbeeching HF staff commited on
Commit
4f68929
1 Parent(s): 295c499

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - deep-reinforcement-learning
4
+ - reinforcement-learning
5
+ - decision-transformer
6
+ - gym-continous-control
7
+
8
+ ---
9
+ # Decision Transformer model trained on expert trajectories sampled from the Gym Hopper environment
10
+ This is a trained [Decision Transformer](https://arxiv.org/abs/2106.01345) model trained on expert trajectories sampled from the Gym Hopper environment
11
+
12
+ <video src="https://huggingface.co/edbeeching/decision-transformer-gym-hopper-expert/resolve/main/hopper-expert.mp4" controls autoplay loop></video>
13
+
14
+ The following normlization coeficients are required to use this model:
15
+
16
+ mean = [ 1.3490015, -0.11208222, -0.5506444, -0.13188992, -0.00378754, 2.6071432, 0.02322114, -0.01626922, -0.06840388, -0.05183131, 0.04272673]
17
+
18
+ std = [0.15980862, 0.0446214, 0.14307782, 0.17629202, 0.5912333, 0.5899924, 1.5405099, 0.8152689, 2.0173461, 2.4107876, 5.8440027 ]
19
+
20
+ See our [Blog Post](https://colab.research.google.com/drive/1K3UuajwoPY1MzRKNkONNRS3gS5DxZ-qF?usp=sharing), [Colab notebook](https://colab.research.google.com/drive/1K3UuajwoPY1MzRKNkONNRS3gS5DxZ-qF?usp=sharing) or [Example Script](https://github.com/huggingface/transformers/tree/main/examples/research_projects/decision_transformer) for usage.
21
+