1 Star 1 Fork 1

鬼&泣 / gym-super-mario-bros

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
speedtest.py 344 Bytes
一键复制 编辑 原始数据 按行查看 历史
Kautenja 提交于 2019-06-17 13:34 . speed test script
from gym_super_mario_bros import SuperMarioBrosEnv
import tqdm
env = SuperMarioBrosEnv()
done = True
try:
for _ in tqdm.tqdm(range(5000)):
if done:
state = env.reset()
done = False
else:
state, reward, done, info = env.step(env.action_space.sample())
except KeyboardInterrupt:
pass
1
https://gitee.com/devilmaycry812839668/gym-super-mario-bros.git
git@gitee.com:devilmaycry812839668/gym-super-mario-bros.git
devilmaycry812839668
gym-super-mario-bros
gym-super-mario-bros
master

搜索帮助