머신러닝 알고리즘 - 피썬(Python 소스)
4572 단어 기계 학습
#*-encoding:utf-8-*
########################################################################################################
# Summary:
# Author: Kurt
# Date: 2016/3/23
########################################################################################################
#-------------------------------------------------------------------------------------------------------
#
def createData():
data = [[3, 3, 1], [4, 3, 1], [1, 1, -1]]
return data
#-------------------------------------------------------------------------------------------------------
#
def update(weight, tuple, step):
weight[0] += step * tuple[-1]
for i in range(len(tuple) -1):
weight[i+1] += step * tuple[i] * tuple[-1]
return weight
#-------------------------------------------------------------------------------------------------------
#
def calculate(weight, tuple):
sum = weight[0]
for i in range(len(tuple) -1):
sum += weight[i+1] * tuple[i]
sum *= tuple[-1]
print sum
return sum
#-------------------------------------------------------------------------------------------------------
#
def percetron(dataSet, step = 1):
w = [] # , b
isNotDone = True
#
for i in range(len(dataSet[0])):
w.append(0)
while(isNotDone):
print "
Scan the data again"
#
for tuple in dataSet:
#
if(calculate(w, tuple) <= 0):
print "Error point: "
print tuple
isNotDone = True
update(w, tuple, step)
print "----->>>New weight is ", w
break
else:
isNotDone = False
return w
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
형태소 분석은 데스크톱을 구성하는 데 도움이?문자×기계 학습에 흥미를 가져와 개인 범위의 용도를 생각해, 폴더 정리에 사용할 수 있을까 생각해 검토를 시작했습니다. 이번 검토에서는 폴더 구성 & text의 읽기 → mecab × wordcloud를 실시하고 있...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.