Skip to content

Commit 095116f

Browse files
ovalle15ovalle15
authored andcommitted
Replace data rows with global keys
1 parent 838ee16 commit 095116f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/prediction_upload/image_predictions.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@
218218
" name = \"bounding_box\", # must match your ontology feature's name\n",
219219
" confidence=0.5, \n",
220220
" value=lb_types.Rectangle(\n",
221-
" start=lb_types.Point(x=977, y=1690), # Top left\n",
222-
" end=lb_types.Point(x=330, y=225), # Bottom right\n",
221+
" start=lb_types.Point(x=20, y=15), # Top left\n",
222+
" end=lb_types.Point(x=25, y=30), # Bottom right\n",
223223
" ),\n",
224224
" \n",
225225
")\n",
@@ -248,8 +248,8 @@
248248
" name=\"bbox_with_radio_subclass\",\n",
249249
" confidence=0.5, # must match your ontology feature's name\n",
250250
" value=lb_types.Rectangle(\n",
251-
" start=lb_types.Point(x=933, y=541), # Top left\n",
252-
" end=lb_types.Point(x=191, y=330), # Bottom right\n",
251+
" start=lb_types.Point(x=10, y=20), # Top left\n",
252+
" end=lb_types.Point(x=25, y=30), # Bottom right\n",
253253
" ),\n",
254254
" classifications=[\n",
255255
" \tlb_types.ClassificationAnnotation(\n",

0 commit comments

Comments
 (0)