yolov5-lite
- https://github.com/ppogg/YOLOv5-Lite
- 中端骁龙710G,能到10fps
NanoDet-Plus
- https://github.com/RangiLyu/nanodet
- 中端骁龙710G,能到30fps
- 轻量级目标检测模型NanoDet-Plus微调、部署(保姆级教学)
- 实测误检、漏检比较多
YoloX
- https://github.com/Megvii-BaseDete[......]
yolov5-lite
NanoDet-Plus
YoloX
转载自:A Tour of Machine Learning Algorithms
After we understand the type of machine learning problem we are working with, we can think about the type of data to collect and the types of machine learning algorithms we can try. In this post we take a to[......]
1. 标准化(Standardize):
标准化给定数据集中所有数值属性(或者分别对每个feature列处理)的值到一个0均值和单位方差的正态分布。
2.规范化(Nomalize):
规范化给定数据集中的所有数值(或者分别对每个feature列处理)属性值,类属性除外。结果值默认在区间[0,1],但是利用缩放和平移参数,我们能将数值属性值规范到任何区间。[......]
什么是Mahout?
" Apache Mahout™ project's goal is to build a scalable machine learning library "
我来拓展一下:
(1) Mahout 是Apache旗下的开源项目,集成了大量的机器学习算法。
(2) 大部分算法,可以运行在Hadoop上,具有很好的拓展性,使得大数据上的机器学习成为可能。
本篇主要探讨 Mahout 0.9 中的聚类(Clustering)工具的用法。
一、数据准[......]