zoukankan      html  css  js  c++  java
  • You only look once

    计算MAP

    https://www.zhihu.com/question/53405779

    http://tarangshah.com/blog/2018-01-27/what-is-map-understanding-the-statistic-of-choice-for-comparing-object-detection-models/

    http://homepages.inf.ed.ac.uk/ckiw/postscript/ijcv_voc09.pdf

    http://host.robots.ox.ac.uk/pascal/VOC/voc2012/htmldoc/devkit_doc.html#sec:ap

    code

    https://github.com/dmlc/gluon-cv/blob/master/gluoncv/utils/metrics/voc_detection.py

    Batch Normalization

    https://arxiv.org/pdf/1502.03167v1.pdf

    top1 top5

    [...] where the top-5 error rate is the fraction of test images for which the correct label is not among the five labels considered most probable by the mode.

    First, you make a prediction using the CNN and obtain the predicted class multinomial distribution (pclass=1∑pclass=1).

    Now, in the case of top-1 score, you check if the top class (the one having the highest probability) is the same as the target label.

    In the case of top-5 score, you check if the target label is one of your top 5 predictions (the 5 ones with the highest probabilities).

    In both cases, the top score is computed as the times a predicted label matched the target label, divided by the number of data-points evaluated.

    Finally, when 5-CNNs are used, you first average their predictions and follow the same procedure for calculating the top-1 and top-5 scores.



    top1-----就是你预测的label取最后概率向量里面最大的那一个作为预测结果,如过你的预测结果中概率最大的那个分类正确,则预测正确。否则预测错误

    top5-----就是最后概率向量最大的前五名中,只要出现了正确概率即为预测正确。否则预测错误。

    Multi-scale training

    https://arxiv.org/pdf/1805.09300.pdf

    https://stackoverflow.com/questions/50005852/perform-multi-scale-training-yolov2

    YOLOv2

    https://blog.csdn.net/u010167269/article/details/52638771

    https://blog.csdn.net/jesse_mx/article/details/53925356

  • 相关阅读:
    [NOI2008] [bzoj1061] 志愿者招募
    [bzoj1070] 修车
    [群内模拟4.8] 定点爆破 后宫着♂火 签到题
    初识费用流 模板(spfa+slf优化) 餐巾计划问题
    Chromium的无锁线程模型C++代码示例
    JavaScript的Date类的函数特殊处理导致的问题
    ssh免密码快速登录配置
    container-with-most-water(最大蓄水问题)
    死锁
    美团2018春招编程题第一题 字符串距离 O(n)解法
  • 原文地址:https://www.cnblogs.com/nanzhao/p/10036157.html
Copyright © 2011-2022 走看看