Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PreferCustomSummarizer (0.6 sec)

  1. tensorflow/c/eager/immediate_execution_tensor_handle.h

      // iterating over the resulting tensor. This may still be viable if resolving
      // the handle loses information, but `SummarizeValue` would be more precise.
      virtual bool PreferCustomSummarizer() const { return false; }
    
      // Returns a string which summarizes the value of this TensorHandle, for
      // debugging. Does not include a shape or dtype.
      //
      // Included in the default implementation of DebugString.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 10 21:56:24 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api.cc

        return s.status;
      }
      Status Dim(int dim_index, int64_t* dim) const override {
        TF_Status s;
        *dim = methods_.dim(data_, dim_index, &s);
        return s.status;
      }
    
      bool PreferCustomSummarizer() const override {
        return methods_.summarize != nullptr;
      }
    
      Status SummarizeValue(std::string& summary) const override {
        if (methods_.summarize == nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
Back to top