File size: 13,068 Bytes
dd58921 | 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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | import argparse
import os
import pickle
from os import path
import matplotlib as mpl
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import seaborn as sns
import wandb
sns.set_style("whitegrid")
mpl.rcParams["text.usetex"] = True
mpl.rcParams["text.latex.preamble"] = r"\usepackage{amsmath}" # for \text command
parser = argparse.ArgumentParser(description="CleanRL Plots")
# Common arguments
parser.add_argument(
"--wandb-project", type=str, default="cleanrl/cleanrl.benchmark", help="the name of wandb project (e.g. cleanrl/cleanrl)"
)
parser.add_argument(
"--feature-of-interest", type=str, default="charts/episodic_return", help="which feature to be plotted on the y-axis"
)
parser.add_argument("--hyper-params-tuned", nargs="+", default=[], help="the hyper parameters tuned")
# parser.add_argument('--scan-history', type=lambda x:bool(strtobool(x)), default=False, nargs='?', const=True,
# help='if toggled, cuda will not be enabled by default')
parser.add_argument("--interested-exp-names", nargs="+", default=[], help="the hyper parameters tuned")
parser.add_argument("--samples", type=int, default=500, help="the sampled point of the run")
parser.add_argument("--smooth-weight", type=float, default=0.95, help="the weight parameter of the exponential moving average")
parser.add_argument(
"--last-n-episodes",
type=int,
default=10,
help="for analysis only; the last n episodes from which the mean of the feature of interest is calculated",
)
parser.add_argument("--num-points-x-axis", type=int, default=500, help="the number of points in the x-axis")
parser.add_argument("--font-size", type=int, default=18, help="the font size of the plots")
parser.add_argument("--x-label", type=str, default="Time Steps", help="the label of x-axis")
parser.add_argument("--y-label", type=str, default="Episodic Return", help="the label of y-axis")
parser.add_argument("--y-lim-bottom", type=float, default=0.0, help="the bottom limit for the y-axis")
parser.add_argument("--output-format", type=str, default="pdf", help="either `pdf`, `png`, or `svg`")
args = parser.parse_args()
api = wandb.Api()
# hacks
env_dict = {
# 'MicrortsAttackShapedReward-v1': 'MicrortsAttackHRL-v1',
# 'MicrortsProduceCombatUnitsShapedReward-v1': 'MicrortsProduceCombatUnitHRL-v1',
# 'MicrortsRandomEnemyShapedReward3-v1': 'MicrortsRandomEnemyHRL3-v1',
}
exp_convert_dict = {
"ppo_atari_visual": "PPO",
"dqn_atari_visual": "DQN",
"apex_dqn_atari_visual": "Ape-X DQN",
"c51_atari_visual": "C51",
# 'rnd_ppo_gamma_0.999_nocliploss_lr_1e-4_128envs_entcoef_0.001_stickyaction': "PPO RND",
"ddpg_continuous_action": "DDPG",
# 'dqn': 'DQN',
# 'ppg_procgen_fast': 'PPG',
# 'ppg_procgen_impala_cnn': 'PPG-IMPALA-CNN',
# 'ppo': "PPO",
# 'ppo_car_racing': "PPO",
"ppo_continuous_action": "PPO",
# 'ppo_procgen_fast': "PPO",
# "ppo_procgen_impala_cnn": "PPO-IMPALA-CNN",
"td3_continuous_action": "TD3",
}
# args.feature_of_interest = 'charts/episodic_return'
feature_name = args.feature_of_interest.replace("/", "_")
if not os.path.exists(feature_name):
os.makedirs(feature_name)
with open(f"{feature_name}/cache.pkl", "wb") as handle:
pickle.dump([[], [], [], {}, [], set()], handle, protocol=pickle.HIGHEST_PROTOCOL)
with open(f"{feature_name}/cache.pkl", "rb") as handle:
summary_list, config_list, name_list, envs, exp_names, ids = pickle.load(handle)
# Change oreilly-class/cifar to <entity/project-name>
runs = api.runs(args.wandb_project)
data = []
for idx, run in enumerate(runs):
if run.id not in ids:
ids.add(run.id)
if args.feature_of_interest in run.summary:
metrics_dataframe = run.history(keys=[args.feature_of_interest, "global_step"], samples=args.samples)
exp_name = run.config["exp_name"]
for param in args.hyper_params_tuned:
if param in run.config:
exp_name += "-" + param + "-" + str(run.config[param]) + "-"
metrics_dataframe.insert(len(metrics_dataframe.columns), "algo", exp_name)
exp_names += [exp_name]
metrics_dataframe.insert(len(metrics_dataframe.columns), "seed", run.config["seed"])
data += [metrics_dataframe]
if run.config["env_id"] not in envs:
envs[run.config["env_id"]] = [metrics_dataframe]
envs[run.config["env_id"] + "total_timesteps"] = run.config["total_timesteps"]
else:
envs[run.config["env_id"]] += [metrics_dataframe]
# run.summary are the output key/values like accuracy. We call ._json_dict to omit large files
summary_list.append(run.summary._json_dict)
# run.config is the input metrics. We remove special values that start with _.
config_list.append({k: v for k, v in run.config.items() if not k.startswith("_")})
# run.name is the name of the run.
name_list.append(run.name)
summary_df = pd.DataFrame.from_records(summary_list)
config_df = pd.DataFrame.from_records(config_list)
name_df = pd.DataFrame({"name": name_list})
all_df = pd.concat([name_df, config_df, summary_df], axis=1)
# data = pd.concat(data, ignore_index=True)
with open(f"{feature_name}/cache.pkl", "wb") as handle:
pickle.dump([summary_list, config_list, name_list, envs, exp_names, ids], handle, protocol=pickle.HIGHEST_PROTOCOL)
print("data loaded")
# https://stackoverflow.com/questions/42281844/what-is-the-mathematics-behind-the-smoothing-parameter-in-tensorboards-scalar#_=_
def smooth(scalars, weight): # Weight between 0 and 1
last = scalars[0] # First value in the plot (first timestep)
smoothed = list()
for point in scalars:
smoothed_val = last * weight + (1 - weight) * point # Calculate smoothed value
smoothed.append(smoothed_val) # Save it
last = smoothed_val # Anchor the last smoothed value
return smoothed
# smoothing
for env in envs:
if not env.endswith("total_timesteps"):
for idx, metrics_dataframe in enumerate(envs[env]):
envs[env][idx] = metrics_dataframe.dropna(subset=[args.feature_of_interest])
# envs[env][idx][args.feature_of_interest] = smooth(metrics_dataframe[args.feature_of_interest], 0.85)
sns.set(style="darkgrid")
def get_df_for_env(env_id):
env_total_timesteps = envs[env_id + "total_timesteps"]
env_increment = env_total_timesteps / 500
envs_same_x_axis = []
for sampled_run in envs[env_id]:
df = pd.DataFrame(columns=sampled_run.columns)
x_axis = [i * env_increment for i in range(500 - 2)]
current_row = 0
for timestep in x_axis:
while sampled_run.iloc[current_row]["global_step"] < timestep:
current_row += 1
if current_row > len(sampled_run) - 2:
break
if current_row > len(sampled_run) - 2:
break
temp_row = sampled_run.iloc[current_row].copy()
temp_row["global_step"] = timestep
df = df.append(temp_row)
envs_same_x_axis += [df]
return pd.concat(envs_same_x_axis, ignore_index=True)
def export_legend(ax, filename="legend.pdf"):
try:
# import matplotlib as mpl
# mpl.rcParams['text.usetex'] = True
# mpl.rcParams['text.latex.preamble'] = [r'\usepackage{amsmath}'] #for \text command
fig2 = plt.figure()
ax2 = fig2.add_subplot()
ax2.axis("off")
handles, labels = ax.get_legend_handles_labels()
legend = ax2.legend(
handles=handles, labels=labels, frameon=False, loc="lower center", ncol=6, fontsize=20, handlelength=1
)
for text in legend.get_texts():
if text.get_text() in exp_convert_dict:
text.set_text(exp_convert_dict[text.get_text()])
text.set_text(text.get_text().replace("_", "-"))
for line in legend.get_lines():
line.set_linewidth(4.0)
fig = legend.figure
fig.canvas.draw()
bbox = legend.get_window_extent().transformed(fig.dpi_scale_trans.inverted())
fig.savefig(filename, dpi="figure", bbox_inches=bbox)
fig.clf()
except:
print(f"export legend failed: {filename}")
if not os.path.exists(f"{feature_name}/data"):
os.makedirs(f"{feature_name}/data")
if not os.path.exists(f"{feature_name}/plots"):
os.makedirs(f"{feature_name}/plots")
if not os.path.exists(f"{feature_name}/legends"):
os.makedirs(f"{feature_name}/legends")
interested_exp_names = sorted(list(exp_convert_dict.keys())) # ['ppo_continuous_action', 'ppo_atari_visual']
palette = sns.color_palette(n_colors=len(set(exp_convert_dict.values())))
palette_dict = dict(zip(set(exp_convert_dict.values()), palette))
current_palette_dict = dict(zip(interested_exp_names, [palette_dict[exp_convert_dict[k]] for k in interested_exp_names]))
if args.interested_exp_names:
interested_exp_names = args.interested_exp_names
print(interested_exp_names)
# raise
# print(current_palette_dict)
legend_df = pd.DataFrame()
# hack
algos_in_legend = []
if args.font_size:
plt.rc("axes", titlesize=args.font_size) # fontsize of the axes title
plt.rc("axes", labelsize=args.font_size) # fontsize of the x and y labels
plt.rc("xtick", labelsize=args.font_size) # fontsize of the tick labels
plt.rc("ytick", labelsize=args.font_size) # fontsize of the tick labels
plt.rc("legend", fontsize=args.font_size) # legend fontsize
stats = {item: [] for item in ["env_id", "exp_name", args.feature_of_interest]}
# uncommenet the following to generate all figures
for env in set(all_df["env_id"]):
if not path.exists(f"{feature_name}/data/{env}.pkl"):
with open(f"{feature_name}/data/{env}.pkl", "wb") as handle:
data = get_df_for_env(env)
data["seed"] = data["seed"].astype(float)
data[args.feature_of_interest] = data[args.feature_of_interest].astype(float)
pickle.dump(data, handle, protocol=pickle.HIGHEST_PROTOCOL)
else:
with open(f"{feature_name}/data/{env}.pkl", "rb") as handle:
data = pickle.load(handle)
print(f"{env}'s data loaded")
def _smooth(df):
df[args.feature_of_interest] = smooth(list(df[args.feature_of_interest]), args.smooth_weight)
return df
plot_data = data.groupby(["seed", "algo"]).apply(_smooth).loc[data["algo"].isin(interested_exp_names)]
if len(plot_data) == 0:
continue
ax = sns.lineplot(
data=plot_data, x="global_step", y=args.feature_of_interest, hue="algo", ci="sd", palette=current_palette_dict
)
ax.ticklabel_format(style="sci", scilimits=(0, 0), axis="x")
ax.set(xlabel=args.x_label, ylabel=args.y_label)
ax.legend().remove()
if args.y_lim_bottom:
plt.ylim(bottom=args.y_lim_bottom)
plt.title(env)
plt.tight_layout()
plt.savefig(f"{feature_name}/plots/{env}.{args.output_format}")
plt.clf()
env_algos = data["algo"].unique()
for algo in env_algos:
algo_data = data.loc[data["algo"].isin([algo])]
last_n_episodes_global_step = sorted(algo_data["global_step"].unique())[-args.last_n_episodes]
last_n_episodes_features = (
algo_data[algo_data["global_step"] > last_n_episodes_global_step]
.groupby(["seed"])
.mean()[args.feature_of_interest]
)
for item in last_n_episodes_features:
stats[args.feature_of_interest] += [item]
if algo in exp_convert_dict:
stats["exp_name"] += [exp_convert_dict[algo]]
else:
stats["exp_name"] += [algo]
stats["env_id"] += [env]
# export legend
# legend_df = pd.DataFrame()
# legend_df = legend_df.append(plot_data)
# legend_df = legend_df.reset_index()
# ax = sns.lineplot(data=legend_df, x="global_step", y=args.feature_of_interest, hue="algo", ci='sd', palette=current_palette_dict)
# ax.set(xlabel=args.x_label, ylabel=args.y_label)
# ax.legend().remove()
# export_legend(ax, f"{feature_name}/legends/{env}.{args.output_format}")
# plt.clf()
# hack
algo_in_legend = exp_convert_dict[plot_data["algo"].iloc[0]]
if algo_in_legend not in algos_in_legend:
legend_df = legend_df.append(plot_data.iloc[:5])
algos_in_legend += [algo_in_legend]
legend_df = legend_df.reset_index()
ax = sns.lineplot(
data=legend_df, x="global_step", y=args.feature_of_interest, hue="algo", ci="sd", palette=current_palette_dict
)
ax.set(xlabel=args.x_label, ylabel=args.y_label)
ax.legend().remove()
export_legend(ax, f"{feature_name}/legend.{args.output_format}")
plt.clf()
# analysis
stats_df = pd.DataFrame(stats)
g = stats_df.groupby(["env_id", "exp_name"]).agg(lambda x: f"{np.mean(x):.2f} ± {np.std(x):.2f}")
print(g.reset_index().pivot("exp_name", "env_id", args.feature_of_interest).to_latex().replace("±", r"$\pm$"))
|