You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
490 B
14 lines
490 B
from stable_baselines3 import PPO, DQN
|
|
from stable_baselines3.common.monitor import Monitor
|
|
from stable_baselines3.common.logger import configure, Image
|
|
from stable_baselines3.common.callbacks import BaseCallback, EvalCallback, CheckpointCallback
|
|
from gym_minigrid.wrappers import RGBImgObsWrapper, ImgObsWrapper, MiniWrapper
|
|
|
|
import os
|
|
from subprocess import call
|
|
import time
|
|
import argparse
|
|
import gym
|
|
|
|
env = gym.make("ALE/Skiing-v5", render_mode="human")
|
|
observation, info = env.reset()
|