- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for TF_SessionRun (0.31 sec)
-
tensorflow/c/c_api_experimental.cc
"Unable to find the dequeue node in the TF graph."); return nullptr; } VLOG(1) << "Running the dequeue op"; TF_Output output{dequeue_op, 0}; TF_Tensor* ret; TF_SessionRun(session, /*run_options*/ nullptr, // input related parameters /*inputs*/ nullptr, /*input_values*/ nullptr, /*ninputs*/ 0, // output related parameters
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 29.5K bytes - Viewed (0) -
tensorflow/c/c_api.cc
*graph_def.mutable_versions() = graph.versions(); // Fill graph_def with nodes with ids in the range // [session->last_num_graph_nodes, num_nodes), that is the nodes // added since the last TF_SessionRun() call. for (auto id = session->last_num_graph_nodes; id < num_nodes; ++id) { Node* const node = graph.FindNodeId(id); if (node != nullptr && node->IsOp()) {
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 102.3K bytes - Viewed (0) -
tensorflow/c/c_api_test.cc
TF_Output feeds[] = {{x, 0}, {y, 0}}; TF_Tensor* feedValues[] = {FloatTensor(X), FloatTensor(Y)}; TF_Output fetches[] = {dxy_dx, dxy_dy}; TF_Tensor* fetchValues[] = {nullptr, nullptr}; TF_SessionRun(sess, nullptr /* run_options */, feeds, feedValues, 2, fetches, fetchValues, 2, nullptr /* target_opers */, 0, nullptr /* run_metadata */, s_); TF_DeleteTensor(feedValues[0]);
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 97K bytes - Viewed (0) -
RELEASE.md
previously `TF_Session` has been renamed to `TF_DeprecatedSession`. * C API: Renamed `TF_Port` to `TF_Output`. * C API: The caller retains ownership of `TF_Tensor` objects provided to `TF_Run`, `TF_SessionRun`, `TF_SetAttrTensor` etc. * Renamed `tf.image.per_image_whitening()` to `tf.image.per_image_standardization()` * Move Summary protobuf constructors to `tf.summary` submodule.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Oct 22 14:33:53 UTC 2024 - 735.3K bytes - Viewed (0)