Skip to content

Commit

Permalink
hotfix -- default max acceleration for dataset generator (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
younggyoseo authored Jul 3, 2024
1 parent 4c35bc6 commit b80e51f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rlbench/dataset_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def parse_args():
parser.add_argument('--episodes_per_task', type=int, default=10, help='The number of episodes to collect per task.')
parser.add_argument('--variations', type=int, default=-1, help='Number of variations to collect per task. -1 for all.')
parser.add_argument('--arm_max_velocity', type=float, default=1.0, help='Max arm velocity used for motion planning.')
parser.add_argument('--arm_max_acceleration', type=float, default=1.0, help='Max arm acceleration used for motion planning.')
parser.add_argument('--arm_max_acceleration', type=float, default=4.0, help='Max arm acceleration used for motion planning.')
return parser.parse_args()


Expand Down

0 comments on commit b80e51f

Please sign in to comment.