Skip to content

Commit cebe125

Browse files
committed
Adjust angle lookup range for improved control in driving behavior
1 parent edcd4c3 commit cebe125

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/HL/Autotech_constant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"PORT": 10940
2929
}
3030

31-
ANGLE_LOOKUP = np.linspace(-MAX_ANGLE, MAX_ANGLE, 16)
31+
ANGLE_LOOKUP = np.linspace(-MAX_ANGLE+3, MAX_ANGLE-3, 16)
3232
SPEED_LOOKUP = np.linspace(MIN_SOFT_SPEED, MAX_SOFT_SPEED, 16)
3333

3434
Temperature = 0.75 # Temperature parameter for softmax function, used to control the sharpness of the distribution resols around 1

0 commit comments

Comments
 (0)