---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
[<ipython-input-5-13aae2c79e61>](https://localhost:8080/#) in <cell line: 9>()
7
8 # Run inference and draw detection result on the local copy of the original file
----> 9 detection_result_image = run_odt_and_draw_results(
10 INPUT_IMAGE_URL,
11 interpreter,
2 frames
[<ipython-input-1-e5b13d81f88d>](https://localhost:8080/#) in get_output_tensor(interpreter, index)
36 def get_output_tensor(interpreter, index):
37 """Retur the output tensor at the given index."""
---> 38 output_details = interpreter.get_output_details()[index]
39 tensor = np.squeeze(interpreter.get_tensor(output_details['index']))
40 return tensor
IndexError: list index out of range
when i tried to print index and interpreter.get_output_details() the output was-
when i tried to print
index
andinterpreter.get_output_details()
the output was-