分词代码

import numpy as np


def tanh(x):
    return np.tanh(x)


def tanh_deriv(x):
    return 1.0-np.tanh(x)*np.tanh(x)


def logistic(x):
    return 1/(1+np.exp(-x))


def logistic_deriv(x):
    return logistic(x)*(1-logistic(x))


class NeuralNetwork:
    def __init__(self,layers,activation="tanh"):
        if activation=="logistic":
            self.activation=logistic
            self.activation_deriv=logistic_deriv
        elif activation=="tanh":
            self.activation=tanh
            self.activation_deriv=tanh_deriv
            
        self.weights=[]
        for i in range(1,len(layers)-1):
            self.weights.append((2*np.random.random((layers[i-1]+1,layers[i]+1))-1)*0.25)
            self.weights.append((2*np.random.random((layers[i]+1,layers[i+1]))-1)*0.25)
            print(str(self.weights))
            
    def fit(self,x,y,learning_rate=0.2,epochs=10000):
        x=np.atleast_2d(x)
        temp = np.ones([x.shape[0],x.shape[1]+1])
        temp[:,0:-1]=x
        x=temp
        y=np.array(y)
        
        for k in range(epochs):
            i = np.random.randint(x.shape[0]) #x.shape[0] is the number of the trainingset samples
            a=[x[i]] # choose a sample randomly to train the model
            print(str(a))
            for l in range(len(self.weights)):
                #print("a["+str(l)+"]; "+str(a[l])+"  WEIGHT "+str(self.weights[l])+str(len(self.weights)))
                a.append(self.activation(np.dot(a[l],self.weights[l])))
            error = y[i]-a[-1]
            deltas = [error*self.activation_deriv(a[-1])]
            
            for l in range(len(a)-2,0,-1):
                deltas.append(deltas[-1].dot(self.weights[l].T)*self.activation_deriv(a[l]))
            deltas.reverse()
            
            for i in range(len(self.weights)):
                layer = np.atleast_2d(a[i])
                delta = np.atleast_2d(deltas[i])
                self.weights[i]+=learning_rate*layer.T.dot(delta)
            
            
            
    def predict(self,x):
            x= np.array(x)
            temp = np.ones(x.shape[0]+1)
            temp[0:-1]=x
            a= temp
            for l in range(0,len(self.weights)):
                a = self.activation(np.dot(a,self.weights[l]))
            return a
            
            
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值