Noorkhokhar

Results 6 comments of Noorkhokhar

> So Tensorflow 1.0.0 should be installed when generating the model? I tried using Tensorflow 1.2.1 but it doesn't seem to want to use my GPU. Would I have to...

i am see this error python version which we used old type of version and code will be 3.6 in python. so you can remove one line # mngr.window.setGeometry(250, 120,...

for results in results.pred[0]: ^^^^^^^^^^^^ AttributeError: 'list' object has no attribute 'pred' I am getting an error.

**full code** from ultralytics import YOLO model = YOLO("yolov8n.pt") results = model.predict(source=0,show=True) for box in results.xyxy[0]: class_name = model.names[int(box[5])] # Index with the class ID. print(class_name). error for box in...

> @noorkhokhar99 i apologize for the confusion. To access the predicted class names from the `results`, you should iterate over the `results` list directly, as it contains the predictions. Here's...

I am getting the same error and fixed the general.py file as here discussions https://github.com/WongKinYiu/yolov9/compare/main...noorkhokhar99:yolov9:patch-1