Upload 67 files
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- csgo/config/agent/csgo.yaml +59 -0
- csgo/config/env/csgo.yaml +7 -0
- csgo/model/csgo.pt +3 -0
- csgo/spawn/0/act.npy +3 -0
- csgo/spawn/0/full_res.npy +3 -0
- csgo/spawn/0/full_res_0.png +0 -0
- csgo/spawn/0/full_res_1.png +0 -0
- csgo/spawn/0/full_res_2.png +0 -0
- csgo/spawn/0/full_res_3.png +0 -0
- csgo/spawn/0/low_res.npy +3 -0
- csgo/spawn/0/next_act.npy +3 -0
- csgo/spawn/1/act.npy +3 -0
- csgo/spawn/1/full_res.npy +3 -0
- csgo/spawn/1/full_res_0.png +0 -0
- csgo/spawn/1/full_res_1.png +0 -0
- csgo/spawn/1/full_res_2.png +0 -0
- csgo/spawn/1/full_res_3.png +0 -0
- csgo/spawn/1/low_res.npy +3 -0
- csgo/spawn/1/next_act.npy +3 -0
- csgo/spawn/2/act.npy +3 -0
- csgo/spawn/2/full_res.npy +3 -0
- csgo/spawn/2/full_res_0.png +0 -0
- csgo/spawn/2/full_res_1.png +0 -0
- csgo/spawn/2/full_res_2.png +0 -0
- csgo/spawn/2/full_res_3.png +0 -0
- csgo/spawn/2/low_res.npy +3 -0
- csgo/spawn/2/next_act.npy +3 -0
- csgo/spawn/3/act.npy +3 -0
- csgo/spawn/3/full_res.npy +3 -0
- csgo/spawn/3/full_res_0.png +0 -0
- csgo/spawn/3/full_res_1.png +0 -0
- csgo/spawn/3/full_res_2.png +0 -0
- csgo/spawn/3/full_res_3.png +0 -0
- csgo/spawn/3/low_res.npy +3 -0
- csgo/spawn/3/next_act.npy +3 -0
- csgo/spawn/4/act.npy +3 -0
- csgo/spawn/4/full_res.npy +3 -0
- csgo/spawn/4/full_res_0.png +0 -0
- csgo/spawn/4/full_res_1.png +0 -0
- csgo/spawn/4/full_res_2.png +0 -0
- csgo/spawn/4/full_res_3.png +0 -0
- csgo/spawn/4/low_res.npy +3 -0
- csgo/spawn/4/next_act.npy +3 -0
- csgo/spawn/5/act.npy +3 -0
- csgo/spawn/5/full_res.npy +3 -0
- csgo/spawn/5/full_res_0.png +0 -0
- csgo/spawn/5/full_res_1.png +0 -0
- csgo/spawn/5/full_res_2.png +0 -0
- csgo/spawn/5/full_res_3.png +0 -0
- csgo/spawn/5/low_res.npy +3 -0
csgo/config/agent/csgo.yaml
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
_target_: agent.AgentConfig
|
2 |
+
|
3 |
+
denoiser:
|
4 |
+
_target_: models.diffusion.DenoiserConfig
|
5 |
+
sigma_data: 0.5
|
6 |
+
sigma_offset_noise: 0.1
|
7 |
+
noise_previous_obs: true
|
8 |
+
upsampling_factor: null
|
9 |
+
inner_model:
|
10 |
+
_target_: models.diffusion.InnerModelConfig
|
11 |
+
img_channels: 3
|
12 |
+
num_steps_conditioning: 4
|
13 |
+
cond_channels: 2048
|
14 |
+
depths:
|
15 |
+
- 2
|
16 |
+
- 2
|
17 |
+
- 2
|
18 |
+
- 2
|
19 |
+
channels:
|
20 |
+
- 128
|
21 |
+
- 256
|
22 |
+
- 512
|
23 |
+
- 1024
|
24 |
+
attn_depths:
|
25 |
+
- 0
|
26 |
+
- 0
|
27 |
+
- 1
|
28 |
+
- 1
|
29 |
+
|
30 |
+
upsampler:
|
31 |
+
_target_: models.diffusion.DenoiserConfig
|
32 |
+
sigma_data: 0.5
|
33 |
+
sigma_offset_noise: 0.1
|
34 |
+
noise_previous_obs: false
|
35 |
+
upsampling_factor: 5
|
36 |
+
inner_model:
|
37 |
+
_target_: models.diffusion.InnerModelConfig
|
38 |
+
img_channels: 3
|
39 |
+
num_steps_conditioning: 1
|
40 |
+
cond_channels: 2048
|
41 |
+
depths:
|
42 |
+
- 2
|
43 |
+
- 2
|
44 |
+
- 2
|
45 |
+
- 2
|
46 |
+
channels:
|
47 |
+
- 64
|
48 |
+
- 64
|
49 |
+
- 128
|
50 |
+
- 256
|
51 |
+
attn_depths:
|
52 |
+
- 0
|
53 |
+
- 0
|
54 |
+
- 0
|
55 |
+
- 1
|
56 |
+
|
57 |
+
rew_end_model: null
|
58 |
+
|
59 |
+
actor_critic: null
|
csgo/config/env/csgo.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
train:
|
2 |
+
id: csgo
|
3 |
+
size: [320, 240]
|
4 |
+
num_actions: 20
|
5 |
+
path_data_low_res: C:\Users\ifrat\Documents\AI-SM64\colab-diamond-csgo\processed\low_res
|
6 |
+
path_data_full_res: C:\Users\ifrat\Documents\AI-SM64\colab-diamond-csgo\processed\full_res
|
7 |
+
keymap: csgo
|
csgo/model/csgo.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3219e12653772b8cc1ca7156815c462adcf2502db8e2832e444467ad60d1965c
|
3 |
+
size 1526760706
|
csgo/spawn/0/act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b197005cb4e761be39243f3c9056e5af4bbd684738987f75828775c23e91adab
|
3 |
+
size 768
|
csgo/spawn/0/full_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5beb3e742a4fa18e68a96a60a72d9a34f2e0fcc3bfe2b0e74aaad28bedaf1a3a
|
3 |
+
size 921728
|
csgo/spawn/0/full_res_0.png
ADDED
csgo/spawn/0/full_res_1.png
ADDED
csgo/spawn/0/full_res_2.png
ADDED
csgo/spawn/0/full_res_3.png
ADDED
csgo/spawn/0/low_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:41c6844a626ae2001d69fd658ee23995e4403f04cbfdb7ab83f16ee2de4b2913
|
3 |
+
size 36992
|
csgo/spawn/0/next_act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2c817273740f030776ac634acc1cbca9617cb0ef360973504c32c453edf47674
|
3 |
+
size 32128
|
csgo/spawn/1/act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:99f49877fa8f7ffb692b9662eaa76af397f2dbca829a8e8a8ff06d5cfb6ffcf2
|
3 |
+
size 768
|
csgo/spawn/1/full_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9372bbef6bcf1a5161b60d6ac640df52fdb7d62c5571d2295b72774d98284785
|
3 |
+
size 921728
|
csgo/spawn/1/full_res_0.png
ADDED
csgo/spawn/1/full_res_1.png
ADDED
csgo/spawn/1/full_res_2.png
ADDED
csgo/spawn/1/full_res_3.png
ADDED
csgo/spawn/1/low_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:25894378b636dbc3451a43a65909beb0d5e413f210bdbdfd16c1ce44c2ef4c2d
|
3 |
+
size 36992
|
csgo/spawn/1/next_act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:80011848649235e350f73911cd548f62f8d8cd32d638e507779dd843c79648a2
|
3 |
+
size 32128
|
csgo/spawn/2/act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:479c957fe9c0aa0c77e66301c3fd74f49ef06efa1373567a1962970ad9245b15
|
3 |
+
size 768
|
csgo/spawn/2/full_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bde2962bff6f1db3d64318157f9daacea5e5c3d34a25580e8b0c07da177c3ba3
|
3 |
+
size 921728
|
csgo/spawn/2/full_res_0.png
ADDED
csgo/spawn/2/full_res_1.png
ADDED
csgo/spawn/2/full_res_2.png
ADDED
csgo/spawn/2/full_res_3.png
ADDED
csgo/spawn/2/low_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ab056038d3d532436e9a9d2190fd7179473909c4d6900823a566e99abdc40813
|
3 |
+
size 36992
|
csgo/spawn/2/next_act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d6e0afcffb09797ee7b9256b3ab491407fdd9a797f13358de34c092358152c61
|
3 |
+
size 32128
|
csgo/spawn/3/act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:16e2291ea1b6110b61abc86bcb7e2ff874b7f57a6cd0a158d94d2cdef9496baa
|
3 |
+
size 768
|
csgo/spawn/3/full_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:efe35b4f24bd72dbd77f1983dc266a7ae4e6b8b46104b84dc39ac389b601f921
|
3 |
+
size 921728
|
csgo/spawn/3/full_res_0.png
ADDED
csgo/spawn/3/full_res_1.png
ADDED
csgo/spawn/3/full_res_2.png
ADDED
csgo/spawn/3/full_res_3.png
ADDED
csgo/spawn/3/low_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b796f3c59a82feab7b544014a01389ab5b4f7c986af99a93e42184750c144bf4
|
3 |
+
size 36992
|
csgo/spawn/3/next_act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0454688b7bf89e56d5fa6461570db17aca1e7ba229f4dc03bcf86f1e2e2fdeb9
|
3 |
+
size 32128
|
csgo/spawn/4/act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7d557c9d496b2abe833c9fe6a20720601b124928404dc088dc30a8d6128eba46
|
3 |
+
size 768
|
csgo/spawn/4/full_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4d024a87b68587d9bf1858dcb6ce10521cc6e2730523a2dd108e4048397d91a3
|
3 |
+
size 921728
|
csgo/spawn/4/full_res_0.png
ADDED
csgo/spawn/4/full_res_1.png
ADDED
csgo/spawn/4/full_res_2.png
ADDED
csgo/spawn/4/full_res_3.png
ADDED
csgo/spawn/4/low_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3d69496a01494829a8d33cec798a5deb986d7e4bc622f78dce95358ff6bc6d0c
|
3 |
+
size 36992
|
csgo/spawn/4/next_act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:89c69ee811922d29b396a57edc38a976e4dc2c442be953836725a6630861f485
|
3 |
+
size 32128
|
csgo/spawn/5/act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ee3972bffb9b6d6cba6ec4c0c06a84d60ac1f5a5b8d651f323efc27036d053b0
|
3 |
+
size 768
|
csgo/spawn/5/full_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8f924da8d10699586c28bf922cb37ab40648141a587287eefcb822b651cb8637
|
3 |
+
size 921728
|
csgo/spawn/5/full_res_0.png
ADDED
csgo/spawn/5/full_res_1.png
ADDED
csgo/spawn/5/full_res_2.png
ADDED
csgo/spawn/5/full_res_3.png
ADDED
csgo/spawn/5/low_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ccceb71565fc430b8e538e512d189ef04dd87f496d99fd2a9c1c732b29f73a9b
|
3 |
+
size 36992
|