Skip to content

Understanding YOLOv8 core pyTorch segmentation model output #14341

Answered by glenn-jocher
aknirala asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @aknirala,

Thank you for your kind words! I'm glad the explanation helped clarify things for you. Let's address your questions:

  1. results[1][1] and results[0]:

    • results[1][1] contains the mask coefficients, which are indeed derived from the same output tensor as results[0]. Essentially, results[0] provides the bounding box coordinates, objectness scores, and class scores, while results[1][1] provides the mask coefficients for each detected object.
  2. Fixed Mask Size and Feature Derivation:

    • You're correct that the mask size is fixed, which is a design choice in YOLO models. The process of deriving the mask involves using the mask coefficients in conjunction with the feature maps to gen…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@aknirala
Comment options

@glenn-jocher
Comment options

Answer selected by aknirala
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants