I want to distribute my learning deep learning model created using Keras.
The partner wants to use it without a complex environment design, such as installing python, keras, etc.
How can i do this? Should I make a .exe file?
You might want to explore this tutoiral .
The simplest code:
from keras.models import load_model model.save('my_model.h5') # creates a HDF5 file 'my_model.h5' # returns a compiled model # identical to the previous one model = load_model('my_model.h5')
Source: https://habr.com/ru/post/1689761/More articles:Java Generics creates a list of objects that extends class A and implements the B interface - javaHow to populate pandas data columns with random dictionary values - pythonIdris - Eq for enumerated type - typesWhat does it mean to have a functor? - category-theoryHow to update the whole object without changing the identifier in pymongo? - pythonПрокручиваемая галерея в android, освобождение памяти - javaHow to add a link to a forgotten password below in the Signin in Firebase dialog box? - androidThe identifier "required" is not defined. "__type" does not contain such a member - angularDoes AsyncTask work at the same time? - javaInclude external js file in angular 5.0.0 project - javascriptAll Articles