cboettig commited on
Commit
026bc1a
·
1 Parent(s): 557e5ab

and so it begins...

Browse files
rllib/ppo-asm.yaml ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ asm:
2
+ env: src.asm.asm
3
+ run: PPO
4
+ stop:
5
+ time_total_s: 24000
6
+ config:
7
+ lambda: 0.95
8
+ kl_coeff: 0.5
9
+ clip_param: 0.2
10
+ vf_clip_param: 400.0
11
+ entropy_coeff: 0.0001
12
+ rollout_fragment_length: auto
13
+ num_sgd_iter: 10
14
+ num_envs_per_worker: 24
15
+ min_time_s_per_iteration: 360
16
+ lr: 0.0003
17
+
18
+ # Run with Learner- and RLModule API (new stack).
19
+ _enable_learner_api: true
20
+ _enable_rl_module_api: true
21
+ # Use N Learner worker on the GPU
22
+ num_learner_workers: 2
23
+ num_gpus_per_learner_worker: 1
24
+ num_gpus: 0 # No GPU needed for driver.
25
+ # Since we are using learner workers, the driver process does not need
26
+ # a CPU in particular.
27
+ num_cpus_for_local_worker: 1
28
+ # Need to unset this b/c we are using the RLModule API, which
29
+ # provides exploration control via the RLModule's `forward_exploration` method.
30
+ exploration_config: {}
rllib/ppo-caribou.yaml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ caribou:
2
+ env: src.caribou.s3a2
3
+ run: PPO
4
+ stop:
5
+ time_total_s: 24000
6
+ config:
7
+ lambda: 0.95
8
+ kl_coeff: 0.5
9
+ clip_param: 0.2
10
+ vf_clip_param: 400.0
11
+ entropy_coeff: 0.0001
12
+ # train_batch_size: 64000
13
+ rollout_fragment_length: auto
14
+ # sgd_minibatch_size: 16000
15
+ num_sgd_iter: 10
16
+ num_envs_per_worker: 24
17
+ min_time_s_per_iteration: 30
18
+ lr: 0.0003
19
+
20
+ # Run with Learner- and RLModule API (new stack).
21
+ _enable_learner_api: true
22
+ _enable_rl_module_api: true
23
+ # Use N Learner worker on the GPU
24
+ num_learner_workers: 2
25
+ num_gpus_per_learner_worker: 1
26
+ num_gpus: 0 # No GPU needed for driver.
27
+ # Since we are using learner workers, the driver process does not need
28
+ # a CPU in particular.
29
+ num_cpus_for_local_worker: 1
30
+ # Need to unset this b/c we are using the RLModule API, which
31
+ # provides exploration control via the RLModule's `forward_exploration` method.
32
+ exploration_config: {}
rllib/rllib-environment.yml ADDED
@@ -0,0 +1,198 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: rllib
2
+ channels:
3
+ - conda-forge
4
+ dependencies:
5
+ - _libgcc_mutex=0.1=conda_forge
6
+ - _openmp_mutex=4.5=2_gnu
7
+ - anyio=4.0.0=pyhd8ed1ab_0
8
+ - argon2-cffi=23.1.0=pyhd8ed1ab_0
9
+ - argon2-cffi-bindings=21.2.0=py311hd4cff14_3
10
+ - arrow=1.2.3=pyhd8ed1ab_0
11
+ - asttokens=2.2.1=pyhd8ed1ab_0
12
+ - async-lru=2.0.4=pyhd8ed1ab_0
13
+ - attrs=23.1.0=pyh71513ae_1
14
+ - babel=2.12.1=pyhd8ed1ab_1
15
+ - backcall=0.2.0=pyh9f0ad1d_0
16
+ - backports=1.0=pyhd8ed1ab_3
17
+ - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0
18
+ - beautifulsoup4=4.12.2=pyha770c72_0
19
+ - bleach=6.0.0=pyhd8ed1ab_0
20
+ - brotli-python=1.1.0=py311hb755f60_0
21
+ - bzip2=1.0.8=h7f98852_4
22
+ - ca-certificates=2023.7.22=hbcca054_0
23
+ - cached-property=1.5.2=hd8ed1ab_1
24
+ - cached_property=1.5.2=pyha770c72_1
25
+ - certifi=2023.7.22=pyhd8ed1ab_0
26
+ - cffi=1.15.1=py311h409f033_3
27
+ - charset-normalizer=3.2.0=pyhd8ed1ab_0
28
+ - comm=0.1.4=pyhd8ed1ab_0
29
+ - debugpy=1.6.8=py311hb755f60_0
30
+ - decorator=5.1.1=pyhd8ed1ab_0
31
+ - defusedxml=0.7.1=pyhd8ed1ab_0
32
+ - entrypoints=0.4=pyhd8ed1ab_0
33
+ - exceptiongroup=1.1.3=pyhd8ed1ab_0
34
+ - executing=1.2.0=pyhd8ed1ab_0
35
+ - fqdn=1.5.1=pyhd8ed1ab_0
36
+ - idna=3.4=pyhd8ed1ab_0
37
+ - importlib-metadata=6.8.0=pyha770c72_0
38
+ - importlib_metadata=6.8.0=hd8ed1ab_0
39
+ - importlib_resources=6.0.1=pyhd8ed1ab_0
40
+ - ipykernel=6.25.1=pyh71e2992_0
41
+ - ipython=8.15.0=pyh0d859eb_0
42
+ - isoduration=20.11.0=pyhd8ed1ab_0
43
+ - jedi=0.19.0=pyhd8ed1ab_0
44
+ - jinja2=3.1.2=pyhd8ed1ab_1
45
+ - json5=0.9.14=pyhd8ed1ab_0
46
+ - jsonpointer=2.0=py_0
47
+ - jsonschema=4.19.0=pyhd8ed1ab_1
48
+ - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0
49
+ - jsonschema-with-format-nongpl=4.19.0=pyhd8ed1ab_1
50
+ - jupyter-lsp=2.2.0=pyhd8ed1ab_0
51
+ - jupyter_client=8.3.1=pyhd8ed1ab_0
52
+ - jupyter_core=5.3.1=py311h38be061_0
53
+ - jupyter_events=0.7.0=pyhd8ed1ab_2
54
+ - jupyter_server=2.7.3=pyhd8ed1ab_0
55
+ - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1
56
+ - jupyterlab=4.0.5=pyhd8ed1ab_0
57
+ - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0
58
+ - jupyterlab_server=2.24.0=pyhd8ed1ab_0
59
+ - ld_impl_linux-64=2.40=h41732ed_0
60
+ - libexpat=2.5.0=hcb278e6_1
61
+ - libffi=3.4.2=h7f98852_5
62
+ - libgcc-ng=13.1.0=he5830b7_0
63
+ - libgomp=13.1.0=he5830b7_0
64
+ - libnsl=2.0.0=h7f98852_0
65
+ - libsodium=1.0.18=h36c2ea0_1
66
+ - libsqlite=3.43.0=h2797004_0
67
+ - libstdcxx-ng=13.1.0=hfd8a6a1_0
68
+ - libuuid=2.38.1=h0b41bf4_0
69
+ - libzlib=1.2.13=hd590300_5
70
+ - markupsafe=2.1.3=py311h459d7ec_0
71
+ - matplotlib-inline=0.1.6=pyhd8ed1ab_0
72
+ - mistune=3.0.1=pyhd8ed1ab_0
73
+ - nbclient=0.8.0=pyhd8ed1ab_0
74
+ - nbconvert-core=7.8.0=pyhd8ed1ab_0
75
+ - nbformat=5.9.2=pyhd8ed1ab_0
76
+ - ncurses=6.4=hcb278e6_0
77
+ - nest-asyncio=1.5.6=pyhd8ed1ab_0
78
+ - notebook-shim=0.2.3=pyhd8ed1ab_0
79
+ - openssl=3.1.2=hd590300_0
80
+ - overrides=7.4.0=pyhd8ed1ab_0
81
+ - packaging=23.1=pyhd8ed1ab_0
82
+ - pandocfilters=1.5.0=pyhd8ed1ab_0
83
+ - parso=0.8.3=pyhd8ed1ab_0
84
+ - pexpect=4.8.0=pyh1a96a4e_2
85
+ - pickleshare=0.7.5=py_1003
86
+ - pip=23.2.1=pyhd8ed1ab_0
87
+ - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0
88
+ - platformdirs=3.10.0=pyhd8ed1ab_0
89
+ - prometheus_client=0.17.1=pyhd8ed1ab_0
90
+ - prompt-toolkit=3.0.39=pyha770c72_0
91
+ - prompt_toolkit=3.0.39=hd8ed1ab_0
92
+ - psutil=5.9.5=py311h2582759_0
93
+ - ptyprocess=0.7.0=pyhd3deb0d_0
94
+ - pure_eval=0.2.2=pyhd8ed1ab_0
95
+ - pycparser=2.21=pyhd8ed1ab_0
96
+ - pygments=2.16.1=pyhd8ed1ab_0
97
+ - pysocks=1.7.1=pyha2e5f31_6
98
+ - python=3.11.5=hab00c5b_0_cpython
99
+ - python-dateutil=2.8.2=pyhd8ed1ab_0
100
+ - python-fastjsonschema=2.18.0=pyhd8ed1ab_0
101
+ - python-json-logger=2.0.7=pyhd8ed1ab_0
102
+ - python_abi=3.11=3_cp311
103
+ - pytz=2023.3=pyhd8ed1ab_0
104
+ - pyyaml=6.0.1=py311h459d7ec_0
105
+ - pyzmq=25.1.1=py311h75c88c4_0
106
+ - readline=8.2=h8228510_1
107
+ - referencing=0.30.2=pyhd8ed1ab_0
108
+ - requests=2.31.0=pyhd8ed1ab_0
109
+ - rfc3339-validator=0.1.4=pyhd8ed1ab_0
110
+ - rfc3986-validator=0.1.1=pyh9f0ad1d_0
111
+ - rpds-py=0.10.0=py311h46250e7_0
112
+ - send2trash=1.8.2=pyh41d4057_0
113
+ - setuptools=68.1.2=pyhd8ed1ab_0
114
+ - six=1.16.0=pyh6c4a22f_0
115
+ - sniffio=1.3.0=pyhd8ed1ab_0
116
+ - soupsieve=2.5=pyhd8ed1ab_0
117
+ - stack_data=0.6.2=pyhd8ed1ab_0
118
+ - terminado=0.17.1=pyh41d4057_0
119
+ - tinycss2=1.2.1=pyhd8ed1ab_0
120
+ - tk=8.6.12=h27826a3_0
121
+ - tomli=2.0.1=pyhd8ed1ab_0
122
+ - tornado=6.3.3=py311h459d7ec_0
123
+ - traitlets=5.9.0=pyhd8ed1ab_0
124
+ - typing-extensions=4.7.1=hd8ed1ab_0
125
+ - typing_extensions=4.7.1=pyha770c72_0
126
+ - typing_utils=0.1.0=pyhd8ed1ab_0
127
+ - uri-template=1.3.0=pyhd8ed1ab_0
128
+ - urllib3=2.0.4=pyhd8ed1ab_0
129
+ - wcwidth=0.2.6=pyhd8ed1ab_0
130
+ - webcolors=1.13=pyhd8ed1ab_0
131
+ - webencodings=0.5.1=py_1
132
+ - websocket-client=1.6.2=pyhd8ed1ab_0
133
+ - wheel=0.41.2=pyhd8ed1ab_0
134
+ - xz=5.2.6=h166bdaf_0
135
+ - yaml=0.2.5=h7f98852_2
136
+ - zeromq=4.3.4=h9c3ff4c_1
137
+ - zipp=3.16.2=pyhd8ed1ab_0
138
+ - pip:
139
+ - aiosignal==1.3.1
140
+ - click==8.1.7
141
+ - cloudpickle==2.2.1
142
+ - cmake==3.27.2
143
+ - contourpy==1.1.0
144
+ - cycler==0.11.0
145
+ - dm-tree==0.1.8
146
+ - filelock==3.12.3
147
+ - fonttools==4.42.1
148
+ - frozenlist==1.4.0
149
+ - gputil==1.4.0
150
+ - grpcio==1.57.0
151
+ - gymnasium==0.26.3
152
+ - gymnasium-notices==0.0.1
153
+ - imageio==2.31.3
154
+ - kiwisolver==1.4.5
155
+ - lazy-loader==0.3
156
+ - lit==16.0.6
157
+ - lz4==4.3.2
158
+ - markdown-it-py==3.0.0
159
+ - matplotlib==3.7.2
160
+ - mdurl==0.1.2
161
+ - mizani==0.9.3
162
+ - mpmath==1.3.0
163
+ - msgpack==1.0.5
164
+ - networkx==3.1
165
+ - numpy==1.25.2
166
+ - nvidia-cublas-cu11==11.10.3.66
167
+ - nvidia-cuda-cupti-cu11==11.7.101
168
+ - nvidia-cuda-nvrtc-cu11==11.7.99
169
+ - nvidia-cuda-runtime-cu11==11.7.99
170
+ - nvidia-cudnn-cu11==8.5.0.96
171
+ - nvidia-cufft-cu11==10.9.0.58
172
+ - nvidia-curand-cu11==10.2.10.91
173
+ - nvidia-cusolver-cu11==11.4.0.1
174
+ - nvidia-cusparse-cu11==11.7.4.91
175
+ - nvidia-nccl-cu11==2.14.3
176
+ - nvidia-nvtx-cu11==11.7.91
177
+ - pandas==2.1.0
178
+ - patsy==0.5.3
179
+ - pillow==10.0.0
180
+ - plotnine==0.12.3
181
+ - polars==0.19.1
182
+ - protobuf==4.24.2
183
+ - pyarrow==13.0.0
184
+ - pyparsing==3.0.9
185
+ - pywavelets==1.4.1
186
+ - ray==2.6.3
187
+ - rich==13.5.2
188
+ - scikit-image==0.21.0
189
+ - scipy==1.11.2
190
+ - statsmodels==0.14.0
191
+ - sympy==1.12
192
+ - tensorboardx==2.6.2.2
193
+ - tifffile==2023.8.30
194
+ - torch==2.0.1
195
+ - triton==2.0.0
196
+ - typer==0.9.0
197
+ - tzdata==2023.3
198
+ prefix: /srv/conda/envs/rllib
sb3/a2c_action_is_S.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b7fa6fd325433369b748db5442d61797146410efee2706c1a219524bac2e952
3
+ size 91923
sb3/ars_action_is_S.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46600c05fed8776737c3fbcd2612a168f09a0ce6feb6530fb92dda1db6a42b0e
3
+ size 52044
sb3/ppo_action_is_S.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a4ffd7ea0d6c1944a33d87b388552ed106b624cceac3f31acbb0f8ac70a0c14
3
+ size 134569
sb3/sb3-environment.yml ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: sb3
2
+ channels:
3
+ - conda-forge
4
+ dependencies:
5
+ - _libgcc_mutex=0.1=conda_forge
6
+ - _openmp_mutex=4.5=2_gnu
7
+ - asttokens=2.2.1=pyhd8ed1ab_0
8
+ - backcall=0.2.0=pyh9f0ad1d_0
9
+ - backports=1.0=pyhd8ed1ab_3
10
+ - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0
11
+ - bzip2=1.0.8=h7f98852_4
12
+ - ca-certificates=2023.7.22=hbcca054_0
13
+ - comm=0.1.4=pyhd8ed1ab_0
14
+ - debugpy=1.6.8=py311hb755f60_0
15
+ - decorator=5.1.1=pyhd8ed1ab_0
16
+ - exceptiongroup=1.1.3=pyhd8ed1ab_0
17
+ - executing=1.2.0=pyhd8ed1ab_0
18
+ - importlib-metadata=6.8.0=pyha770c72_0
19
+ - importlib_metadata=6.8.0=hd8ed1ab_0
20
+ - ipykernel=6.25.1=pyh71e2992_0
21
+ - ipython=8.15.0=pyh0d859eb_0
22
+ - jedi=0.19.0=pyhd8ed1ab_0
23
+ - jupyter_client=8.3.1=pyhd8ed1ab_0
24
+ - jupyter_core=5.3.1=py311h38be061_0
25
+ - ld_impl_linux-64=2.40=h41732ed_0
26
+ - libexpat=2.5.0=hcb278e6_1
27
+ - libffi=3.4.2=h7f98852_5
28
+ - libgcc-ng=13.1.0=he5830b7_0
29
+ - libgomp=13.1.0=he5830b7_0
30
+ - libnsl=2.0.0=h7f98852_0
31
+ - libsodium=1.0.18=h36c2ea0_1
32
+ - libsqlite=3.43.0=h2797004_0
33
+ - libstdcxx-ng=13.1.0=hfd8a6a1_0
34
+ - libuuid=2.38.1=h0b41bf4_0
35
+ - libzlib=1.2.13=hd590300_5
36
+ - matplotlib-inline=0.1.6=pyhd8ed1ab_0
37
+ - ncurses=6.4=hcb278e6_0
38
+ - nest-asyncio=1.5.6=pyhd8ed1ab_0
39
+ - openssl=3.1.2=hd590300_0
40
+ - packaging=23.1=pyhd8ed1ab_0
41
+ - parso=0.8.3=pyhd8ed1ab_0
42
+ - pexpect=4.8.0=pyh1a96a4e_2
43
+ - pickleshare=0.7.5=py_1003
44
+ - pip=23.2.1=pyhd8ed1ab_0
45
+ - platformdirs=3.10.0=pyhd8ed1ab_0
46
+ - prompt-toolkit=3.0.39=pyha770c72_0
47
+ - prompt_toolkit=3.0.39=hd8ed1ab_0
48
+ - psutil=5.9.5=py311h2582759_0
49
+ - ptyprocess=0.7.0=pyhd3deb0d_0
50
+ - pure_eval=0.2.2=pyhd8ed1ab_0
51
+ - pygments=2.16.1=pyhd8ed1ab_0
52
+ - python=3.11.5=hab00c5b_0_cpython
53
+ - python-dateutil=2.8.2=pyhd8ed1ab_0
54
+ - python_abi=3.11=3_cp311
55
+ - pyzmq=25.1.1=py311h75c88c4_0
56
+ - readline=8.2=h8228510_1
57
+ - setuptools=68.1.2=pyhd8ed1ab_0
58
+ - six=1.16.0=pyh6c4a22f_0
59
+ - stack_data=0.6.2=pyhd8ed1ab_0
60
+ - tk=8.6.12=h27826a3_0
61
+ - tornado=6.3.3=py311h459d7ec_0
62
+ - traitlets=5.9.0=pyhd8ed1ab_0
63
+ - typing-extensions=4.7.1=hd8ed1ab_0
64
+ - typing_extensions=4.7.1=pyha770c72_0
65
+ - wcwidth=0.2.6=pyhd8ed1ab_0
66
+ - wheel=0.41.2=pyhd8ed1ab_0
67
+ - xz=5.2.6=h166bdaf_0
68
+ - zeromq=4.3.4=h9c3ff4c_1
69
+ - zipp=3.16.2=pyhd8ed1ab_0
70
+ - pip:
71
+ - absl-py==1.4.0
72
+ - aiosignal==1.3.1
73
+ - arrow==1.2.3
74
+ - attrs==23.1.0
75
+ - cachetools==5.3.1
76
+ - certifi==2023.7.22
77
+ - charset-normalizer==3.2.0
78
+ - click==8.1.7
79
+ - cloudpickle==2.2.1
80
+ - cmake==3.27.2
81
+ - contourpy==1.1.0
82
+ - cycler==0.11.0
83
+ - defusedxml==0.7.1
84
+ - farama-notifications==0.0.4
85
+ - filelock==3.12.3
86
+ - fonttools==4.42.1
87
+ - frozenlist==1.4.0
88
+ - glances==3.4.0.3
89
+ - google-auth==2.22.0
90
+ - google-auth-oauthlib==1.0.0
91
+ - grpcio==1.57.0
92
+ - gymnasium==0.29.1
93
+ - idna==3.4
94
+ - ipywidgets==8.1.0
95
+ - jinja2==3.1.2
96
+ - jsonschema==4.19.0
97
+ - jsonschema-specifications==2023.7.1
98
+ - jupyterlab-widgets==3.0.8
99
+ - kiwisolver==1.4.5
100
+ - lit==16.0.6
101
+ - markdown==3.4.4
102
+ - markupsafe==2.1.3
103
+ - matplotlib==3.7.2
104
+ - mizani==0.9.3
105
+ - mpmath==1.3.0
106
+ - msgpack==1.0.5
107
+ - networkx==3.1
108
+ - numpy==1.25.2
109
+ - nvidia-cublas-cu11==11.10.3.66
110
+ - nvidia-cuda-cupti-cu11==11.7.101
111
+ - nvidia-cuda-nvrtc-cu11==11.7.99
112
+ - nvidia-cuda-runtime-cu11==11.7.99
113
+ - nvidia-cudnn-cu11==8.5.0.96
114
+ - nvidia-cufft-cu11==10.9.0.58
115
+ - nvidia-curand-cu11==10.2.10.91
116
+ - nvidia-cusolver-cu11==11.4.0.1
117
+ - nvidia-cusparse-cu11==11.7.4.91
118
+ - nvidia-nccl-cu11==2.14.3
119
+ - nvidia-nvtx-cu11==11.7.91
120
+ - oauthlib==3.2.2
121
+ - pandas==2.1.0
122
+ - patsy==0.5.3
123
+ - pillow==10.0.0
124
+ - plotnine==0.12.3
125
+ - polars==0.19.1
126
+ - protobuf==4.24.2
127
+ - py3nvml==0.2.7
128
+ - pyarrow==13.0.0
129
+ - pyasn1==0.5.0
130
+ - pyasn1-modules==0.3.0
131
+ - pyparsing==3.0.9
132
+ - pytz==2023.3
133
+ - pyyaml==6.0.1
134
+ - ray==2.6.3
135
+ - referencing==0.30.2
136
+ - requests==2.31.0
137
+ - requests-oauthlib==1.3.1
138
+ - rpds-py==0.10.0
139
+ - rsa==4.9
140
+ - sb3-contrib==2.1.0
141
+ - scipy==1.11.2
142
+ - stable-baselines3==2.1.0
143
+ - statsmodels==0.14.0
144
+ - sympy==1.12
145
+ - tensorboard==2.14.0
146
+ - tensorboard-data-server==0.7.1
147
+ - torch==2.0.1
148
+ - triton==2.0.0
149
+ - tzdata==2023.3
150
+ - ujson==5.8.0
151
+ - urllib3==1.26.16
152
+ - werkzeug==2.3.7
153
+ - widgetsnbextension==4.0.8
154
+ - xmltodict==0.13.0
155
+ prefix: /srv/conda/envs/sb3
sb3/tqc_action_is_S.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a76826c3de94ea83437bb61fe7339447824e00e5ec806de982e11dbbc653bbf4
3
+ size 3181288