-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
331 lines (314 loc) · 8.61 KB
/
Copy pathdocker-compose.yml
File metadata and controls
331 lines (314 loc) · 8.61 KB
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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
# ExPhil Docker Compose Configuration
# Usage:
# docker-compose build # Build the image
# docker-compose run train-production # Production preset (best quality)
# docker-compose run train-standard # Standard preset (balanced)
# docker-compose run train-mewtwo # Mewtwo specialist
# docker-compose run shell # Interactive Elixir shell
services:
# =============================================================================
# GPU Training with Presets
# =============================================================================
# Production preset - maximum quality training
# ~50 epochs, Mamba backbone, all features enabled
train-production:
build:
context: .
dockerfile: Dockerfile.gpu
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
volumes:
- ./replays:/app/replays:ro
- ./checkpoints:/app/checkpoints:rw
environment:
- MIX_ENV=prod
- CUDA_VISIBLE_DEVICES=0
- WANDB_API_KEY=${WANDB_API_KEY:-}
command: >
mix run scripts/train_from_replays.exs
--preset production
--replays /app/replays
--checkpoint /app/checkpoints
# Production with online robustness (for Slippi netplay)
# Adds frame delay augmentation (0-18 frames)
train-production-online:
build:
context: .
dockerfile: Dockerfile.gpu
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
volumes:
- ./replays:/app/replays:ro
- ./checkpoints:/app/checkpoints:rw
environment:
- MIX_ENV=prod
- CUDA_VISIBLE_DEVICES=0
- WANDB_API_KEY=${WANDB_API_KEY:-}
command: >
mix run scripts/train_from_replays.exs
--preset production
--online-robust
--replays /app/replays
--checkpoint /app/checkpoints
# GPU standard preset - good balance of speed and quality
# ~20 epochs, all augmentation features
train-standard:
build:
context: .
dockerfile: Dockerfile.gpu
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
volumes:
- ./replays:/app/replays:ro
- ./checkpoints:/app/checkpoints:rw
environment:
- MIX_ENV=prod
- CUDA_VISIBLE_DEVICES=0
command: >
mix run scripts/train_from_replays.exs
--preset gpu_standard
--replays /app/replays
--checkpoint /app/checkpoints
# GPU quick - fast validation that GPU training works
# ~3 epochs, 20 files
train-quick:
build:
context: .
dockerfile: Dockerfile.gpu
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
volumes:
- ./replays:/app/replays:ro
- ./checkpoints:/app/checkpoints:rw
environment:
- MIX_ENV=prod
- CUDA_VISIBLE_DEVICES=0
command: >
mix run scripts/train_from_replays.exs
--preset gpu_quick
--replays /app/replays
--checkpoint /app/checkpoints
# =============================================================================
# Character-Specific Training
# =============================================================================
# Mewtwo specialist - 90-frame window for teleport recovery
train-mewtwo:
build:
context: .
dockerfile: Dockerfile.gpu
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
volumes:
- ./replays:/app/replays:ro
- ./checkpoints:/app/checkpoints:rw
environment:
- MIX_ENV=prod
- CUDA_VISIBLE_DEVICES=0
command: >
mix run scripts/train_from_replays.exs
--preset mewtwo
--character MEWTWO
--online-robust
--replays /app/replays
--checkpoint /app/checkpoints
# Ganondorf specialist - 60-frame window for spacing
train-ganondorf:
build:
context: .
dockerfile: Dockerfile.gpu
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
volumes:
- ./replays:/app/replays:ro
- ./checkpoints:/app/checkpoints:rw
environment:
- MIX_ENV=prod
- CUDA_VISIBLE_DEVICES=0
command: >
mix run scripts/train_from_replays.exs
--preset ganondorf
--character GANONDORF
--online-robust
--replays /app/replays
--checkpoint /app/checkpoints
# Link specialist - 75-frame window for projectiles
train-link:
build:
context: .
dockerfile: Dockerfile.gpu
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
volumes:
- ./replays:/app/replays:ro
- ./checkpoints:/app/checkpoints:rw
environment:
- MIX_ENV=prod
- CUDA_VISIBLE_DEVICES=0
command: >
mix run scripts/train_from_replays.exs
--preset link
--character LINK
--online-robust
--replays /app/replays
--checkpoint /app/checkpoints
# Game & Watch specialist - 45-frame window (L-cancels: fair, dair)
train-gameandwatch:
build:
context: .
dockerfile: Dockerfile.gpu
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
volumes:
- ./replays:/app/replays:ro
- ./checkpoints:/app/checkpoints:rw
environment:
- MIX_ENV=prod
- CUDA_VISIBLE_DEVICES=0
command: >
mix run scripts/train_from_replays.exs
--preset gameandwatch
--character GAME_AND_WATCH
--online-robust
--replays /app/replays
--checkpoint /app/checkpoints
# Zelda specialist - 60-frame window for transform
train-zelda:
build:
context: .
dockerfile: Dockerfile.gpu
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
volumes:
- ./replays:/app/replays:ro
- ./checkpoints:/app/checkpoints:rw
environment:
- MIX_ENV=prod
- CUDA_VISIBLE_DEVICES=0
command: >
mix run scripts/train_from_replays.exs
--preset zelda
--character ZELDA
--online-robust
--replays /app/replays
--checkpoint /app/checkpoints
# =============================================================================
# Utilities
# =============================================================================
# Replay scanner - analyze character distribution in replay collection
scan-replays:
build:
context: .
dockerfile: Dockerfile.gpu
volumes:
- ./replays:/app/replays:ro
environment:
- MIX_ENV=prod
command: >
mix run scripts/scan_replays.exs
--replays /app/replays
# Learning rate finder
find-lr:
build:
context: .
dockerfile: Dockerfile.gpu
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
volumes:
- ./replays:/app/replays:ro
environment:
- MIX_ENV=prod
- CUDA_VISIBLE_DEVICES=0
command: >
mix run scripts/find_lr.exs
--replays /app/replays
# Interactive Elixir shell for debugging
shell:
build:
context: .
dockerfile: Dockerfile.gpu
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
volumes:
- ./replays:/app/replays:ro
- ./checkpoints:/app/checkpoints:rw
- ./lib:/app/lib:ro
- ./scripts:/app/scripts:ro
environment:
- MIX_ENV=prod
- CUDA_VISIBLE_DEVICES=0
stdin_open: true
tty: true
command: iex -S mix
# =============================================================================
# CPU Testing (Local development without GPU)
# =============================================================================
# CPU quick test
train-cpu-quick:
build:
context: .
dockerfile: Dockerfile.cpu
volumes:
- ./replays:/app/replays:ro
- ./checkpoints:/app/checkpoints:rw
environment:
- MIX_ENV=prod
command: >
mix run scripts/train_from_replays.exs
--preset quick
--replays /app/replays
--checkpoint /app/checkpoints