Graph
Fri 14 November 2025
title: "Graph" author: "Raja CSP Raman" date: 2019-05-07 description: "-" type: technical_note draft: false
import tensorflow as tf
import os
# Just disables the warning, doesn't enable AVX/FMA
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
graph = tf.get_default_graph()
graph.get_operations()
[]
a = tf.constant(2, name = "one")
operations = graph.get_operations()
operations
b = tf.constant …Category: tensorflow-work
Read More