April 2020
Intermediate to advanced
438 pages
12h 2m
English
Go through the following the steps for training a deep neural net on the GTSRB images for traffic sign classification:
training_file = "traffic_signs/train.p"validation_file = "traffic_signs/valid.p"testing_file = "traffic_signs/test.p"with open(training_file, mode='rb') as f: train = pickle.load(f)with open(validation_file, mode='rb') as f: valid = pickle.load(f)with open(testing_file, mode='rb') as f: test = pickle.load(f)
X_train, y_train = train['features'], train['labels']X_valid, y_valid ...
Read now
Unlock full access