jakeret / tf_unet

Generic U-Net Tensorflow implementation for image segmentation
GNU General Public License v3.0
1.9k stars 748 forks source link

How to change learning rate for Adam optimizer? #245

Closed I-CANT-CODE closed 5 years ago

I-CANT-CODE commented 5 years ago

How do I properly pass the learning rate into the optional kwargs argument when using the Adam optimizer?

jakeret commented 5 years ago

Here you find an example https://github.com/jakeret/tf_unet/blob/master/scripts/ufig_launcher.py#L60

I-CANT-CODE commented 5 years ago

worked thanks!