@@ -106,7 +106,7 @@ def random_crop(lowres_img, highres_img, hr_crop_size=96, scale=4):
106106 """Crop images.
107107
108108 low resolution images: 24x24
109- hight resolution images: 96x96
109+ high resolution images: 96x96
110110 """
111111 lowres_crop_size = hr_crop_size // scale # 96//4=24
112112 lowres_img_shape = tf .shape (lowres_img )[:2 ] # (height,width)
@@ -175,7 +175,7 @@ def dataset_object(dataset_cache, training=True):
175175
176176lowres , highres = next (iter (train_ds ))
177177
178- # Hight Resolution Images
178+ # High Resolution Images
179179plt .figure (figsize = (10 , 10 ))
180180for i in range (9 ):
181181 ax = plt .subplot (3 , 3 , i + 1 )
@@ -339,7 +339,7 @@ def plot_results(lowres, preds):
339339training the model with a wider variety of inputs with mixed downgrading factors, so as to
340340be able to handle a greater range of real-world images.
341341
342- You could also improve on the given basline EDSR model by implementing EDSR+,
342+ You could also improve on the given baseline EDSR model by implementing EDSR+,
343343or MDSR( Multi-Scale super-resolution) and MDSR+,
344344which were proposed in the same paper.
345345"""
0 commit comments