-
Notifications
You must be signed in to change notification settings - Fork 7
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
parameters #1
Comments
Hi, I see that you are trying to train the deconv50. In fact, I did not use any network starting with the name 'deconv' in this implementation you are using because I could not achieve as good performance as with other networks. Aside this, in general, I used the following parameters: learningRate= 0.01 For instance, using the above configuration, I achieved the following result in the validation set using deconvnet_1: And using deconvnet_2: Hope this can help you. |
Yeah it works now much better. 👍 But I think one mistake is still there. In your code you have a for loop with the following elements. But I think you have to loop over this elements: You have the following if clauses in the training methods:
Because of the 3 nets in your line only one would be trained while the others won't be trained at all. |
Hello ! Thanks for sharing your work ! Thanks in advance ! |
Sorry for late answer. |
Hi
First thanks for the code. I wanted to try it out myself but I got stuck.
When I train it and let it validate in the end it will classify all in the same class... it doesn't learn anything at all.
I'm not sure but probably the parameters are wrong? What did you use?
I used for one:
input_data_path= D:/Master/merged/
output_path(for model, images, etc)= D:/Master/Output/FDSI/
former_model_path(only for testing purpose)=
learningRate= .0003
weight_decay= .5
batch_size= 100
niter= 5000
crop_size= 10
strideCrop= 10
networkType (deconv50|deconvICPR|deconvTuia|segnet25|segnetICPR)= deconv50
specific_event[0 to all]= 0
process[training|validate|testing]= training
The text was updated successfully, but these errors were encountered: