Update README.md
Browse files
README.md
CHANGED
@@ -2,6 +2,11 @@
|
|
2 |
pipeline_tag: reinforcement-learning
|
3 |
tags:
|
4 |
- ppo
|
|
|
|
|
|
|
|
|
|
|
5 |
---
|
6 |
# Experiment
|
7 |
PPO agents trained in a selfplay settings. This repo includes checkpoints collected during training for
|
@@ -106,5 +111,4 @@ class Agent(nn.Module):
|
|
106 |
self.load_state_dict(torch.load(path))
|
107 |
if self.share_network:
|
108 |
self.critic_network = self.actor_network
|
109 |
-
```
|
110 |
-
|
|
|
2 |
pipeline_tag: reinforcement-learning
|
3 |
tags:
|
4 |
- ppo
|
5 |
+
- pong
|
6 |
+
- cleanRL
|
7 |
+
- self-play
|
8 |
+
- pettingzoo
|
9 |
+
- pong_v3
|
10 |
---
|
11 |
# Experiment
|
12 |
PPO agents trained in a selfplay settings. This repo includes checkpoints collected during training for
|
|
|
111 |
self.load_state_dict(torch.load(path))
|
112 |
if self.share_network:
|
113 |
self.critic_network = self.actor_network
|
114 |
+
```
|
|