The above issue on OSError: SavedModel file does not exist at: cassava_leaf.h5/{saved_model.pbtxt|saved_model.pb}
was due to a bit large size of model and we did not provide an absolute path to the model location, the application could not find the same during startup.
The issue resolved by manually transferring the h5-model file to a location like /home on the App Service and updated the app.py file to use an absolute path in order to refer the file.
Similar to: model=load_model('/home/cassava_leaf.h5')