continual-foragax 0.13.0__py3-none-any.whl → 0.15.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.13.0
3
+ Version: 0.15.0
4
4
  Summary: A continual reinforcement learning benchmark
5
5
  Author-email: Steven Tang <stang5@ualberta.ca>
6
6
  Requires-Python: >=3.8
@@ -1,8 +1,8 @@
1
1
  foragax/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  foragax/colors.py,sha256=rqNPiywP4Nvr0POhsGpasRk-nMMTS3DOwFRUgperlUk,2065
3
3
  foragax/env.py,sha256=EyT6KY0d0mXNh6yw10V-8SJVAdyPAGKtRdFV4wXq-JM,19836
4
- foragax/objects.py,sha256=-XkuZVbbSTFNJ02f6HsH4GbxZ6YrUetiY39r9Zw4UWE,6967
5
- foragax/registry.py,sha256=j2-KgcquYePklXMxpmDtGUdbjA6mvAO5XGNcwj0FByA,4486
4
+ foragax/objects.py,sha256=Q8_vwbwGQjVgFGpMEKsiV6Msk70oKiJpwoOzKcvhxdU,7125
5
+ foragax/registry.py,sha256=2s3kpK-tmCXLY1jiMH5bnkNgla9iHEAaMkIr012w4Zo,5482
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.13.0.dist-info/METADATA,sha256=L_kwRE8vRK-qfcH5AyrS3U_Rz_LZqM3svgC7ojGA738,4897
132
- continual_foragax-0.13.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
133
- continual_foragax-0.13.0.dist-info/entry_points.txt,sha256=Qiu6iE_XudrDO_bVAMeA435h4PO9ourt8huvSHiuMPc,41
134
- continual_foragax-0.13.0.dist-info/top_level.txt,sha256=-z3SDK6RfLIcLI24n8rdbeFzlVY3hunChzlu-v1Fncs,8
135
- continual_foragax-0.13.0.dist-info/RECORD,,
131
+ continual_foragax-0.15.0.dist-info/METADATA,sha256=EQru1oyNdOI1ARyMO5xjIvgCeOlUTxezpFP2NMIcsPE,4897
132
+ continual_foragax-0.15.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
133
+ continual_foragax-0.15.0.dist-info/entry_points.txt,sha256=Qiu6iE_XudrDO_bVAMeA435h4PO9ourt8huvSHiuMPc,41
134
+ continual_foragax-0.15.0.dist-info/top_level.txt,sha256=-z3SDK6RfLIcLI24n8rdbeFzlVY3hunChzlu-v1Fncs,8
135
+ continual_foragax-0.15.0.dist-info/RECORD,,
foragax/objects.py CHANGED
@@ -204,6 +204,13 @@ GREEN_DEATHCAP = DefaultForagaxObject(
204
204
  color=(0, 255, 0),
205
205
  regen_delay=(10, 10),
206
206
  )
207
+ GREEN_DEATHCAP_2 = DefaultForagaxObject(
208
+ name="green_deathcap",
209
+ reward=-5.0,
210
+ collectable=True,
211
+ color=(0, 255, 0),
212
+ regen_delay=(10, 10),
213
+ )
207
214
  GREEN_FAKE = DefaultForagaxObject(
208
215
  name="green_fake",
209
216
  reward=0.0,
foragax/registry.py CHANGED
@@ -13,6 +13,7 @@ from foragax.objects import (
13
13
  BROWN_MOREL,
14
14
  BROWN_OYSTER,
15
15
  GREEN_DEATHCAP,
16
+ GREEN_DEATHCAP_2,
16
17
  GREEN_FAKE,
17
18
  LARGE_MOREL,
18
19
  LARGE_OYSTER,
@@ -59,6 +60,34 @@ ENV_CONFIGS: Dict[str, Dict[str, Any]] = {
59
60
  ),
60
61
  "nowrap": False,
61
62
  },
63
+ "ForagaxTwoBiome-v2": {
64
+ "size": (15, 15),
65
+ "aperture_size": None,
66
+ "objects": (BROWN_MOREL, BROWN_OYSTER, GREEN_DEATHCAP, GREEN_FAKE),
67
+ "biomes": (
68
+ # Morel biome
69
+ Biome(start=(3, 0), stop=(5, 15), object_frequencies=(0.5, 0.0, 0.25, 0.0)),
70
+ # Oyster biome
71
+ Biome(
72
+ start=(10, 0), stop=(12, 15), object_frequencies=(0.0, 0.5, 0.0, 0.25)
73
+ ),
74
+ ),
75
+ "nowrap": True,
76
+ },
77
+ "ForagaxTwoBiome-v3": {
78
+ "size": (15, 15),
79
+ "aperture_size": None,
80
+ "objects": (BROWN_MOREL, BROWN_OYSTER, GREEN_DEATHCAP_2, GREEN_FAKE),
81
+ "biomes": (
82
+ # Morel biome
83
+ Biome(start=(3, 0), stop=(5, 15), object_frequencies=(0.5, 0.0, 0.25, 0.0)),
84
+ # Oyster biome
85
+ Biome(
86
+ start=(10, 0), stop=(12, 15), object_frequencies=(0.0, 0.5, 0.0, 0.25)
87
+ ),
88
+ ),
89
+ "nowrap": True,
90
+ },
62
91
  "ForagaxTwoBiomeSmall-v1": {
63
92
  "size": (16, 8),
64
93
  "aperture_size": None,