Upload folder using huggingface_hub
Browse files- csgo/config/agent/csgo.yaml +65 -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/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/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/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/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/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/low_res.npy +3 -0
- csgo/spawn/5/next_act.npy +3 -0
- csgo/spawn/6/act.npy +3 -0
- csgo/spawn/6/full_res.npy +3 -0
- csgo/spawn/6/low_res.npy +3 -0
- csgo/spawn/6/next_act.npy +3 -0
csgo/config/agent/csgo.yaml
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
- 3
|
20 |
+
- 3
|
21 |
+
channels:
|
22 |
+
- 128
|
23 |
+
- 256
|
24 |
+
- 512
|
25 |
+
- 1024
|
26 |
+
- 1024
|
27 |
+
- 1024
|
28 |
+
attn_depths:
|
29 |
+
- 0
|
30 |
+
- 0
|
31 |
+
- 1
|
32 |
+
- 1
|
33 |
+
- 1
|
34 |
+
- 1
|
35 |
+
|
36 |
+
upsampler:
|
37 |
+
_target_: models.diffusion.DenoiserConfig
|
38 |
+
sigma_data: 0.5
|
39 |
+
sigma_offset_noise: 0.1
|
40 |
+
noise_previous_obs: false
|
41 |
+
upsampling_factor: 5
|
42 |
+
inner_model:
|
43 |
+
_target_: models.diffusion.InnerModelConfig
|
44 |
+
img_channels: 3
|
45 |
+
num_steps_conditioning: 1
|
46 |
+
cond_channels: 2048
|
47 |
+
depths:
|
48 |
+
- 2
|
49 |
+
- 2
|
50 |
+
- 2
|
51 |
+
- 2
|
52 |
+
channels:
|
53 |
+
- 64
|
54 |
+
- 64
|
55 |
+
- 128
|
56 |
+
- 256
|
57 |
+
attn_depths:
|
58 |
+
- 0
|
59 |
+
- 0
|
60 |
+
- 0
|
61 |
+
- 1
|
62 |
+
|
63 |
+
rew_end_model: null
|
64 |
+
|
65 |
+
actor_critic: null
|
csgo/config/env/csgo.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
train:
|
2 |
+
id: csgo
|
3 |
+
size: [150, 280]
|
4 |
+
num_actions: 36
|
5 |
+
path_data_low_res: /home/jovyan/makarov/diamond/processed_data/low_res
|
6 |
+
path_data_full_res: /home/jovyan/makarov/diamond/processed_data/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:158c88c506d0f14a77b52ae637f94207bceeaaebb2b213f536d0f554b02700e3
|
3 |
+
size 3943601250
|
csgo/spawn/0/act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:25562697d7836977f4e70a9e1b9cf8514d41418dff8adf7176d6efa09c3b73ff
|
3 |
+
size 1280
|
csgo/spawn/0/full_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a7782926f38abb9dae63980a8abde91a43a518bad93aa9e9be743847ff7c2219
|
3 |
+
size 504128
|
csgo/spawn/0/low_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:51f01e3837831b5fe8e29867cea3efbd6bfd25b457807a1e6c75800adcb356ba
|
3 |
+
size 20288
|
csgo/spawn/0/next_act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:402994fd69538544592460de67f71868fdb60675e157e53638c721ebb3d88f06
|
3 |
+
size 57728
|
csgo/spawn/1/act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:893d2c33bb5438451c1b5f13136e637b0f653478731ae75054575c9a92906482
|
3 |
+
size 1280
|
csgo/spawn/1/full_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fec6550343eee3e1aa26ece79882e7c11fc81e2d48e8bd93c07648216d75c005
|
3 |
+
size 504128
|
csgo/spawn/1/low_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2f7b7d1b850d31716a1bb3758cda04cf4aea905cd52ca151f472ee234782efb8
|
3 |
+
size 20288
|
csgo/spawn/1/next_act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ace142ba0c22bf1b5441b28fd2f02bba6fcc41c692add373c8c7a10f83ae3229
|
3 |
+
size 57728
|
csgo/spawn/2/act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7c338a16cff2dc3a7835230236e8bd67ca4a17b64a8af1c13f058f6855ca4a68
|
3 |
+
size 1280
|
csgo/spawn/2/full_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e664fc7a761471ea67a5069a97930817259f6f367f48400b287f2f6c24106b86
|
3 |
+
size 504128
|
csgo/spawn/2/low_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:09f8e94b506486b78ef214a9f4074e71ebce654ddb23ecb93ae518de289a4cf5
|
3 |
+
size 20288
|
csgo/spawn/2/next_act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:988b8a8cba854c07f46a843fd2628caee200a8fadf43f3df2a916956499f9794
|
3 |
+
size 57728
|
csgo/spawn/3/act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e459af3391bc08c4b433a3288600341d2f8db55c21e3cfcbd61155a213911ee0
|
3 |
+
size 1280
|
csgo/spawn/3/full_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c11430e001b23e0e6d5075115e62bcf003509182d46b8bf724dc37385e56267f
|
3 |
+
size 504128
|
csgo/spawn/3/low_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2cb1e7c353efe4f3c678ee3f33dc9c0c5ec74997899a377a7eb5ad7794162817
|
3 |
+
size 20288
|
csgo/spawn/3/next_act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c46d55c801351877ccef618144eeeee9e96506f35a89a6e7fcbafaf8aa7d5c73
|
3 |
+
size 57728
|
csgo/spawn/4/act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b1fbe4a91167c87db1e488962131ab2d29bf00094b016d14bcb1fe4cd86366fb
|
3 |
+
size 1280
|
csgo/spawn/4/full_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:32aab454c50a7238d1b1b1b4f5e3aa6c1a2058a4cd867d8c34acab64044263a9
|
3 |
+
size 504128
|
csgo/spawn/4/low_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:42ce7dcb00307a5925ecec9ce5b0487e52953c900c6a3fe461d98a210097efe3
|
3 |
+
size 20288
|
csgo/spawn/4/next_act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d74224578a2edcc09036e5014a7a92a2f726ecdb1c8cc7f30fd800d5f9ee99aa
|
3 |
+
size 57728
|
csgo/spawn/5/act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:893d2c33bb5438451c1b5f13136e637b0f653478731ae75054575c9a92906482
|
3 |
+
size 1280
|
csgo/spawn/5/full_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7c0bfdc16477b08ab1deb6a0b1147f11c8b394c4b8ec04646de080ef1d8b994f
|
3 |
+
size 504128
|
csgo/spawn/5/low_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:276350a73132616c9ab7fd9ccc2b6180492aa34aa4ffbfd3ecdbaf614402263d
|
3 |
+
size 20288
|
csgo/spawn/5/next_act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:788cb3df85cbe3e67aa2860dc141e8445da4fa43413af59412078535c3b7910e
|
3 |
+
size 57728
|
csgo/spawn/6/act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:633c61047e994311d519d1df282c9545254c019aca5f63d21b7da99180345e7f
|
3 |
+
size 1280
|
csgo/spawn/6/full_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4b4edc5520b5e08160446f60e6178ee33477724ed889b21ede5f4abb96d0cb57
|
3 |
+
size 504128
|
csgo/spawn/6/low_res.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c22c496ede613b981fe10191576390d9b5ad91d893dc1865c23d708ff46f9f6d
|
3 |
+
size 20288
|
csgo/spawn/6/next_act.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:990cad10a52c569c3895c9c1914a232e3bb02e9e91c8d9282af164ea10547b85
|
3 |
+
size 57728
|