forked from hoangtranngoc/AirSim-RL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ini
24 lines (23 loc) · 942 Bytes
/
config.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# settings related to UE4/airsim
[airsim_settings]
image_height = 144
image_width = 256
image_channels = 3
waypoint_regex = WayPoint.*
track_width = 12
# settings related to training car agent
[car_agent]
# what are adjusted in driving the car
# 0: change steering only, 1(not supported yet): change throttle and steering,
# 2(not supported yet): change throttle, steering, and brake
action_mode = 0
# steering value from left to right in range [-1, 1]
# e.g: 0.3 means steering is from -0.3 (left) to 0.3 (right)
steering_max = 0.3
# the granularity of steering range as we use discrete values for steering
# e.g: 7 will produce discrete steering(with max=0.3) actions as: -0.3, -0.2, -0.1, 0.0, 0.1, 0.2, 0.3
steering_granularity = 7
# car's acceleration, now it is fixed, but will add a range of values later
fixed_throttle = 0.75
# total actions of car agent, update this accordingly when changing the above settings
actions = 7