File tree Expand file tree Collapse file tree 11 files changed +13
-10
lines changed
Expand file tree Collapse file tree 11 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 11import numpy as np
22import pyvista as pv
3+
34from PyQt5 .QtGui import QImage
45
56# ----------------------------------------------------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -82,4 +82,4 @@ def load_model_combobox(self):
8282 self .model_combo .addItems (list (community_configs .keys ()))
8383
8484 # Set the default model
85- self .model_combo .setCurrentIndex (standard_models .index ('yolo26n -cls.pt' ))
85+ self .model_combo .setCurrentIndex (standard_models .index ('yolo11n -cls.pt' ))
Original file line number Diff line number Diff line change @@ -117,4 +117,4 @@ def load_model_combobox(self):
117117 self .model_combo .addItems (list (community_configs .keys ()))
118118
119119 # Set the default model
120- self .model_combo .setCurrentIndex (standard_models .index ('yolo26n .pt' ))
120+ self .model_combo .setCurrentIndex (standard_models .index ('yolo11n .pt' ))
Original file line number Diff line number Diff line change @@ -85,4 +85,4 @@ def load_model_combobox(self):
8585 self .model_combo .addItems (list (community_configs .keys ()))
8686
8787 # Set the default model
88- self .model_combo .setCurrentIndex (standard_models .index ('yolo26n -seg.pt' ))
88+ self .model_combo .setCurrentIndex (standard_models .index ('yolo11n -seg.pt' ))
Original file line number Diff line number Diff line change @@ -72,4 +72,4 @@ def load_model_combobox(self):
7272 self .model_combo .addItems (list (community_configs .keys ()))
7373
7474 # Set the default model
75- self .model_combo .setCurrentIndex (standard_models .index ('yolo26n -cls.pt' ))
75+ self .model_combo .setCurrentIndex (standard_models .index ('yolo11n -cls.pt' ))
Original file line number Diff line number Diff line change @@ -107,4 +107,4 @@ def load_model_combobox(self):
107107 self .model_combo .addItems (list (community_configs .keys ()))
108108
109109 # Set the default model
110- self .model_combo .setCurrentIndex (standard_models .index ('yolo26n .pt' ))
110+ self .model_combo .setCurrentIndex (standard_models .index ('yolo11n .pt' ))
Original file line number Diff line number Diff line change @@ -75,4 +75,4 @@ def load_model_combobox(self):
7575 self .model_combo .addItems (list (community_configs .keys ()))
7676
7777 # Set the default model
78- self .model_combo .setCurrentIndex (standard_models .index ('yolo26n -seg.pt' ))
78+ self .model_combo .setCurrentIndex (standard_models .index ('yolo11n -seg.pt' ))
Original file line number Diff line number Diff line change @@ -385,7 +385,7 @@ def setup_models_layout(self):
385385 self .model_combo .addItem (model_name )
386386
387387 # Set the default model
388- self .model_combo .setCurrentIndex (self .models .index ('yoloe-26s -seg.pt' ))
388+ self .model_combo .setCurrentIndex (self .models .index ('yoloe-11s -seg.pt' ))
389389 model_select_layout .addRow ("Model:" , self .model_combo )
390390
391391 # Add VPE file selection to the first tab
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ def setup_models_layout(self):
140140 self .model_combo .addItems (standard_models )
141141
142142 # Set the default model
143- self .model_combo .setCurrentIndex (standard_models .index ('yoloe-26s -seg.pt' ))
143+ self .model_combo .setCurrentIndex (standard_models .index ('yoloe-11s -seg.pt' ))
144144 model_select_layout .addRow ("Model:" , self .model_combo )
145145
146146 tab_widget .addTab (model_select_tab , "Select Model" )
Original file line number Diff line number Diff line change @@ -714,7 +714,7 @@ def load_model_combobox(self):
714714 'yoloe-26l-seg.pt' ,
715715 'yoloe-26x-seg.pt'
716716 ]
717- default_model = 'yoloe-26s -seg.pt'
717+ default_model = 'yoloe-11s -seg.pt'
718718 else : # detect
719719 standard_models = [
720720 'yoloe-v8s.yaml' ,
@@ -729,7 +729,7 @@ def load_model_combobox(self):
729729 'yoloe-26l.yaml' ,
730730 'yoloe-26x.yaml'
731731 ]
732- default_model = 'yoloe-26s .yaml'
732+ default_model = 'yoloe-11s .yaml'
733733
734734 self .model_combo .addItems (standard_models )
735735
You can’t perform that action at this time.
0 commit comments