
algorithm
Zhang_314
这个作者很懒,什么都没留下…
展开
-
CTC decode 代码示例 python 实现
"""This is an example CTC decoder written in Python. The code isintended to be a simple example and is not designed to beespecially efficient.The algorithm is a prefix beam search for a model tra...转载 2019-07-03 15:52:30 · 3411 阅读 · 2 评论 -
mAP 的具体实现 python代码
mAP 事每一个类的AP的平均值,因此 算出每一个类的AP 就行。以下代码 是算一个类的AP ,简单的可以认为 预测为车的概率。 关于召回率与准确率 请google。import numpy as npimport matplotlib.pyplot as plt# 第一列是样本id, 第二列是分类的得分, 第三列是ground truth, 1表示车 2 表示不是...原创 2018-07-27 23:00:06 · 2899 阅读 · 12 评论