Skip to content

Commit cfa9a85

Browse files
authored
Merge pull request #1821 from 77c77/master
更新atari环境新版本安装
2 parents 75d06fb + 5ea1fe4 commit cfa9a85

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+70
-9
lines changed

official_examples/Using_Hetero_Cluster_Framework_to_train_a_Pong_Player_with_Rllib/client_cn4_test.ipynb

+37-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"outputs": [],
99
"source": [
1010
"!pip install gym[atari]\n",
11+
"!pip install gym[accept-rom-license]\n",
1112
"!pip install ray==1.2 matplotlib\n",
1213
"!pip install dm-tree dataclasses ray[rllib]"
1314
]
@@ -31,6 +32,35 @@
3132
"id": "ec1fe0b7",
3233
"metadata": {},
3334
"outputs": [],
35+
"source": [
36+
"import os\n",
37+
"import subprocess\n",
38+
"\n",
39+
"\n",
40+
"def system_cmd(cmd_list):\n",
41+
" cmd = subprocess.run(cmd_list, shell=False)\n",
42+
" if cmd.returncode != 0:\n",
43+
" print('cannot exec cmd: {}, exit with {}'.format(cmd_list, cmd.returncode))\n",
44+
" raise EnvironmentError\n",
45+
" return\n",
46+
"\n",
47+
"\n",
48+
"def install_gym(mode=None):\n",
49+
" if mode is not None:\n",
50+
" p_path = os.environ.get('SITE_PACKAGES_PATH', '/home/ma-user/anaconda/lib/python3.6/site-packages')\n",
51+
" file_path = os.path.join(p_path, 'AutoROM/roms')\n",
52+
" target = os.path.join(p_path, 'atari_py/atari_roms')\n",
53+
" system_cmd(['cp', '-rf', file_path, target])\n",
54+
" return\n",
55+
"\n",
56+
"\n",
57+
"install_gym(mode='atari')"
58+
]
59+
},
60+
{
61+
"cell_type": "code",
62+
"execution_count": null,
63+
"outputs": [],
3464
"source": [
3565
"import json\n",
3666
"import pickle\n",
@@ -157,7 +187,13 @@
157187
"config = prepare_test_config()\n",
158188
"client = PolicyClient(config)\n",
159189
"client.launch()"
160-
]
190+
],
191+
"metadata": {
192+
"collapsed": false,
193+
"pycharm": {
194+
"name": "#%%\n"
195+
}
196+
}
161197
},
162198
{
163199
"cell_type": "code",

official_examples/Using_Hetero_Cluster_Framework_to_train_a_Pong_Player_with_Rllib/learner_algorithm_dir/pip-requirements.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ ray==1.2
22
dm-tree
33
dataclasses
44
gym
5-
ray[rllib]
5+
ray[rllib]
6+
aioredis<2.0
7+
aiohttp==3.7

official_examples/Using_Hetero_Cluster_Framework_to_train_a_Pong_Player_with_Rllib/learner_data_url/rl_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
OBSERVATION_SPACE = gym.spaces.Box(0, 255, (42, 42, 1))
66
CONFIG_PPO = {
77
"rollout_fragment_length": 3000,
8-
"train_batch_size": 6000,
8+
"train_batch_size": 3000,
99
"framework": "tf",
1010
"preprocessor_pref": "rllib",
1111
"batch_mode": "complete_episodes",

official_examples/Using_Hetero_Cluster_Framework_to_train_a_Pong_Player_with_Rllib/worker_algorithm_dir/hetero_worker.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def env_boost(ind=0):
6868
rewards = 0
6969
client.end_episode(eid, obs)
7070
obs = env.reset()
71-
eid = client.start_episode(training_enabled=not FLAGS.no_train)
71+
eid = client.start_episode(training_enabled=True)
7272

7373

7474
if __name__ == "__main__":
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
ray==1.2
22
dm-tree
33
dataclasses
4-
gym
5-
ray[rllib]
4+
ray[rllib]
5+
aioredis<2.0
6+
aiohttp==3.7

official_examples/Using_Hetero_Cluster_Framework_to_train_a_Pong_Player_with_Rllib/worker_data_url/external_env.py

+25-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,31 @@
11
import os
2-
import gym
3-
from ray.rllib.env.wrappers.atari_wrappers import wrap_deepmind
2+
import subprocess
3+
4+
5+
def system_cmd(cmd_list):
6+
cmd = subprocess.run(cmd_list, shell=False)
7+
if cmd.returncode != 0:
8+
print('cannot exec cmd: {}, exit with {}'.format(cmd_list, cmd.returncode))
9+
raise EnvironmentError
10+
return
11+
412

13+
def install_gym(mode=None):
14+
system_cmd(['pip', 'uninstall', '-y', 'enum34'])
15+
system_cmd(['pip', 'install', 'gym[atari]'])
16+
if mode is not None:
17+
file_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'atari_roms')
18+
p_path = os.environ.get('SITE_PACKAGES_PATH', '/home/ma-user/anaconda/lib/python3.6/site-packages')
19+
target = os.path.join(p_path, 'atari_py/')
20+
system_cmd(['cp', '-rf', file_path, target])
21+
return
522

6-
os.system('pip install gym[atari]')
23+
24+
install_gym(mode='atari')
25+
26+
27+
import gym
28+
from ray.rllib.env.wrappers.atari_wrappers import wrap_deepmind
729

830

931
def create_env(name='PongNoFrameskip-v4'):

0 commit comments

Comments
 (0)