| 80 | |
| 81 | template <typename T> |
| 82 | string TensorDataToCsvString(const tensorflow::Tensor& tensor) { |
| 83 | const auto& data = tensor.flat<T>(); |
| 84 | return Join(data.data(), data.size(), ","); |
| 85 | } |
| 86 | |
| 87 | string TensorDataToTfLiteHexString(const tensorflow::Tensor& tensor) { |
| 88 | DynamicBuffer dynamic_buffer; |