mirror of
https://github.com/jayofelony/pwnagotchi.git
synced 2025-07-01 18:37:27 -04:00
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:
@ -36,7 +36,7 @@ class Environment(gym.Env):
|
|||||||
|
|
||||||
# see https://github.com/evilsocket/pwnagotchi/issues/583
|
# see https://github.com/evilsocket/pwnagotchi/issues/583
|
||||||
self._supported_channels = agent.supported_channels()
|
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)
|
self._histogram_size, self._observation_shape = featurizer.describe(self._extended_spectrum)
|
||||||
|
|
||||||
Environment.params += [
|
Environment.params += [
|
||||||
|
Reference in New Issue
Block a user