continual-foragax 0.24.0__py3-none-any.whl → 0.24.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: continual-foragax
3
- Version: 0.24.0
3
+ Version: 0.24.2
4
4
  Summary: A continual reinforcement learning benchmark
5
5
  Author-email: Steven Tang <stang5@ualberta.ca>
6
6
  Requires-Python: >=3.8
@@ -2,7 +2,7 @@ foragax/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  foragax/colors.py,sha256=rqNPiywP4Nvr0POhsGpasRk-nMMTS3DOwFRUgperlUk,2065
3
3
  foragax/env.py,sha256=t0tb4IiDFiC3xJLLv7s_IFOYgoyRdje1PcnEvJNcyVM,23578
4
4
  foragax/objects.py,sha256=CblI0NI7PQzeKk3MZa8sbaa9wB4pc_8CyOGbJOFWytE,9391
5
- foragax/registry.py,sha256=ipSATULldQ_CaRkSPo-eLM0aeE4NykrgQW9BIl7dhJU,12485
5
+ foragax/registry.py,sha256=iK-Pc9m7NGTds6UidE92LGNMGoMDwJHP09RcO5AwOZ0,12971
6
6
  foragax/rendering.py,sha256=bms7wvBZTofoR-K-2QD2Ggeed7Viw8uwAEiEpEM3eSo,2768
7
7
  foragax/weather.py,sha256=KNAiwuFz8V__6G75vZIWQKPocLzXqxXn-Vt4TbHIpcA,1258
8
8
  foragax/data/ECA_non-blended_custom/TG_SOUID100897.txt,sha256=N7URbX6VlCZvCboUogYjMzy1I-0cfNPOn0QTLSHHfQ0,1776751
@@ -128,8 +128,8 @@ foragax/data/ECA_non-blended_custom/TG_SOUID156887.txt,sha256=juzTPgJoJxfqmZkorL
128
128
  foragax/data/ECA_non-blended_custom/elements.txt,sha256=OtcUBoDAHxuln79BPKGu0tsQxG_5G2BfAX3Ck130kEA,4507
129
129
  foragax/data/ECA_non-blended_custom/metadata.txt,sha256=nudnmOCy5cPJfSXt_IjyX0S5-T7NkCZREICZSimqeqc,48260
130
130
  foragax/data/ECA_non-blended_custom/sources.txt,sha256=1j3lSmINAoCMqPqFrHfZJriOz6sTYZNOhXzUwvTLas0,20857
131
- continual_foragax-0.24.0.dist-info/METADATA,sha256=y6JvGDkjP2rTV4ERx-t6rrFEBK8BD2S07LhzOmMGOtc,4897
132
- continual_foragax-0.24.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
133
- continual_foragax-0.24.0.dist-info/entry_points.txt,sha256=Qiu6iE_XudrDO_bVAMeA435h4PO9ourt8huvSHiuMPc,41
134
- continual_foragax-0.24.0.dist-info/top_level.txt,sha256=-z3SDK6RfLIcLI24n8rdbeFzlVY3hunChzlu-v1Fncs,8
135
- continual_foragax-0.24.0.dist-info/RECORD,,
131
+ continual_foragax-0.24.2.dist-info/METADATA,sha256=UcZgs3ahcEv6m-4DIRv8E9giWBeR_g9adHROvoASUpI,4897
132
+ continual_foragax-0.24.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
133
+ continual_foragax-0.24.2.dist-info/entry_points.txt,sha256=Qiu6iE_XudrDO_bVAMeA435h4PO9ourt8huvSHiuMPc,41
134
+ continual_foragax-0.24.2.dist-info/top_level.txt,sha256=-z3SDK6RfLIcLI24n8rdbeFzlVY3hunChzlu-v1Fncs,8
135
+ continual_foragax-0.24.2.dist-info/RECORD,,
foragax/registry.py CHANGED
@@ -220,7 +220,7 @@ ENV_CONFIGS: Dict[str, Dict[str, Any]] = {
220
220
  "deterministic_spawn": True,
221
221
  },
222
222
  "ForagaxTwoBiome-v13": {
223
- "size": None,
223
+ "size": (15, 15),
224
224
  "aperture_size": None,
225
225
  "objects": (
226
226
  BROWN_MOREL_UNIFORM_RANDOM,
@@ -228,12 +228,19 @@ ENV_CONFIGS: Dict[str, Dict[str, Any]] = {
228
228
  GREEN_DEATHCAP_UNIFORM_RANDOM,
229
229
  GREEN_FAKE_UNIFORM_RANDOM,
230
230
  ),
231
- "biomes": None,
231
+ "biomes": (
232
+ # Morel biome
233
+ Biome(start=(3, 0), stop=(5, 15), object_frequencies=(0.25, 0.0, 0.5, 0.0)),
234
+ # Oyster biome
235
+ Biome(
236
+ start=(10, 0), stop=(12, 15), object_frequencies=(0.0, 0.25, 0.0, 0.5)
237
+ ),
238
+ ),
232
239
  "nowrap": False,
233
240
  "deterministic_spawn": True,
234
241
  },
235
242
  "ForagaxTwoBiome-v14": {
236
- "size": None,
243
+ "size": (15, 15),
237
244
  "aperture_size": None,
238
245
  "objects": (
239
246
  BROWN_MOREL_UNIFORM,
@@ -241,7 +248,14 @@ ENV_CONFIGS: Dict[str, Dict[str, Any]] = {
241
248
  GREEN_DEATHCAP_UNIFORM,
242
249
  GREEN_FAKE_UNIFORM,
243
250
  ),
244
- "biomes": None,
251
+ "biomes": (
252
+ # Morel biome
253
+ Biome(start=(3, 0), stop=(5, 15), object_frequencies=(0.25, 0.0, 0.5, 0.0)),
254
+ # Oyster biome
255
+ Biome(
256
+ start=(10, 0), stop=(12, 15), object_frequencies=(0.0, 0.25, 0.0, 0.5)
257
+ ),
258
+ ),
245
259
  "nowrap": False,
246
260
  "deterministic_spawn": True,
247
261
  },
@@ -333,8 +347,6 @@ def make(
333
347
  "ForagaxTwoBiome-v8",
334
348
  "ForagaxTwoBiome-v9",
335
349
  "ForagaxTwoBiome-v10",
336
- "ForagaxTwoBiome-v13",
337
- "ForagaxTwoBiome-v14",
338
350
  "ForagaxTwoBiome-v15",
339
351
  ):
340
352
  margin = aperture_size[1] // 2 + 1