-
Hello, After exporting data, I see the file using Google colab. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
I have this same question. Thanks! |
Beta Was this translation helpful? Give feedback.
-
Hi @druz, @mollywestbrook, PointThe score comes directly from the output of our keras model (heatmaps that indicate the likelihood of each pixel containing the center of a particular keypoint). Each node will get its own heatmap (aka confidence map) and within each heatmap there will be multiple peaks for where SLEAP thinks there is some non-zero likelihood that a pixel contains the center of a node given the annotated frames. Note that this likelihood is not normalized, but is proportional to the joint probability of a "pixel containing the center of a particular keypoint" given the annotated data. This proportionality (and comparison to other likelihoods) is all we need to determine which peak in our heatmap to use as the predicted point for that node. This is done for all nodes and the likelihood is then used as the score for that point. InstancesPer the doc strings, the instance score is supposed to measure the grouping of nodes. Lines 1166 to 1167 in b5aab0e
|
Beta Was this translation helpful? Give feedback.
-
I am a bit confused about point scores as they do not seem to be a direct match to "likelihood" value other models provide (i.e. DLC). I noticed that point scores can be greater than 1. What does this mean? Is there a way to use this information to determine an occluded body part or pick a keypoint that has a mirror keypoint. Thanks, |
Beta Was this translation helpful? Give feedback.
Hi @druz, @mollywestbrook,
Point
The score comes directly from the output of our keras model (heatmaps that indicate the likelihood of each pixel containing the center of a particular keypoint). Each node will get its own heatmap (aka confidence map) and within each heatmap there will be multiple peaks for where SLEAP thinks there is some non-zero likelihood that a pixel contains the center of a node given the annotated frames. Note that this likelihood is not normalized, but is proportional to the joint probability of a "pixel containing the center of a particular keypoint" given the annotated data. This proportionality (and comparison to other likelihoods) is all we need to determine wh…