Lew commited on
Commit
6e4ccf6
·
1 Parent(s): 940404a

Push agent to the Hub

Browse files
Files changed (4) hide show
  1. README.md +56 -0
  2. model.pt +3 -0
  3. replay.mp4 +0 -0
  4. results.json +1 -0
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - LunarLander-v2
4
+ - ppo
5
+ - deep-reinforcement-learning
6
+ - reinforcement-learning
7
+ - custom-implementation
8
+ - deep-rl-course
9
+ model-index:
10
+ - name: PPO
11
+ results:
12
+ - task:
13
+ type: reinforcement-learning
14
+ name: reinforcement-learning
15
+ dataset:
16
+ name: LunarLander-v2
17
+ type: LunarLander-v2
18
+ metrics:
19
+ - type: mean_reward
20
+ value: 230.81 +/- 20.92
21
+ name: mean_reward
22
+ verified: false
23
+ ---
24
+
25
+ # PPO Agent Playing LunarLander-v2
26
+
27
+ This is a trained model of a PPO agent playing LunarLander-v2.
28
+
29
+ # Hyperparameters
30
+ ```python
31
+ {'path': '/content/drive/MyDrive/Colab Notebooks/HuggingFace/RL/Unit08'
32
+ 'name': 'ppo-LunaLander_1.pt'
33
+ 'env-id': 'LunarLander-v2'
34
+ 'agent_properties': {'num_layers': 2
35
+ 'hidden': 128
36
+ 'activation': 'Tanh'}
37
+ 'seed': ''
38
+ 'device': 'cuda'
39
+ 'total_timesteps': 100000
40
+ 'num_steps': 32768
41
+ 'batch_size': 64
42
+ 'update_epochs': 2
43
+ 'learning_rate': 1e-05
44
+ 'lr_schedule': 'Exp'
45
+ 'lr_final': 1e-06
46
+ 'gamma': 0.995
47
+ 'gae_lambda': 0.99
48
+ 'norm_adv': 'True'
49
+ 'clip_coef': 0.2
50
+ 'clip_vloss': 'False'
51
+ 'entropy_loss_coef': 0.01
52
+ 'value_loss_coef': 0.5
53
+ 'max_grad_norm': 0.5
54
+ 'n_eval_episodes': 10}
55
+ ```
56
+
model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07ec96972ddd578bac5547cc0dc02dcb63cbaf8437af45a0e9c18eb8054ae1a8
3
+ size 8744
replay.mp4 ADDED
Binary file (84.8 kB). View file
 
results.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"env_id": "LunarLander-v2", "mean_reward": 230.81007816168602, "std_reward": 20.91964137538508, "n_evaluation_episodes": 10, "eval_datetime": "2023-12-30T10:57:57.096023"}