-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch.json
149 lines (149 loc) · 5.36 KB
/
launch.json
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
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
{
"name": "Double DQN SinglePlayer",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/01_double_dqn/train_singleplayer.py",
"args": [
"--cuda",
"--double",
"--scenario", "side2_pass_3units",
"--units", "3",
"--maxFrames", "300000"
],
"console": "integratedTerminal",
"justMyCode": false,
},
{
"name": "Double DQN Multiplayer",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/01_double_dqn/train_multiplayer.py",
"args": [
"--cuda",
"--double",
"--scenario", "multi_side_ai_3units",
"--units", "3",
"--maxFrames", "300000"
],
"console": "integratedTerminal",
"justMyCode": false,
},
{
"name": "Double DQN Selfplayer",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/01_double_dqn/train_selfplayer.py",
"args": [
"--cuda",
"--double",
"--scenario", "multi_side_ai_3units",
"--units", "3",
"--maxFrames", "300000"
],
"console": "integratedTerminal",
"justMyCode": false,
},
{
"name": "Rainbow DQN Singleplayer",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/02_rainbow_dqn/train_singleplayer.py",
"args": [
"--cuda",
"--scenario", "side2_pass_3units",
"--units", "3",
"--maxFrames", "500000"
],
"console": "integratedTerminal",
"justMyCode": false,
},
{
"name": "Rainbow DQN Multiplayer",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/02_rainbow_dqn/train_multiplayer.py",
"args": [
"--cuda",
"--scenario", "multi_side_ai_3units",
"--units", "3",
"--maxFrames", "500000"
],
"console": "integratedTerminal",
"justMyCode": false,
},
{
"name": "Rainbow DQN Multiplayer 4 Units",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/02_rainbow_dqn/train_multiplayer.py",
"args": [
"--cuda",
"--scenario", "multi_side_ai_4units",
"--units", "4",
"--maxFrames", "500000"
],
"console": "integratedTerminal",
"justMyCode": false,
},
{
"name": "Rainbow DQN Selfplay",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/02_rainbow_dqn/train_selfplayer.py",
"args": [
"--cuda",
"--scenario", "multi_side_ai_3units",
"--units", "3",
"--maxFrames", "500000"
],
"console": "integratedTerminal",
"justMyCode": false,
},
{
"name": "Play Rainbow DQN Singleplayer",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/02_rainbow_dqn/play_singleplayer.py",
"args": [
"--scenario", "side2_pass_3units",
"--cuda",
"--units", "3",
"--model1=./02_rainbow_dqn/runs/Sep27_06-24-13-bfw-rainbow-scenario=side2_pass_3units-units=3-player0.dat",
"--maxFrames", "50000"
],
"console": "integratedTerminal",
"justMyCode": false,
},
{
"name": "Play Rainbow DQN Multiplayer",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/02_rainbow_dqn/play_multiplayer.py",
"args": [
"--scenario", "multi_side_ai_3units",
"--cuda",
"--units", "3",
"--model1=./02_rainbow_dqn/runs/Sep27_06-24-13-bfw-rainbow-scenario=side2_pass_3units-units=3-player0.dat",
// "--model2=./02_rainbow_dqn/runs/Sep27_06-24-13-bfw-rainbow-scenario=side2_pass_3units-units=3-player0.dat",
// "--model1=./02_rainbow_dqn/runs/Sep21_16-47-06-bfw-rainbow-scenario=multi_side_ai_3units-units=3-player1.dat",
"--model2=./02_rainbow_dqn/runs/Sep21_16-47-06-bfw-rainbow-scenario=multi_side_ai_3units-units=3-player1.dat",
"--maxFrames", "50000"
],
"console": "integratedTerminal",
"justMyCode": false,
},
]
}