-
Notifications
You must be signed in to change notification settings - Fork 260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can not reduce model reduce #31
Comments
Yes the weights are trained using kitti_train. With the downloaded weights, are you missing a zero and it's 0.008421? Because that's about what I get when I use the tensorflow backend (with theano, I get ~0.007). Not sure why it seems to not train as well for some people. Easy first things to try are different optimizers/learning rates/momentum. Sometimes Rmsprop works better when adam struggles, so you can give that a try. |
@kikyou123 I got the similar result with you, my env is tensorflow-gpu 1.2.1, keras 2.0.6 with cudnn v5.1 for cuda 8.0.Model MSE: 0.017124 |
@robbiewu008 It seems there is a bug in the code. |
@kikyou123 missing the Reshape, could you share it? |
@kikyou123 still don't work. |
@kikyou123 It works now, thank you so much! Model MSE: 0.006937 |
@kikyou123 Did you successfully train the model for muti-step prediction? I get the stable frames over time step. |
@kikyou123 It looks like there's an issue with TimeDistributed in Keras 2 where it overrides the initial weights of the layer to be wrapped (keras-team/keras#8895). I changed the kitti_train.py code to account for this (9f6482e). It should work now, but let me know if you find any other issues - thanks! |
@kikyou123 @bill-lotter hi. I tried run the multi prediction code. I barely see the differences from it. Is this the correct steps?
|
when i download your model, the Model MSE is 0.08421.
But when I run the kitti_train.py and use the trained weights, I get the Model MSE 0.018259
this is my results in the test set:
Is the model in download_models.sh using the kitti_train.py?
The text was updated successfully, but these errors were encountered: