-
Notifications
You must be signed in to change notification settings - Fork 29
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
Model structure #16
Comments
Hi :) Those extra concatenate and lambda operations come from here: dsen2-cr/Code/dsen2cr_network.py Lines 53 to 66 in 9d6cdcf
Iirc, I had to add those extra concatenated The first dimension, 16 for you, should be the |
When using the model for prediction, if the input size is 500x1000, and the model's input and output are 128x128, I observed in the source code that the program randomly crops the input size to 128x128 for prediction. If I want to predict on the entire 500x1000 image, what should I do? |
The data augmentation and random cropping are deactivated for the prediction step. However, it looks like I was supporting only square crops... so I think, atm you could change the |
Hmm, that's odd, in my setup the trainings were always stable... did you tune/change the learning rate maybe? |
|
@lu-qi0727 please use English for comments, thank you!
|
Hello, I noticed that when running your model for prediction, the resulting output is concatenated with the optical imagery, followed by a lambda operation. In the end, the output shape of the model is (16, 27, 128, 128) instead of (None, 13, 128, 128). Is there any issue with this?
The text was updated successfully, but these errors were encountered: