Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Ying (2.33 sec)

  1. tensorflow/c/c_api_experimental.cc

                  << session->graph->graph.ToGraphDefDebug().DebugString();
          tensorflow::Tensor internal_tensor;
          if (tensorflow::TF_TensorToTensor(tensor, &internal_tensor).ok()) {
            VLOG(1) << "Enqueu'ing tensor content: "
                    << internal_tensor.DebugString();
          }
        }
      }
    
      TF_Operation* enqueue_op = TF_GraphOperationByName(
          session->graph,
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 29.4K bytes
    - Viewed (0)
  2. tensorflow/c/eager/tape.h

        }
      }
    
      // Tell the forward accumulator to watch tensor_id, with a Tensor tangent
      // vector `tangent` of matching shape and dtype. Tangents are the "vector" in
      // "Jacobian-vector product"; `Watch`ing a new Tensor and immediately calling
      // FetchJVP for it would return `tangent`.
      void Watch(int64_t tensor_id, Gradient* tangent);
    
      // Removes the gradient associated with tensor_id. Should be called when the
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 02 12:40:29 GMT 2024
    - 47.2K bytes
    - Viewed (1)
Back to top