Skip to content

Commit a9c5469

Browse files
author
TF Object Detection Team
committed
Merge pull request #10223 from airman00:patch-2
PiperOrigin-RevId: 395336069
2 parents 18d6279 + 843111c commit a9c5469

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

research/object_detection/colab_tutorials/centernet_on_device.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,10 @@
244244
"\r\n",
245245
" interpreter.invoke()\r\n",
246246
"\r\n",
247-
" boxes = interpreter.get_tensor(output_details[0]['index'])\r\n",
248-
" classes = interpreter.get_tensor(output_details[1]['index'])\r\n",
249-
" scores = interpreter.get_tensor(output_details[2]['index'])\r\n",
250-
" num_detections = interpreter.get_tensor(output_details[3]['index'])\r\n",
247+
" scores = interpreter.get_tensor(output_details[0]['index'])\r\n",
248+
" boxes = interpreter.get_tensor(output_details[1]['index'])\r\n",
249+
" num_detections = interpreter.get_tensor(output_details[2]['index'])\r\n",
250+
" classes = interpreter.get_tensor(output_details[3]['index'])\r\n",
251251
"\r\n",
252252
" if include_keypoint:\r\n",
253253
" kpts = interpreter.get_tensor(output_details[4]['index'])\r\n",
@@ -759,4 +759,4 @@
759759
]
760760
}
761761
]
762-
}
762+
}

0 commit comments

Comments
 (0)