Open Courageux-J opened 6 years ago
thanks for your reply! i want to train new model by tuning parameters with your released lstm model how can i continue training with your model? and another question,how can i make the model size as the same as your released model size? thank you very much~
thanks for your reply! i want to train new model by tuning parameters with your released lstm model how can i continue training with your model? and another question,how can i make the model size as the same as your released model size? thank you very much~
hello , could you help me and tell me how to compute the trainable parameters please?
thanks for your reply! i want to train new model by tuning parameters with your released lstm model how can i continue training with your model? and another question,how can i make the model size as the same as your released model size? thank you very much~
hello , could you help me and tell me how to compute the trainable parameters please?
Sorry that this version of Tensorflow is very old. You may search Tensorflow + flops to see if there are available tools. Actually the model only use conv layers and LSTM, the layers and parameters defined in the code model.py, it would not be very difficult to calculate the value.
If you don't want to manually calculate, you may also write into more recent Pytorch and calculate params. It woundn't be very complicated.
Sorry again for such inconvenience.
Dear Professor Xin Tao thanks very much for you replay but can you help me to find the online demo or the code of the paper "Learning a Convolutional Neural Network for Non-uniform Motion Blur Removal ".
From: Xin Tao @.> Sent: Monday, June 19, 2023 6:42 AM To: jiangsutx/SRN-Deblur @.> Cc: noran.elaraby @.>; Comment @.> Subject: Re: [jiangsutx/SRN-Deblur] I have a question about model size,the lstm model which i trained is about 78.6MB.It's two times bigger than yours(only 30.7MB). What's the matter? (#20)
thanks for your reply! i want to train new model by tuning parameters with your released lstm model how can i continue training with your model? and another question,how can i make the model size as the same as your released model size? thank you very much~
hello , could you help me and tell me how to compute the trainable parameters please?
Sorry that this version of Tensorflow is very old. You may search Tensorflow + flops to see if there are available tools. Actually the model only use conv layers and LSTM, the layers and parameters defined in the code model.pyhttps://github.com/jiangsutx/SRN-Deblur/blob/master/models/model.py, it would not be very difficult to calculate the value.
If you don't want to manually calculate, you may also write into more recent Pytorch and calculate params. It woundn't be very complicated.
Sorry again for such inconvenience.
— Reply to this email directly, view it on GitHubhttps://github.com/jiangsutx/SRN-Deblur/issues/20#issuecomment-1596445036, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AVSJJNMMNOVTD7Y6YU3S3G3XL7DB7ANCNFSM4GBTEW2Q. You are receiving this because you commented.Message ID: @.***>
Do you mean the saved model from TensorFlow ? I think you saved intermediate values, such as gradients for each variable.
In our released model, only parameters used in inference stage are saved.