摘要:
You Only Look Once:Unified, Real-Time Object Detection 论文链接:https://arxiv.org/abs/1506.02640 Homepage: https://pjreddie.com/darknet/yolo/ Abstract Ins 阅读全文
摘要:
Here is where we'll make our mini-batches for training. Remember that we want our batches to be multiple sequences of some desired number of sequence 阅读全文
摘要:
Output: The error rate is: 0.1 背景:为什么要做平滑处理? 零概率问题,就是在计算实例的概率时,如果某个量x,在观察样本库(训练集)中没有出现过,会导致整个实例的概率结果是0。在文本分类的问题中,当一个词语没有在训练样本中出现,该词语调概率为0,使用连乘计算文本出现概率 阅读全文
摘要:
1 ''' 2 Created on Nov 06, 2017 3 kNN: k Nearest Neighbors 4 5 Input: inX: vector to compare to existing dataset (1xN) 6 dataSet: size m data set of k 阅读全文