- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for PreferCustomSummarizer (0.13 sec)
-
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) -
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)