用四叉树对图像分类,获取tag和key function getMid(num) { if(num%2 0){ return num/2 }else{ return (num+1)/2 } } function getFourTree(rect,[x1,y1,x2,y2],deep) { if(x2 ...
分类:
其他好文 时间:
2020-06-15 17:46:19
阅读次数:
81
##背景 设备中有很多数据,可以用来训练模型提高用户体验。但是数据通常是敏感或者庞大的。 隐私问题 数据孤岛:每个公司都有数据,淘宝有你的购买记录,银行有你的资金状况,它们不能把数据共享,都是自己训练自己有的数据,是一个个数据孤岛。 ##联邦学习的概念 联邦机器学习是一个机器学习框架,能有效帮助多个 ...
分类:
其他好文 时间:
2020-06-15 14:13:12
阅读次数:
152
最近又出差了20多天,铁路相关工作的原则就是不能车等人,只能人等车,并且货车优先级低,到站时间不确定,所以很多时间都是在等待中度过,每天的时间被一列列车分割开来,碎片化的时间正好用来看教程。 这一教程来自谷歌,https://developers.google.cn/machine-learning ...
分类:
其他好文 时间:
2020-06-14 23:58:19
阅读次数:
111
If I have bunch of events and a bunch of probabilities, how likely is it those events happen based on the probabilities? If it is very likely then we ...
分类:
其他好文 时间:
2020-06-13 17:35:40
阅读次数:
66
Wang Y, Zou D, Yi J, et al. Improving Adversarial Robustness Requires Revisiting Misclassified Examples[C]. international conference on learning repre ...
分类:
其他好文 时间:
2020-06-13 10:42:27
阅读次数:
66
问题定义 在这个项目中会采用20 Newgroups的数据(http://qwone.com/~jason/20Newsgroups/),这时网上非常流行的对文本进行分类和聚类的数据集。 数据集中的数据分为两部分,一部分是用来训练算法模型的数据,一部分是用来评估算法的新数据。 网上提供了3个数据集, ...
分类:
系统相关 时间:
2020-06-13 10:32:48
阅读次数:
56
本周对deep_sort做了一些练习,这是一个追踪算法,通过对连续帧物体的相似度和轨迹判断是否是同一个物体,通过这个算法与yolov3算法的结合,可以实现对视频中物体的类别检测并追踪,统计数量等,作用很大。 因为我们小组参加的软件杯赛题是这方面的,所以对这个算法进行了研究,也在网上找了一个可以运行的 ...
分类:
其他好文 时间:
2020-06-12 22:56:24
阅读次数:
96
可参考博客:https://blog.csdn.net/cxjoker/article/details/79501887 完整代码如下: trees.py 1 from math import log 2 import operator 3 import treePlotter 4 import p ...
分类:
其他好文 时间:
2020-06-11 19:40:10
阅读次数:
58
The Softmax Function In the next video, we'll learn about the softmax function, which is the equivalent of the sigmoid activation function, but when t ...
分类:
其他好文 时间:
2020-06-11 09:15:58
阅读次数:
62
The sigmoid function is defined as sigmoid(x) = 1/(1+e-x). If the score is defined by 4x1 + 5x2 - 9 = score, then which of the following points has ex ...
分类:
其他好文 时间:
2020-06-11 09:12:55
阅读次数:
56