yu4u / noise2noise

An unofficial and partial Keras implementation of "Noise2Noise: Learning Image Restoration without Clean Data"
MIT License
1.08k stars 234 forks source link

resume training #5

Closed ABDOELSHEMY closed 6 years ago

ABDOELSHEMY commented 6 years ago

hi @yu4u thank you for your great work could you please explean how to resume my training from i stop it (if possible) also how can i use the network to clean up my noisy photos thank you

yu4u commented 6 years ago

how to resume my training from i stop it (if possible)

Simply load saved model file (e.g. *.hdf5) and do model.fit_generator again.

how can i use the network to clean up my noisy photos

Load saved model file (e.g. *.hdf5) and do model.predict. Please refer to test_model.py for details.

ABDOELSHEMY commented 6 years ago

great, tank you