/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
PhysicsTools/TensorFlow/test/creategraph.py
49 строк
1 KB
Davide Valsecchi
Added Backend struct to handle GPU session in TensorFlow
01 фев 2023, 12:50
01 фев 2023, 12:50
4396ec9
Код
Авторство
О чём код?
# coding: utf-8 """ Test script to create a simple graph for testing purposes at bin/data and save it using the SavedModel serialization format. https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/saved_model/README.md """ import os import sys import cmsml # get tensorflow and work with the v1 compatibility layer tf, tf1, tf_version = cmsml.tensorflow.import_tf() tf = tf1 tf.disable_eager_execution() # prepare the datadir if len(sys.argv) >= 2: datadir = sys.argv[1] else: thisdir = os.path.dirname(os.path.abspath(__file__)) datadir = os.path.join(os.path.dirname(thisdir), "bin", "data") # create the graph x_ = tf.placeholder(tf.float32, [None, 10], name="input") scale_ = tf.placeholder(tf.float32, name="scale") W = tf.Variable(tf.ones([10, 1])) b = tf.Variable(tf.ones([1])) h = tf.add(tf.matmul(x_, W), b) y = tf.multiply(h, scale_, name="output") # Setup the script to run on CPU only config = tf.ConfigProto( device_count = {'GPU': 0} ) sess = tf.Session(config=config) sess.run(tf.global_variables_initializer()) print(sess.run(y, feed_dict={scale_: 1.0, x_: [range(10)]})[0][0]) # write it builder = tf.saved_model.builder.SavedModelBuilder(os.path.join(datadir, "simplegraph")) builder.add_meta_graph_and_variables(sess, [tf.saved_model.tag_constants.SERVING]) builder.save()