强化学习baseline论文—— rainbow算法中给出实验结果的54个atari2600游戏名称列表

 

 

 

复制代码
alien  
amidar                       
assault  
asterix  
asteroids  
atlantis 

bank_heist 
battle_zone 
beam_rider 
berzerk  
bowling  
boxing  
breakout  

centipede  
chopper_command 
crazy_climber 

defender
demon_attack  
double_dunk 

enduro

fishing_derby
freeway
frostbite

gopher
gravitar

hero

ice_hockey

kangaroo
krull
kung_fu_master

montezuma_revenge
ms_pacman

name_this_game

phoenix
pitfall
pong
private_eye

qbert

road_runner
robotank

seaquest
skiing
solaris
space_invaders
star_gunner
surround

tennis
time_pilot
tutankham

venture
video_pinball

wizard_of_wor

yars_revenge

zaxxon
复制代码

 

 

 

 

个人整理的   bin  文件地址:

https://gitee.com/devilmaycry812839668/atari_roms

 

原bin地址:

https://github.com/Kojoley/atari-py/tree/master/atari_py/atari_roms 

 

 

测试本地环境下是否已经安装好这54个游戏的环境:

前提:

已经安装atari_py库,同时在atari_py库下的atari_roms文件夹下存放了所有的游戏bin文件。

 

测试代码:

复制代码
import atari_py


games="""
alien  
amidar                       
assault  
asterix  
asteroids  
atlantis 

bank_heist 
battle_zone 
beam_rider 
berzerk  
bowling  
boxing  
breakout  

centipede  
chopper_command 
crazy_climber 

defender
demon_attack  
double_dunk 

enduro

fishing_derby
freeway
frostbite

gopher
gravitar

hero

ice_hockey

kangaroo
krull
kung_fu_master

montezuma_revenge
ms_pacman

name_this_game

phoenix
pitfall
pong
private_eye

qbert

road_runner
robotank

seaquest
skiing
solaris
space_invaders
star_gunner
surround

tennis
time_pilot
tutankham

venture
video_pinball

wizard_of_wor

yars_revenge

zaxxon
"""


def fun(games):
    ok = 0
    no_ok = 0
    for i in games.split():
        if i in set(atari_py.list_games()):
            ok += 1
        else:
            no_ok += 1
            print(i, "not in environment !!!")

    print(ok, " games in local environment")
    print(no_ok, " games not in local environment")


fun(games)
View Code
复制代码

 

结果:

 

 

 

 

=======================================================

 

atari_2600 游戏镜像权威下载地址:

http://www.atarimania.com/rom_collection_archive_atari_2600_roms.html

 

=======================================================

 

 

注意:(     更正 !!!  )

这里的surround.bin 文件无法导入内存,该款游戏无法正常运行。另外pacman游戏也有这个问题。本文中的54个游戏其实只有53个是可以正常运行的。

 

posted on   Angry_Panda  阅读(238)  评论(1编辑  收藏  举报

编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 零经验选手,Compose 一天开发一款小游戏!
· 一起来玩mcp_server_sqlite,让AI帮你做增删改查!!

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

点击右上角即可分享
微信分享提示