HomeSort by relevance Sort by last modified time
    Searched refs:variable_node (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/python/framework/
graph_util_test.py 204 variable_node = variables.Variable(1.0, name="variable_node")
206 defun_node = plus_one(variable_node)
211 init = variables.initialize_variables([variable_node])
223 variable_names_whitelist=set(["variable_node"]))
230 variable_node = variables.Variable(1.0, name="variable_node")
233 variable_node, 2.0, name="output_node")
235 init = variables.initialize_variables([variable_node])
246 variable_names_whitelist=set(["variable_node"]))
    [all...]
  /external/tensorflow/tensorflow/python/tools/
freeze_graph_test.py 59 variable_node = variables.Variable(1.0, name="variable_node")
60 output_node = math_ops.multiply(variable_node, 2.0, name="output_node")
137 variable_node = variables.Variable(1.0, name="variable_node")
138 scores = math_ops.multiply(variable_node, feature, name="output_node")
173 variable_node = variables.Variable(1.0, name="variable_node")
174 output_node = math_ops.multiply(variable_node, 2.0, name="output_node")
  /external/tensorflow/tensorflow/cc/tools/
freeze_saved_model.cc 136 void ConvertVariableToConstant(const NodeDef& variable_node,
139 const_node->set_name(variable_node.name());
141 (*const_node->mutable_attr())["dtype"] = variable_node.attr().at("dtype");

Completed in 212 milliseconds