mirror of
https://github.com/jayofelony/pwnagotchi.git
synced 2025-07-01 18:37:27 -04:00
@ -90,6 +90,7 @@
|
||||
- libbz2-dev
|
||||
- libc-ares-dev
|
||||
- libc6-dev
|
||||
- libcap-dev
|
||||
- libdbus-1-dev
|
||||
- libdbus-glib-1-dev
|
||||
- libeigen3-dev
|
||||
|
@ -1,6 +1,6 @@
|
||||
import logging
|
||||
import gymnasium
|
||||
from gymnasium import spaces
|
||||
import gym
|
||||
from gym import spaces
|
||||
import numpy as np
|
||||
|
||||
import pwnagotchi.ai.featurizer as featurizer
|
||||
@ -8,7 +8,7 @@ import pwnagotchi.ai.reward as reward
|
||||
from pwnagotchi.ai.parameter import Parameter
|
||||
|
||||
|
||||
class Environment(gymnasium.Env):
|
||||
class Environment(gym.Env):
|
||||
metadata = {'render.modes': ['human']}
|
||||
params = [
|
||||
Parameter('min_rssi', min_value=-200, max_value=-50),
|
||||
|
@ -1,4 +1,4 @@
|
||||
from gymnasium import spaces
|
||||
from gym import spaces
|
||||
|
||||
|
||||
class Parameter(object):
|
||||
|
@ -1,4 +1,4 @@
|
||||
gymnasium
|
||||
gym
|
||||
shimmy
|
||||
pycryptodome
|
||||
requests
|
||||
|
Reference in New Issue
Block a user