continual-foragax 0.41.0__py3-none-any.whl → 0.42.0__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.41.0
3
+ Version: 0.42.0
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=_ETlPcqxuJp_qHMoLS9ilIoWHcl8rNyOqeYfY630gNU,72753
4
4
  foragax/objects.py,sha256=fVUPJYT7alvUl6KGZHZPYAkMVwup8s2BV6lWY5o7CdQ,27198
5
- foragax/registry.py,sha256=2qi7Dq96RZVyBQwAnejdBztQWJOQHNAw26UUPBTzIEY,20551
5
+ foragax/registry.py,sha256=3IA0BKHLviWE_wyeiNREA4c0LbIXc-sUOCTo-ZZB9mQ,21173
6
6
  foragax/rendering.py,sha256=InLADEXW912bETcZxBMvsCDSCaaWgqSGphf0-uz1fgM,1760
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.41.0.dist-info/METADATA,sha256=fLsfmSHPY5I3ARuc9sboFNcPJUqQTgqY9RIplXTeD0o,4713
132
- continual_foragax-0.41.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
133
- continual_foragax-0.41.0.dist-info/entry_points.txt,sha256=Qiu6iE_XudrDO_bVAMeA435h4PO9ourt8huvSHiuMPc,41
134
- continual_foragax-0.41.0.dist-info/top_level.txt,sha256=-z3SDK6RfLIcLI24n8rdbeFzlVY3hunChzlu-v1Fncs,8
135
- continual_foragax-0.41.0.dist-info/RECORD,,
131
+ continual_foragax-0.42.0.dist-info/METADATA,sha256=TMah7_muOXmYFWiwZ18jv-Cf5QbVk3Ab_E5udgJYuxk,4713
132
+ continual_foragax-0.42.0.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
133
+ continual_foragax-0.42.0.dist-info/entry_points.txt,sha256=Qiu6iE_XudrDO_bVAMeA435h4PO9ourt8huvSHiuMPc,41
134
+ continual_foragax-0.42.0.dist-info/top_level.txt,sha256=-z3SDK6RfLIcLI24n8rdbeFzlVY3hunChzlu-v1Fncs,8
135
+ continual_foragax-0.42.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
foragax/registry.py CHANGED
@@ -154,6 +154,17 @@ ENV_CONFIGS: Dict[str, Dict[str, Any]] = {
154
154
  "biome_consumption_threshold": 1000,
155
155
  "dynamic_biome_spawn_empty": 0.4,
156
156
  },
157
+ "ForagaxDiwali-v6": {
158
+ "size": (15, 15),
159
+ "aperture_size": None,
160
+ "objects": None,
161
+ "biomes": (Biome(start=(0, 0), stop=(15, 15), object_frequencies=(0.4,)),),
162
+ "nowrap": False,
163
+ "deterministic_spawn": True,
164
+ "dynamic_biomes": True,
165
+ "biome_consumption_threshold": 10000,
166
+ "dynamic_biome_spawn_empty": 0.4,
167
+ },
157
168
  "ForagaxTwoBiome-v1": {
158
169
  "size": (15, 15),
159
170
  "aperture_size": None,
@@ -615,6 +626,13 @@ def make(
615
626
  regen_delay=(9, 11),
616
627
  reward_repeat=100,
617
628
  )[:1]
629
+ if env_id == "ForagaxDiwali-v6":
630
+ config["objects"] = create_fourier_objects(
631
+ num_fourier_terms=10,
632
+ reward_delay=reward_delay,
633
+ regen_delay=(9, 11),
634
+ reward_repeat=1000,
635
+ )[:1]
618
636
 
619
637
  if env_id == "ForagaxSineTwoBiome-v1":
620
638
  biome1_oyster, biome1_deathcap, biome2_oyster, biome2_deathcap = (