You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from stable_baselines3.common.env_checker import check_env
from queue_env import QueueEnv
# Stable Baselines provides a helper to check that your environment follows the Gym interface. It also optionally checks that the environment is compatible with Stable-Baselines (and emits warning if necessary).
env = QueueEnv()
# If the environment don't follow the interface, an error will be thrown