Skip to content

Releases: jyotishp/rolling-shutter-correction

Model instance for Vanilla CNN

14 Apr 23:32
3413220

Choose a tag to compare

Pre-release

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

14 Apr 15:59
846ae3f

Choose a tag to compare

Pre-release

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')