skywong1230
skywong1230
I got the same erro when I am going to run the code to train the transition model: The error in server side: Traceback (most recent call last): File "/home/sky/research/dask_generator.py",...
Hey, I solved the problem following your instructions, then another problem is appear: After I trained the steering model, then use the following command to visualize the results: "./view_steering_model.py ./outputs/steering_model/steering_angle.json"...
Yes, thank you! I have changed the code near line 115, Before: predicted_steers = model.predict(img[None, :, :, :].transpose(0, 3, 1, 2))[0][0] After: predicted_steers = model.predict(img[None, :, :, :].transpose(0, 1, 2,...