You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@lyC121 the fitness function prioritizes mAP metrics because they provide a comprehensive measure of model performance across different IoU thresholds, which is often more indicative of overall effectiveness than precision and recall alone.
👋 Hello there! We wanted to give you a friendly reminder that this issue has not had any recent activity and may be closed soon, but don't worry - you can always reopen it if needed. If you still have any questions or concerns, please feel free to let us know how we can help.
For additional resources and information, please see the links below:
Feel free to inform us of any other issues you discover or feature requests that come to mind in the future. Pull Requests (PRs) are also always welcomed!
Thank you for your contributions to YOLO 🚀 and Vision AI ⭐
一下是metrics中关于fitness函数如下
def fitness(self):
"""Model fitness as a weighted combination of metrics."""
w = [0.0, 0.0, 0.1, 0.9] # weights for [P, R, [email protected], [email protected]:0.95]
return (np.array(self.mean_results()) * w).sum()
为什么最后的best.pt的权重主要是在[email protected]和[email protected]:0.95,而P和R的权重都为0###
The text was updated successfully, but these errors were encountered: