Skip to content

Commit 6d54849

Browse files
committed
new examples
1 parent 32e91ef commit 6d54849

2 files changed

Lines changed: 264 additions & 264 deletions

File tree

examples/example_extra_functions.ipynb

Lines changed: 258 additions & 257 deletions
Large diffs are not rendered by default.

examples/example_patch_based_inference.ipynb

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@
344344
"cell_type": "markdown",
345345
"metadata": {},
346346
"source": [
347-
"### YOLOv9: "
347+
"### YOLO11: "
348348
]
349349
},
350350
{
@@ -390,7 +390,7 @@
390390
"source": [
391391
"element_crops = MakeCropsDetectThem(\n",
392392
" image=img,\n",
393-
" model_path=\"yolov9c.pt\",\n",
393+
" model_path=\"yolo11m.pt\",\n",
394394
" segment=False,\n",
395395
" show_crops=False,\n",
396396
" shape_x=600,\n",
@@ -406,7 +406,7 @@
406406
"print('Basic yolo inference:')\n",
407407
"visualize_results_usual_yolo_inference(\n",
408408
" img,\n",
409-
" model=YOLO(\"yolov9c.pt\") ,\n",
409+
" model=YOLO(\"yolo11m.pt\") ,\n",
410410
" imgsz=640,\n",
411411
" conf=0.5,\n",
412412
" iou=0.7,\n",
@@ -568,7 +568,7 @@
568568
"cell_type": "markdown",
569569
"metadata": {},
570570
"source": [
571-
"### YOLOv9-seg:"
571+
"### YOLO11-seg:"
572572
]
573573
},
574574
{
@@ -579,7 +579,7 @@
579579
"source": [
580580
"element_crops = MakeCropsDetectThem(\n",
581581
" image=img,\n",
582-
" model_path=\"yolov9e-seg.pt\",\n",
582+
" model_path=\"yolo11m-seg.pt\",\n",
583583
" segment=True,\n",
584584
" show_crops=False,\n",
585585
" shape_x=600,\n",
@@ -637,7 +637,7 @@
637637
"print('Basic yolo inference:')\n",
638638
"visualize_results_usual_yolo_inference(\n",
639639
" img,\n",
640-
" model=YOLO(\"yolov9e-seg.pt\") ,\n",
640+
" model=YOLO(\"yolo11m-seg.pt\") ,\n",
641641
" imgsz=640,\n",
642642
" conf=0.5,\n",
643643
" iou=0.7,\n",
@@ -873,7 +873,6 @@
873873
"element_crops = MakeCropsDetectThem(\n",
874874
" image=img,\n",
875875
" model=YOLO('FastSAM-x.pt'),\n",
876-
" model_path=\"yolov8m.pt\",\n",
877876
" segment=True,\n",
878877
" show_crops=True,\n",
879878
" shape_x=400,\n",

0 commit comments

Comments
 (0)