changed cutoff for "extended channels" from 140 to 150 to alleviate "shape into shape" ai error

- more of a bandaid than a fix
This commit is contained in:
Sniffleupagus
2023-06-18 18:28:57 -07:00
parent 0d6d9503d8
commit d2227b939d

View File

@ -36,7 +36,7 @@ class Environment(gym.Env):
# see https://github.com/evilsocket/pwnagotchi/issues/583
self._supported_channels = agent.supported_channels()
self._extended_spectrum = any(ch > 140 for ch in self._supported_channels)
self._extended_spectrum = any(ch > 150 for ch in self._supported_channels)
self._histogram_size, self._observation_shape = featurizer.describe(self._extended_spectrum)
Environment.params += [