-
Notifications
You must be signed in to change notification settings - Fork 684
/
template_plot.py
133 lines (113 loc) · 2.91 KB
/
template_plot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import matplotlib
# matplotlib.use('Agg')
import matplotlib.pyplot as plt
# plt.rc('text', usetex=True)
from deep_rl import *
def plot_ppo():
plotter = Plotter()
games = [
'HalfCheetah-v2',
'Walker2d-v2',
'Hopper-v2',
'Swimmer-v2',
'Reacher-v2',
'Ant-v2',
'Humanoid-v2',
'HumanoidStandup-v2',
]
patterns = [
'remark_ppo',
]
labels = [
'PPO'
]
plotter.plot_games(games=games,
patterns=patterns,
agg='mean',
downsample=0,
labels=labels,
right_align=False,
tag=plotter.RETURN_TRAIN,
root='./data/benchmark/mujoco',
interpolation=100,
window=10,
)
# plt.show()
plt.tight_layout()
plt.savefig('images/PPO.png', bbox_inches='tight')
def plot_ddpg_td3():
plotter = Plotter()
games = [
'HalfCheetah-v2',
'Walker2d-v2',
'Hopper-v2',
'Swimmer-v2',
'Reacher-v2',
'Ant-v2',
]
patterns = [
'remark_ddpg',
'remark_td3',
]
labels = [
'DDPG',
'TD3',
]
plotter.plot_games(games=games,
patterns=patterns,
agg='mean',
downsample=0,
labels=labels,
right_align=False,
tag=plotter.RETURN_TEST,
root='./data/benchmark/mujoco',
interpolation=0,
window=0,
)
# plt.show()
plt.tight_layout()
plt.savefig('images/mujoco_eval.png', bbox_inches='tight')
def plot_atari():
plotter = Plotter()
games = [
'BreakoutNoFrameskip-v4',
]
patterns = [
'remark_a2c',
'remark_categorical',
'remark_dqn',
'remark_n_step_dqn',
'remark_option_critic',
'remark_quantile',
'remark_ppo',
# 'remark_rainbow',
]
labels = [
'A2C',
'C51',
'DQN',
'N-Step DQN',
'OC',
'QR-DQN',
'PPO',
# 'Rainbow'
]
plotter.plot_games(games=games,
patterns=patterns,
agg='mean',
downsample=100,
labels=labels,
right_align=False,
tag=plotter.RETURN_TRAIN,
root='./data/benchmark/atari',
interpolation=0,
window=100,
)
# plt.show()
plt.tight_layout()
plt.savefig('images/Breakout.png', bbox_inches='tight')
if __name__ == '__main__':
mkdir('images')
# plot_ppo()
# plot_ddpg_td3()
plot_atari()