lucasosouza
3/16/2017 - 4:45 PM

saving svc_pickle

saving svc_pickle

model = {}
model['svc'] = svc
model['scaler']= X_scaler
model['orient'] = orient
model['pix_per_cell'] = pix_per_cell
model['cell_per_block'] = cell_per_block
model['spatial_size']= spatial_size
model['hist_bins'] = hist_bins

import pickle
with open('./svc_pickle.p', 'wb') as f:
    pickle.dump(model, f)