gluoncv voc_detection

Posted treedream

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gluoncv voc_detection相关的知识,希望对你有一定的参考价值。

https://github.com/zhreshold/gluon-cv/commit/73b3986aaa2e0d0e6f3f428c12072e3a9d29905e

gluoncv可能版本还没更新,不过小bug已经解决了。

至此,gluoncv 检测部分,从自己的训练集制作,到难样例标记,到评测的坑全踩完了。

        def as_numpy(a):
            """Convert a (list of) mx.NDArray into numpy.ndarray"""
            if isinstance(a, (list, tuple)):
                out = [x.asnumpy() if isinstance(x, mx.nd.NDArray) else x for x in a]
                try:
                    out = np.concatenate(out, axis=0)
                except ValueError:
                    out = np.array(out)
                return out
            elif isinstance(a, mx.nd.NDArray):
                a = a.asnumpy()
            return a

 

以上是关于gluoncv voc_detection的主要内容,如果未能解决你的问题,请参考以下文章

gluoncv faster_rcnn 参数修改

python gluoncv导出模型(JSON,PARAM)

gluoncv目标检测小结

gluoncv目标检测小结

GluonCV 0.6: Embrace Video Understanding

GluonCV 0.6: Embrace Video Understanding