forked from openai/maddpg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathour_data_agent_reward_learning_curve.sh
51 lines (34 loc) · 1.33 KB
/
our_data_agent_reward_learning_curve.sh
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
#!/bin/bash
# This script plots the learning curve of the agent rewards in the following files
PYPATH="new_data_training/"
function plt_learning_curves(){
python3 graph_learning_curve_single.py $PYPATH$PKL_FILE
}
PKL_FILE="good_linear_adv_preprocessed_simple_adversary_agrewards.pkl"
plt_learning_curves
PKL_FILE="good_linear_adv_preprocessed_simple_adversary_rewards.pkl"
plt_learning_curves
PKL_FILE="good_linear_adv_preprocessed_simple_tag_agrewards.pkl"
plt_learning_curves
PKL_FILE="good_linear_adv_preprocessed_simple_tag_rewards.pkl"
plt_learning_curves
PKL_FILE="good_preprocessed_adv_linear_simple_adversary_agrewards.pkl "
plt_learning_curves
PKL_FILE="good_preprocessed_adv_linear_simple_adversary_rewards.pkl"
plt_learning_curves
PKL_FILE="good_preprocessed_adv_linear_simple_tag_agrewards.pkl"
plt_learning_curves
PKL_FILE="good_preprocessed_adv_linear_simple_tag_rewards.pkl"
plt_learning_curves
PKL_FILE="preprocessed_simple_adversary_agrewards.pkl"
plt_learning_curves
PKL_FILE="preprocessed_simple_adversary_rewards.pkl"
plt_learning_curves
PKL_FILE="preprocessed_simple_spread_agrewards.pkl"
plt_learning_curves
PKL_FILE="preprocessed_simple_spread_rewards.pkl"
plt_learning_curves
PKL_FILE="preprocessed_simple_tag_agrewards.pkl"
plt_learning_curves
PKL_FILE="preprocessed_simple_tag_rewards.pkl"
plt_learning_curves