unox.model ========== .. py:module:: unox.model Functions --------- .. autoapisummary:: unox.model.load_model Module Contents --------------- .. py:function:: load_model(model_path: str) Load a trained model from a file. :param model_path: Path to the model file. Should be an .h5 or .keras file. :type model_path: str :returns: **model** -- The loaded model. :rtype: tf.keras.Model .. rubric:: Examples >>> model = load_model('model.h5') >>> model.summary()