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