finishing iml experiment
This commit is contained in:
parent
a4ead66e95
commit
1dbad3fa0d
30
src/active_bo_ros/launch/interactive_bo_robot.launch.py
Executable file
30
src/active_bo_ros/launch/interactive_bo_robot.launch.py
Executable file
@ -0,0 +1,30 @@
|
|||||||
|
from launch import LaunchDescription
|
||||||
|
from launch_ros.actions import Node
|
||||||
|
from launch.actions import IncludeLaunchDescription
|
||||||
|
from launch.launch_description_sources import PythonLaunchDescriptionSource
|
||||||
|
|
||||||
|
from ament_index_python import get_package_share_directory
|
||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
|
def generate_launch_description():
|
||||||
|
return LaunchDescription([
|
||||||
|
IncludeLaunchDescription(
|
||||||
|
PythonLaunchDescriptionSource(
|
||||||
|
os.path.join(
|
||||||
|
get_package_share_directory('active_bo_ros'),
|
||||||
|
'rosbridge_server.launch.py'
|
||||||
|
)
|
||||||
|
)
|
||||||
|
),
|
||||||
|
Node(
|
||||||
|
package='active_bo_ros',
|
||||||
|
executable='interactive_bo_robot',
|
||||||
|
name='interactive_bo_robot'
|
||||||
|
),
|
||||||
|
Node(
|
||||||
|
package='franka_iml_experiment',
|
||||||
|
executable='iml_experiment',
|
||||||
|
name='iml_experiment'
|
||||||
|
),
|
||||||
|
])
|
@ -37,7 +37,8 @@ setup(
|
|||||||
'active_rl_topic = active_bo_ros.active_rl_topic:main',
|
'active_rl_topic = active_bo_ros.active_rl_topic:main',
|
||||||
'interactive_bo = active_bo_ros.interactive_bo:main',
|
'interactive_bo = active_bo_ros.interactive_bo:main',
|
||||||
'interactive_bo_2d = active_bo_ros.interactive_bo_2d:main',
|
'interactive_bo_2d = active_bo_ros.interactive_bo_2d:main',
|
||||||
'interactive_rl_2d = active_bo_ros.interactive_rl_2d:main'
|
'interactive_rl_2d = active_bo_ros.interactive_rl_2d:main',
|
||||||
|
'interactive_bo_robot = active_bo_ros.interactive_bo_robot:main'
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user