You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- "sigma_H": proprioceptive position noise level (only used if "include_proprioceptive_endeffector_signals==True") [E-LQG (not used in paper)]
64
-
- "sigma_Hdot": visual velocity noise level [E-LQG ("sigma_v" in paper)]
65
-
- "sigma_frc": visual force noise level [E-LQG ("sigma_f" in paper)]
64
+
- "sigma_Hdot": velocity perception noise level [E-LQG ("sigma_v" in paper)]
65
+
- "sigma_frc": force perception noise level [E-LQG ("sigma_f" in paper)]
66
66
- "sigma_e": gaze noise level [E-LQG]
67
-
- "gamma": visual position noise weight [E-LQG]
67
+
- "gamma": position perception noise weight [E-LQG]
68
68
- "saccade_times": array of indices that correspond to saccade times; here, this should be [n_s,N] (avoid whitespaces between list entries in command line argument!), with n_s saccade time between initial position and target and N final time step index [E-LQG (see "n_s" in paper)]
69
69
- "Delta": observation time lag in time steps (WARNING: experimental!) [LQG/E-LQG (not used in paper)]
- passage_times: see above (might be set to default values if initially None)
938
938
- saccade_times: see above (might be set to default values if initially None)
939
939
"""
940
-
# INFO: for E-LQG, proprioceptive noise (defined by sigma_H, sigma_e) should be much larger than visual noise (defined by gamma) (following Todorov1998, p.55)
940
+
# INFO: for E-LQG, proprioceptive noise (defined by sigma_H, sigma_e) should be much larger than visual noise (e.g., defined by gamma) (following Todorov1998, p.55)
941
941
942
942
ifpassage_timesisNone:
943
943
passage_times=np.linspace(0, N, num_targets).astype(int) ifnum_targets>1 \
:param N: number of time steps (excluding final step) [int]
1578
1578
:param dim: dimension of the task (1D, 2D, or 3D) [int]
1579
1579
:param num_targets: number of targets [if system_dynamics=="E-LQG": including initial position] (can be used for via-point tasks) [int]
1580
-
:param gamma: visual position noise weight (only used for E-LQG) [float]
1580
+
:param gamma: position perception noise weight (only used for E-LQG) [float]
1581
1581
:param saccade_times: array of indices that correspond to saccade times [see n_s in paper] (only used for E-LQG) [num_targets-array]
1582
1582
:param system_matrices: tuple of relevant system matrices (see definition below) that only need to be computed once at the beginning [tuple]
1583
1583
:param initial_state_matrices: tuple of initial state vectors/matrices (see definition below) that only need to be computed once at the beginning [tuple]
0 commit comments