-
Notifications
You must be signed in to change notification settings - Fork 2
/
self_driving_car_drive.py
221 lines (165 loc) · 6.94 KB
/
self_driving_car_drive.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
import base64
import logging
import os
from datetime import datetime
from pathlib import Path
from tensorflow import keras
import utils
from config import Config
logging.disable(logging.WARNING)
os.environ["TF_CPP_MIN_LOG_LEVEL"] = "3"
# import warnings filter
from warnings import simplefilter
# ignore all future warnings
simplefilter(action='ignore', category=FutureWarning)
import numpy as np
import socketio
import eventlet.wsgi
from PIL import Image
from flask import Flask
from io import BytesIO
from tensorflow.keras.models import load_model
from utils import rmse, resize
from selforacle.vae import VAE, normalize_and_reshape
sio = socketio.Server()
app = Flask(__name__)
model = None
prev_image_array = None
anomaly_detection = None
autoenconder_model = None
frame_id = 0
uncertainty = -1
@sio.on('telemetry')
def telemetry(sid, data):
if data:
# The current speed of the car
speed = float(data["speed"])
# the current way point and lap
wayPoint = int(data["currentWayPoint"])
lapNumber = int(data["lapNumber"])
# Cross-Track Error
cte = float(data["cte"])
# brake
brake = float(data["brake"])
# the distance driven by the car
distance = float(data["distance"])
# the time driven by the car
sim_time = int(data["sim_time"])
# the angular difference
ang_diff = float(data["ang_diff"])
# whether an OBE or crash occurred
isCrash = int(data["crash"])
# the total number of OBEs and crashes
number_obe = int(data["tot_obes"])
number_crashes = int(data["tot_crashes"])
# The current image from the center camera of the car
image = Image.open(BytesIO(base64.b64decode(data["image"])))
# save frame
image_path = ''
if cfg.TESTING_DATA_DIR != '':
timestamp = datetime.utcnow().strftime('%Y_%m_%d_%H_%M_%S_%f')[:-3]
image_filename = os.path.join(cfg.TESTING_DATA_DIR, cfg.SIMULATION_NAME, "IMG", timestamp)
image_path = '{}.jpg'.format(image_filename)
image.save(image_path)
try:
# from PIL image to numpy array
image = np.asarray(image)
# get the loss
image_copy = np.copy(image)
image_copy = resize(image_copy)
image_copy = normalize_and_reshape(image_copy)
loss = anomaly_detection.test_on_batch(image_copy)[2]
# apply the pre-processing
image = utils.preprocess(image)
# the model expects 4D array
image = np.array([image])
global steering_angle
global uncertainty
if cfg.USE_PREDICTIVE_UNCERTAINTY:
# take batch of data
x = np.array([image for idx in range(cfg.NUM_SAMPLES_MC_DROPOUT)])
# save predictions from a sample pass
outputs = model.predict_on_batch(x)
# average over all passes is the final steering angle
steering_angle = outputs.mean(axis=0)[0]
# variance of predictions gives the uncertainty
uncertainty = outputs.var(axis=0)[0]
else:
steering_angle = float(model.predict(image, batch_size=1))
# lower the throttle as the speed increases
# if the speed is above the current speed limit, we are on a downhill.
# make sure we slow down first and then go back to the original max speed.
speed_limit = cfg.MAX_SPEED
if speed > speed_limit:
speed_limit = cfg.MIN_SPEED # slow down
else:
speed_limit = cfg.MAX_SPEED
if loss > cfg.SAO_THRESHOLD * 1.1:
confidence = -1
elif cfg.SAO_THRESHOLD < loss <= cfg.SAO_THRESHOLD * 1.1:
confidence = 0
else:
confidence = 1
throttle = 1.0 - steering_angle ** 2 - (speed / speed_limit) ** 2
global frame_id
send_control(steering_angle, throttle, confidence, loss, cfg.MAX_LAPS, uncertainty)
if cfg.TESTING_DATA_DIR:
csv_path = os.path.join(cfg.TESTING_DATA_DIR, cfg.SIMULATION_NAME)
utils.write_csv_line(csv_path,
[frame_id, cfg.SDC_MODEL_NAME, cfg.ANOMALY_DETECTOR_NAME, cfg.SAO_THRESHOLD,
cfg.SIMULATION_NAME, lapNumber, wayPoint, loss,
uncertainty, # new metrics
cte, steering_angle, throttle, speed, brake, isCrash,
distance, sim_time, ang_diff, # new metrics
image_path, number_obe, number_crashes])
frame_id = frame_id + 1
except Exception as e:
print(e)
else:
sio.emit('manual', data={}, skip_sid=True) # DO NOT CHANGE THIS
@sio.on('connect') # DO NOT CHANGE THIS
def connect(sid, environ):
print("connect ", sid)
send_control(0, 0, 1, 0, 1, 1)
def send_control(steering_angle, throttle, confidence, loss, max_laps, uncertainty): # DO NOT CHANGE THIS
sio.emit(
"steer",
data={
'steering_angle': steering_angle.__str__(),
'throttle': throttle.__str__(),
'confidence': confidence.__str__(),
'loss': loss.__str__(),
'max_laps': max_laps.__str__(),
'uncertainty': uncertainty.__str__(),
},
skip_sid=True)
if __name__ == '__main__':
cfg = Config()
cfg.from_pyfile("config_my.py")
# load the self-driving car model
model_path = Path(os.path.join(cfg.SDC_MODELS_DIR, cfg.SDC_MODEL_NAME))
if "chauffeur" in cfg.SDC_MODEL_NAME:
model = load_model(model_path, custom_objects={"rmse": rmse})
elif "dave2" in cfg.SDC_MODEL_NAME or "epoch" in cfg.SDC_MODEL_NAME or "commaai" in cfg.SDC_MODEL_NAME:
model = load_model(model_path)
else:
print("cfg.SDC_MODEL_NAME option unknown. Exiting...")
exit()
# load the self-assessment oracle model
encoder, decoder = utils.load_autoencoder_from_disk()
anomaly_detection = VAE(model_name=cfg.ANOMALY_DETECTOR_NAME,
loss=cfg.LOSS_SAO_MODEL,
latent_dim=cfg.SAO_LATENT_DIM,
encoder=encoder,
decoder=decoder)
anomaly_detection.compile(optimizer=keras.optimizers.Adam(learning_rate=cfg.SAO_LEARNING_RATE))
# create the output dir
if cfg.TESTING_DATA_DIR != '':
utils.create_output_dir(cfg, utils.csv_fieldnames_improved_simulator)
print("RECORDING THIS RUN ...")
else:
print("NOT RECORDING THIS RUN ...")
# wrap Flask application with engineio's middleware
app = socketio.Middleware(sio, app)
# deploy as an eventlet WSGI server
eventlet.wsgi.server(eventlet.listen(('', 4567)), app)