finishing iml experiment

This commit is contained in:
Niko Feith 2023-09-14 21:26:45 +02:00
parent a4ead66e95
commit 1dbad3fa0d
2 changed files with 32 additions and 1 deletions

View 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'
),
])

View File

@ -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'
], ],
}, },
) )