Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PreferCustomSummarizer (0.12 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: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api.cc

        return s.status;
      }
      absl::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;
      }
    
      absl::Status SummarizeValue(std::string& summary) const override {
        if (methods_.summarize == nullptr) {
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 43.9K bytes
    - Viewed (0)
Back to top