zh/models/yolo-world/ #8458
Replies: 10 comments 27 replies
-
测试的效果似乎比hugging face上的差不少,这是什么原因呢 |
Beta Was this translation helpful? Give feedback.
-
model = YOLOWorld("yolov8s-worldv2.yaml") |
Beta Was this translation helpful? Give feedback.
-
Hello, does the current code support training a new open set detection model using my own datasets like YOLO-World? Or just use the network structure of YOLO-World for closed settraining? thakns!! |
Beta Was this translation helpful? Give feedback.
-
How can I use yolo-world to segment and detect the instances? |
Beta Was this translation helpful? Give feedback.
-
您好 我想自己定义一个新的类别做零样本检测, 加载预训练模型model = YOLO('yolov8s-world.pt') 定义检测类别model.set_classes(["defect"]) 保存模型model.save("custom_yolov8s.pt") |
Beta Was this translation helpful? Give feedback.
-
Hello, is it possible to use YOLOWorld to detect unknown classes that are not present in the dataset (for example, if the dataset contains only the 'car' class, but I want to detect both 'cars' and all other classes)? How can I fine-tune it on my own dataset for this purpose? |
Beta Was this translation helpful? Give feedback.
-
from ultralytics import YOLOWorld data = {
} model = YOLOWorld("yolov8s-worldv2.yaml") |
Beta Was this translation helpful? Give feedback.
-
您好,我想问一下,为什么我本地运行的yolov8x-worldv2检测不出来door,但是demo里面能检测出来? |
Beta Was this translation helpful? Give feedback.
-
之后是否会有微调相关的教程呢 |
Beta Was this translation helpful? Give feedback.
-
Hello, I use the YOLOWorld to predict open word, but it not work and it detect nothing. Could you help me to found the problems? thank you from ultralytics import YOLOWorld
model = YOLOWorld('/noya/coco/models/yolov8s-world.pt')
model.set_classes(["nose", "hair", "lip", "beautiful", "eyebrow"])
results = model.predict('/noya/coco/test_images/1.jpg')
|
Beta Was this translation helpful? Give feedback.
-
zh/models/yolo-world/
发现YOLO-World,这是一个基于YOLOv8 的框架,用于实时检测图像中的开放词汇对象。它增强了用户互动,提高了计算效率,并能适应各种视觉任务。
https://docs.ultralytics.com/zh/models/yolo-world/
Beta Was this translation helpful? Give feedback.
All reactions