| 118 | } |
| 119 | |
| 120 | int GetStringCount(const char* raw_buffer) { |
| 121 | // The first integers in the raw buffer is the number of strings. |
| 122 | return *GetIntPtr(raw_buffer); |
| 123 | } |
| 124 | |
| 125 | int GetStringCount(const TfLiteTensor* tensor) { |
| 126 | // The first integers in the raw buffer is the number of strings. |