v0.1.13 finish all goals eval (even crash)
This commit is contained in:
@@ -8,3 +8,4 @@
|
||||
'''
|
||||
from .go2_flat_task import Go2FlatGaugeConfig
|
||||
from .go2_slope_task import Go2SlopeGaugeConfig, Go2SlopeMujocoConfig
|
||||
from .go2_wave_task import Go2WaveGaugeConfig
|
||||
|
||||
19
robogauge/tasks/custom/go2/go2_wave_task.py
Normal file
19
robogauge/tasks/custom/go2/go2_wave_task.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
'''
|
||||
@File : go2_wave_task.py
|
||||
@Time : 2025/12/22 11:02:23
|
||||
@Author : wty-yy
|
||||
@Version : 1.0
|
||||
@Blog : https://wty-yy.github.io/
|
||||
@Desc : Go2 Wave Task Configuration
|
||||
'''
|
||||
from robogauge.tasks.robots import Go2Config, Go2MoEConfig
|
||||
from robogauge.tasks.gauge import WaveGaugeConfig
|
||||
from robogauge.tasks.simulator.mujoco_config import MujocoConfig
|
||||
|
||||
class Go2WaveGaugeConfig(WaveGaugeConfig):
|
||||
class metrics(WaveGaugeConfig.metrics):
|
||||
class dof_limits(WaveGaugeConfig.metrics.dof_limits):
|
||||
enabled = True
|
||||
soft_dof_limit_ratio = 0.7
|
||||
dof_names = ['hip', 'thigh'] # List of DOF names to monitor, None for all
|
||||
Reference in New Issue
Block a user