Results 5 comments of Ayush Gupta

Resolve Conflicting files.

Resolve conflict

Hi, You can save the model by this: ```tf.saved_model.save(my_model, "the_saved_model")``` And for loading your model back use this: ```new_model = tf.saved_model.load("the_saved_model")```

cat_images_path = Path('/home/jupyter/.fastai/data/inaturalist-usa-cats/images') cat_fnames = get_image_files(cat_images_path) cat_data = ImageDataBunch.from_name_re( cat_images_path, cat_fnames, r'/([^/]+)_\d+.jpg$', ds_tfms=get_transforms(), size=224) **cat_data.normalize(imagenet_stats)** Already added