GithubHelp home page GithubHelp logo

Comments (2)

justin1121 avatar justin1121 commented on April 24, 2024

A trained vgg16 model can be exported like this:

import tensorflow.keras as K

from tensorflow.python.framework import graph_util
from tensorflow.python.framework import graph_io
import tensorflow as tf

vgg16 = tf.keras.applications.VGG16()

sess = K.backend.get_session()

num_output = 1
pred = [None]*num_output
pred_node_names = [None]*num_output
for i in range(num_output):
    pred_node_names[i] = "hi"+str(i)
    pred[i] = tf.identity(vgg16.outputs[i], name=pred_node_names[i])
print('output nodes names are: ', pred_node_names)

constant_graph = graph_util.convert_variables_to_constants(sess,
                                   sess.graph.as_graph_def(),
                                   pred_node_names)

frozen = graph_util.remove_training_nodes(constant_graph)

output = "vgg16.pb"
graph_io.write_graph(frozen, ".", output, as_text=False)
print('saved the freezed graph (ready for inference) at: ', output)

This might be able to be done with other models from keras.

from tf-encrypted.

yanndupis avatar yanndupis commented on April 24, 2024

Great! there was also this post where they convert .h5 file to protobuf file: https://medium.com/@johnsondsouza23/export-keras-model-to-protobuf-for-tensorflow-serving-101ad6c65142

from tf-encrypted.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.