Skip to content

Commit

Permalink
address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Kotochleb committed Oct 16, 2024
1 parent 3f7ffaf commit b164259
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion happypose_examples/config/cosypose_params.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
cosypose:
# Name of BOP dataset, used to load specific weights and object models
dataset_name: $(var dataset_name)
# What type of NN model to use, type of training data used, 'pbr'|'synth+real'
# Type of neural network model to use. Available 'pbr'|'synth+real'
model_type: $(var model_type)
# Object renderer parameters
renderer:
Expand Down
2 changes: 1 addition & 1 deletion happypose_examples/config/cosypose_params_multiview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
cosypose:
# Name of BOP dataset, used to load specific weights and object models
dataset_name: $(var dataset_name)
# What type of NN model to use, type of training data used, 'pbr'|'synth+real'
# Type of neural network model to use. Available 'pbr'|'synth+real'
model_type: $(var model_type)
# Object renderer parameters
renderer:
Expand Down
2 changes: 1 addition & 1 deletion happypose_examples/launch/common.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def generate_launch_description():
DeclareLaunchArgument(
"model_type",
default_value="pbr",
description="What type of NN model to use, type of training data used, 'pbr'|'synth+real'.",
description="Type of neural network model to use. Available: 'pbr'|'synth+real'.",
),
DeclareLaunchArgument(
"device",
Expand Down
2 changes: 1 addition & 1 deletion happypose_examples/launch/single_view_demo.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def generate_launch_description():
DeclareLaunchArgument(
"model_type",
default_value="pbr",
description="What type of NN model to use, type of training data used, 'pbr'|'synth+real'.",
description="Type of neural network model to use. Available: 'pbr'|'synth+real'.",
),
DeclareLaunchArgument(
"device",
Expand Down
1 change: 0 additions & 1 deletion happypose_ros/test/test_initialization_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ def test_leading_publish_tf(happypose_params: dict) -> None:
**happypose_params,
parameter_overrides=[
Parameter("cosypose.dataset_name", Parameter.Type.STRING, "ycbv"),
Parameter("cosypose.model_type", Parameter.Type.STRING, "synth+real"),
Parameter("camera_names", Parameter.Type.STRING_ARRAY, ["cam_1"]),
Parameter("cameras.cam_1.leading", Parameter.Type.BOOL, True),
Parameter("cameras.cam_1.publish_tf", Parameter.Type.BOOL, True),
Expand Down

0 comments on commit b164259

Please sign in to comment.