Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
hbuurmei committed Jan 19, 2025
1 parent e1956a9 commit becb2ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stack/main/src/executor/executor/run_experiment_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@

class RunExperimentNode(Node):
"""
This node is responsible for running the experiment, which can be either a trajectory tracking or user-defined position tracking.
This node is responsible for running experiments, which can be either trajectory tracking or user-defined position tracking.
"""
def __init__(self):
super().__init__('run_experiment_node')
self.declare_parameters(namespace='', parameters=[
('debug', False), # False or True (print debug messages)
('experiment_type', 'traj'), # 'traj' or 'user' (what input is being tracked)
('model_name', 'ssmr_200g'), # 'nn' or 'poly' (what model to use)
('model_name', 'ssmr_200g'), # 'ssmr_200g' (what model to use)
('controller_type', 'mpc'), # 'ik' or 'mpc' (what controller to use)
('results_name', 'base_experiment') # name of the results file
])
Expand Down

0 comments on commit becb2ae

Please sign in to comment.