-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathrl_panda_obstacle_high_profile.py
More file actions
executable file
·379 lines (317 loc) · 14.1 KB
/
rl_panda_obstacle_high_profile.py
File metadata and controls
executable file
·379 lines (317 loc) · 14.1 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
import numpy as np
import mujoco
import gym
from gym import spaces
from stable_baselines3 import PPO
from stable_baselines3.common.env_util import make_vec_env
from stable_baselines3.common.vec_env import SubprocVecEnv
import torch.nn as nn
import warnings
import torch
import mujoco.viewer
import time
from typing import Optional
from scipy.spatial.transform import Rotation as R
# 忽略stable-baselines3的冗余UserWarning
warnings.filterwarnings("ignore", category=UserWarning, module="stable_baselines3.common.on_policy_algorithm")
import os
def write_flag_file(flag_filename="rl_visu_flag"):
flag_path = os.path.join("/tmp", flag_filename)
try:
with open(flag_path, "w") as f:
f.write("This is a flag file")
return True
except Exception as e:
return False
def check_flag_file(flag_filename="rl_visu_flag"):
flag_path = os.path.join("/tmp", flag_filename)
return os.path.exists(flag_path)
def delete_flag_file(flag_filename="rl_visu_flag"):
flag_path = os.path.join("/tmp", flag_filename)
if not os.path.exists(flag_path):
return True
try:
os.remove(flag_path)
return True
except Exception as e:
return False
class PandaObstacleEnv(gym.Env):
def __init__(self, visualize: bool = False):
super(PandaObstacleEnv, self).__init__()
if not check_flag_file():
write_flag_file()
self.visualize = visualize
else:
self.visualize = False
self.handle = None
self.model = mujoco.MjModel.from_xml_path('./model/franka_emika_panda/scene_pos_with_obstacles.xml')
self.data = mujoco.MjData(self.model)
# for i in range(self.model.ngeom):
# if self.model.geom_group[i] == 3:
# self.model.geom_conaffinity[i] = 0
if self.visualize:
self.handle = mujoco.viewer.launch_passive(self.model, self.data)
self.handle.cam.distance = 3.0
self.handle.cam.azimuth = 0.0
self.handle.cam.elevation = -30.0
self.handle.cam.lookat = np.array([0.2, 0.0, 0.4])
self.np_random = np.random.default_rng(None)
self.end_effector_id = mujoco.mj_name2id(self.model, mujoco.mjtObj.mjOBJ_BODY, 'ee_center_body')
self.home_joint_pos = np.array(self.model.key_qpos[0][:7], dtype=np.float32)
self.action_space = spaces.Box(low=-1.0, high=1.0, shape=(7,), dtype=np.float32)
# 7轴关节角度、目标位置、障碍物位置和球体直径
self.obs_size = 7 + 3 + 3 + 1
self.observation_space = spaces.Box(low=-np.inf, high=np.inf, shape=(self.obs_size,), dtype=np.float32)
# self.goal_position = np.array([0.4, 0.3, 0.4], dtype=np.float32)
self.goal_position = np.array([0.4, -0.3, 0.4], dtype=np.float32)
self.goal_arrival_threshold = 0.005
self.goal_visu_size = 0.02
self.goal_visu_rgba = [0.1, 0.3, 0.3, 0.8]
# 在xml中增加障碍物,worldbody 中添加如下
# <geom name="obstacle_0"
# type="sphere"
# size="0.060"
# pos="0.300 0.200 0.500"
# contype="1"
# conaffinity="1"
# mass="0.0"
# rgba="0.300 0.300 0.300 0.800"
# />
# 并在init函数中初始化障碍物的位置和大小
for i in range(self.model.ngeom):
name = mujoco.mj_id2name(self.model, mujoco.mjtObj.mjOBJ_GEOM, i)
if name == "obstacle_0":
self.obstacle_id_1 = i
self.obstacle_position = np.array(self.model.geom_pos[self.obstacle_id_1], dtype=np.float32)
self.obstacle_size = self.model.geom_size[self.obstacle_id_1][0]
self.last_action = self.home_joint_pos
def _render_scene(self) -> None:
if not self.visualize or self.handle is None:
return
self.handle.user_scn.ngeom = 0
total_geoms = 1
self.handle.user_scn.ngeom = total_geoms
mujoco.mjv_initGeom(
self.handle.user_scn.geoms[0],
mujoco.mjtGeom.mjGEOM_SPHERE,
size=[self.goal_visu_size, 0.0, 0.0],
pos=self.goal_position,
mat=np.eye(3).flatten(),
rgba=np.array(self.goal_visu_rgba, dtype=np.float32)
)
def reset(self, seed: Optional[int] = None, options: Optional[dict] = None) -> tuple[np.ndarray, dict]:
super().reset(seed=seed)
if seed is not None:
self.np_random = np.random.default_rng(seed)
# 重置关节到home位姿
mujoco.mj_resetData(self.model, self.data)
self.data.qpos[:7] = self.home_joint_pos
self.data.qpos[7:] = [0.04,0.04]
mujoco.mj_forward(self.model, self.data)
self.goal_position = np.array([self.goal_position[0], self.np_random.uniform(-0.3, 0.3), self.goal_position[2]], dtype=np.float32)
self.obstacle_position = np.array([self.obstacle_position[0], self.np_random.uniform(-0.3, 0.3), self.obstacle_position[2]], dtype=np.float32)
self.model.geom_pos[self.obstacle_id_1] = self.obstacle_position
mujoco.mj_step(self.model, self.data)
if self.visualize:
self._render_scene()
obs = self._get_observation()
self.start_t = time.time()
return obs, {}
def _get_observation(self) -> np.ndarray:
joint_pos = self.data.qpos[:7].copy().astype(np.float32)
return np.concatenate([joint_pos, self.goal_position, self.obstacle_position + np.random.normal(0, 0.001, size=3), np.array([self.obstacle_size], dtype=np.float32)])
def _calc_reward(self, joint_angles: np.ndarray, action: np.ndarray) -> tuple[np.ndarray, float]:
now_ee_pos = self.data.body(self.end_effector_id).xpos.copy()
dist_to_goal = np.linalg.norm(now_ee_pos - self.goal_position)
# 非线性距离奖励
if dist_to_goal < self.goal_arrival_threshold:
distance_reward = 20.0*(1.0+(1.0-(dist_to_goal / self.goal_arrival_threshold)))
elif dist_to_goal < 2*self.goal_arrival_threshold:
distance_reward = 10.0*(1.0+(1.0-(dist_to_goal / 2*self.goal_arrival_threshold)))
elif dist_to_goal < 3*self.goal_arrival_threshold:
distance_reward = 5.0*(1.0+(1.0-(dist_to_goal / 3*self.goal_arrival_threshold)))
else:
distance_reward = 1.0 / (1.0 + dist_to_goal)
# 平滑惩罚
smooth_penalty = 0.001 * np.linalg.norm(action - self.last_action)
# 碰撞惩罚
contact_reward = 10.0 * self.data.ncon
# 关节角度限制惩罚
joint_penalty = 0.0
for i in range(7):
min_angle, max_angle = self.model.jnt_range[:7][i]
if joint_angles[i] < min_angle:
joint_penalty += 0.5 * (min_angle - joint_angles[i])
elif joint_angles[i] > max_angle:
joint_penalty += 0.5 * (joint_angles[i] - max_angle)
time_penalty = 0.001 * (time.time() - self.start_t)
total_reward = (distance_reward
- contact_reward
- smooth_penalty
- joint_penalty
- time_penalty)
self.last_action = action.copy()
return total_reward, dist_to_goal, self.data.ncon > 0
def step(self, action: np.ndarray) -> tuple[np.ndarray, np.float32, bool, bool, dict]:
joint_ranges = self.model.jnt_range[:7]
scaled_action = np.zeros(7, dtype=np.float32)
for i in range(7):
scaled_action[i] = joint_ranges[i][0] + (action[i] + 1) * 0.5 * (joint_ranges[i][1] - joint_ranges[i][0])
self.data.ctrl[:7] = scaled_action
self.data.qpos[7:] = [0.04,0.04]
mujoco.mj_step(self.model, self.data)
reward, dist_to_goal, collision = self._calc_reward(self.data.qpos[:7], action)
terminated = False
if collision:
# print("collision happened, ", self.data.ncon)
# info = {}
# for i in range(self.data.ncon):
# contact = self.data.contact[i]
# # 获取几何体对应的body_id
# body1_id = self.model.geom_bodyid[contact.geom1]
# body2_id = self.model.geom_bodyid[contact.geom2]
# # 通过mj_id2name转换body_id为名称
# body1_name = mujoco.mj_id2name(self.model, mujoco.mjtObj.mjOBJ_BODY, body1_id)
# body2_name = mujoco.mj_id2name(self.model, mujoco.mjtObj.mjOBJ_BODY, body2_id)
# info["pair"+str(i)] = {}
# info["pair"+str(i)]["geom1"] = contact.geom1
# info["pair"+str(i)]["geom2"] = contact.geom2
# info["pair"+str(i)]["pos"] = contact.pos.copy()
# info["pair"+str(i)]["body1_name"] = body1_name
# info["pair"+str(i)]["body2_name"] = body2_name
# print(info)
reward -= 10.0
terminated = True
if dist_to_goal < self.goal_arrival_threshold:
terminated = True
print(f"[成功] 距离目标: {dist_to_goal:.3f}, 奖励: {reward:.3f}")
# else:
# print(f"[失败] 距离目标: {dist_to_goal:.3f}, 奖励: {reward:.3f}")
if not terminated:
if time.time() - self.start_t > 20.0:
reward -= 10.0
print(f"[超时] 时间过长,奖励减半")
terminated = True
if self.visualize and self.handle is not None:
self.handle.sync()
time.sleep(0.01)
obs = self._get_observation()
info = {
'is_success': not collision and terminated and (dist_to_goal < self.goal_arrival_threshold),
'distance_to_goal': dist_to_goal,
'collision': collision
}
return obs, reward.astype(np.float32), terminated, False, info
def seed(self, seed: Optional[int] = None) -> list[Optional[int]]:
self.np_random = np.random.default_rng(seed)
return [seed]
def close(self) -> None:
if self.visualize and self.handle is not None:
self.handle.close()
self.handle = None
def train_ppo(
n_envs: int = 24,
total_timesteps: int = 80_000_000,
model_save_path: str = "panda_ppo_reach_target",
visualize: bool = False,
resume_from: Optional[str] = None
) -> None:
ENV_KWARGS = {'visualize': visualize}
env = make_vec_env(
env_id=lambda: PandaObstacleEnv(** ENV_KWARGS),
n_envs=n_envs,
seed=42,
vec_env_cls=SubprocVecEnv,
vec_env_kwargs={"start_method": "fork"}
)
if resume_from is not None:
model = PPO.load(resume_from, env=env)
else:
# POLICY_KWARGS = dict(
# activation_fn=nn.ReLU,
# net_arch=[dict(pi=[256, 128], vf=[256, 128])]
# )
POLICY_KWARGS = dict(
activation_fn=nn.LeakyReLU,
net_arch=[
dict(
pi=[512, 256, 128],
vf=[512, 256, 128]
)
]
)
model = PPO(
policy="MlpPolicy",
env=env,
policy_kwargs=POLICY_KWARGS,
verbose=1,
n_steps=2048,
batch_size=2048,
n_epochs=10,
gamma=0.99,
# ent_coef=0.02, # 增加熵系数,保留后期探索以提升泛化性
ent_coef = 0.001,
clip_range=0.15, # 限制策略更新幅度
max_grad_norm=0.5, # 梯度裁剪防止爆炸
learning_rate=lambda f: 1e-4 * (1 - f), # 学习率线性衰减(初始1e-4,后期逐步降低)
device="cuda" if torch.cuda.is_available() else "cpu",
tensorboard_log="./tensorboard/panda_obstacle_avoidance/"
)
print(f"并行环境数: {n_envs}, 本次训练新增步数: {total_timesteps}")
model.learn(
total_timesteps=total_timesteps,
progress_bar=True
)
model.save(model_save_path)
env.close()
print(f"模型已保存至: {model_save_path}")
def test_ppo(
model_path: str = "panda_obstacle_avoidance",
total_episodes: int = 5,
) -> None:
env = PandaObstacleEnv(visualize=True)
model = PPO.load(model_path, env=env)
success_count = 0
print(f"测试轮数: {total_episodes}")
for ep in range(total_episodes):
obs, _ = env.reset()
done = False
episode_reward = 0.0
while not done:
obs = env._get_observation()
# print(f"观察: {obs}")
action, _states = model.predict(obs, deterministic=True)
# action += np.random.normal(0, 0.002, size=7) # 加入噪声
obs, reward, terminated, truncated, info = env.step(action)
# print(f"动作: {action}, 奖励: {reward}, 终止: {terminated}, 截断: {truncated}, 信息: {info}")
episode_reward += reward
done = terminated or truncated
if info['is_success']:
success_count += 1
print(f"轮次 {ep+1:2d} | 总奖励: {episode_reward:6.2f} | 结果: {'成功' if info['is_success'] else '碰撞/失败'}")
success_rate = (success_count / total_episodes) * 100
print(f"总成功率: {success_rate:.1f}%")
env.close()
if __name__ == "__main__":
TRAIN_MODE = True # 设为True开启训练模式
if TRAIN_MODE:
import os
os.system("rm -rf /home/dar/mujoco-bin/mujoco-learning/tensorboard*")
delete_flag_file()
MODEL_PATH = "assets/model/rl_obstacle_avoidance_checkpoint/panda_obstacle_avoidance_v3"
RESUME_MODEL_PATH = "assets/model/rl_obstacle_avoidance_checkpoint/panda_obstacle_avoidance_v2"
if TRAIN_MODE:
train_ppo(
n_envs=64,
total_timesteps=60_000_000,
model_save_path=MODEL_PATH,
visualize=True,
# resume_from=RESUME_MODEL_PATH
resume_from=None
)
else:
test_ppo(
model_path=MODEL_PATH,
total_episodes=100,
)
os.system("date")