79202711

Date: 2024-11-19 08:55:31
Score: 0.5
Natty:
Report link
float* output_layer = interpreter->typed_output_tensor<float>(0);  //Get pointer to the 0-th output layer (assuming it contains floats)
//Print first five values of 0-th output layer
for (int i = 0; i < 5; ++i) std::cout << output_layer[i] << " ";
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bart