mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-20 11:24:05 -06:00
6 lines
143 B
Python
6 lines
143 B
Python
import gym
|
|
import random
|
|
|
|
env = gym.make('SpaceInvaders-v0')
|
|
height, width, channels = env.observation_space.shape
|
|
actions = env.action_space.n |