models/ #15633
Replies: 9 comments 20 replies
-
I've already installed Ultralytics in a separate Conda environment and trained a YOLOv8 model. Now I want to use the YOLOv10 model. Do I need to create a new environment and set it up from scratch, or can I train or use YOLOv10 in the existing YOLOv8 environment? |
Beta Was this translation helpful? Give feedback.
-
is there a reference yaml for yolov7 and yolov4, like yolov6.yaml? |
Beta Was this translation helpful? Give feedback.
-
I need help. I use this YOLO architecture in a university project, and to make the article i need to specify the numbem of hidden layers, and i don't how many there are. |
Beta Was this translation helpful? Give feedback.
-
I am trying to train my yolov8s-worldv2.pt with custom data on colab with TPU as engine but getting error as "RuntimeError: Cannot set version_counter for inference tensor " tried with most possible version but even after setup TPU still facing same issue. I need help with it so i can you TPU to train models !pip install cloud-tpu-client==0.10 import torch Print versions to confirm installationprint(f"PyTorch version: {torch.version}") PyTorch version: 2.5.0+cpu import torch_xla.core.xla_model as xm results = model.train(data="lvis.yaml", epochs=2, imgsz=640, device=device) output as error-------> RuntimeError: Cannot set version_counter for inference tensor |
Beta Was this translation helpful? Give feedback.
-
I am trying to train my yolov8s-worldv2.pt with custom data on colab with TPU as engine but getting error as "RuntimeError: Cannot set version_counter for inference tensor " tried with most possible version but even after setup TPU still facing same issue. I need help with it so i can you TPU to train models !pip install cloud-tpu-client==0.10 import torch Print versions to confirm installationprint(f"PyTorch version: {torch.version}") PyTorch version: 2.5.0+cpu import torch_xla.core.xla_model as xm results = model.train(data="lvis.yaml", epochs=2, imgsz=640, device=device) output as error-------> RuntimeError: Cannot set version_counter for inference tensor |
Beta Was this translation helpful? Give feedback.
-
When using yolo11 for inference, what operations will the preprocessing process perform on the input image? Is it just scaling the image to 640? Which part is the operation file? Thank you |
Beta Was this translation helpful? Give feedback.
-
@glenn-jocher @pderrenger What I'm doing: Running inference with a pretrained YOLOv8 model to segment cars in the LiDAR reflectivity domain. When I project these predicted masks onto the 3D point cloud, I see a lot of misclassified points (points that are not actually part of the car end up being labeled as car). Has anyone else dealt with similar mask inaccuracy issues when segmenting LiDAR-based 2D images? Pallet Detection on Reflectivity Images What I'm planning: Train YOLOv8 to detect pallets in LiDAR reflectivity images (again, 512×128, single channel). Considering combining RGB camera images with LiDAR reflectivity data in the training set (even though the reflectivity images look more like grayscale). Is it advisable to train on both RGB and reflectivity images at once, or should I keep them separate? Additional |
Beta Was this translation helpful? Give feedback.
-
Hi, Is it possibile to use a yolo-pose model (with a custom dataset and training) to detect simultaneously a class of objects with keypoints inside and a different class with no keypoints?. For example I need to detect a football pitch with some keypoints inside of it and the football players as simple bounding boxes. Is there a way to use a unique model instead of using two separate models (yolo-pose + yolo-detect)? for example putting at 0 0 0 any keypoints related to the players (but I think that this solution may confuse the model during the training) |
Beta Was this translation helpful? Give feedback.
-
Hi Guys!, Could you please clarify |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
models/
Discover a variety of models supported by Ultralytics, including YOLOv3 to YOLOv10, NAS, SAM, and RT-DETR for detection, segmentation, and more.
https://docs.ultralytics.com/models/
Beta Was this translation helpful? Give feedback.
All reactions