
机器学习
胡二妞
这个作者很懒,什么都没留下…
展开
-
感知机
# -*- coding: UTF-8 -*- from functools import reduce class Perceptron(object): def __init__(self, input_num, activator): ''' 初始化感知器,设置输入参数的个数,以及激活函数。 激活函数的类型为doub...原创 2018-06-08 17:15:17 · 259 阅读 · 0 评论 -
Adaboost算法实现
详情见github:https://github.com/huawang123/tools/blob/master/Adaboost.py原创 2018-06-08 17:15:32 · 596 阅读 · 0 评论