Releases: jyotishp/rolling-shutter-correction
Releases · jyotishp/rolling-shutter-correction
Model instance for Vanilla CNN
Note: The following files are model instances saved using h5py. You can't load weights directly from these files. Download requirements.txt from and install necessary python 3 packages. Model instances need the exact same environment to run properly.
Filename convention
vanilla-weights.{epoch_number}-{validation_loss}.hdf5
Usage
- Install required packages.
- Load necessary Keras modules
from keras.models import load_model
- Load the model instance
model = load_model('path_to_model_file.hdf5')
Model instance for Row-Column CNN
Note: The following files are model instances saved using h5py. You can't load weights directly from these files. Download requirements.txt from and install necessary python 3 packages. Model instances need the exact same environment to run properly.
Filename convention
weights.{epoch_number}-{validation_loss}.hdf5
Usage
- Install required packages.
- Load necessary Keras modules
from keras.models import load_model
- Load the model instance
model = load_model('path_to_model_file.hdf5')