机器学习基石 作业1 程序题(15-20)

import numpy as np
import random
def read_data(path):
    f1=open(path)
    x_matrix=[]
    y_matrix=[]
    for i in f1:
        x=[1]
        for j in i.split('\t')[0].split():
            x.append(float(j))
        y_matrix.append(int(i.strip().split('\t')[1]))
        x_matrix.append(x)
    x_matrix=np.array(x_matrix)
    #print(x_matrix)
    return x_matrix,y_matrix
def sign(x,w):
    if np.dot(x, w)[0]<=0:
        return -1
    else:
        return 1
def naive_PLA(x_matrix,y_matrix):
    sum=len(x_matrix)
    length=len(x_matrix[0])
    w=np.zeros((length,1))
    #print(w)
    count=0
    s=0
    flag=0
    while True:
        for i in range(sum):
            s+=1
            #print(np.dot(x_matrix[i], w)[0]*y_matrix[i])
            if sign(x_matrix[i], w)!=y_matrix[i]:
                #print(w,x_matrix[i],y_matrix[i])
                w+=np.matrix(x_matrix[i]).T*y_matrix[i]
                count+=1
                s=0
            if s==sum:
                flag=1
                break
        if flag==1:
            break
    return count
def random_PLA(x_matrix,y_matrix):
    sum=len(x_matrix)
    length=len(x_matrix[0])
    w=np.zeros((length,1))
    order=range(sum)
    #print(order)
    random_seed=random.sample(order,sum)
    #print(random_seed)
    count=0
    s=0
    flag=0
    while True:
        for i in random_seed:
            s+=1
            #print(np.dot(x_matrix[i], w)[0]*y_matrix[i])
            if sign(x_matrix[i], w)!=y_matrix[i]:
                #print(w,x_matrix[i],y_matrix[i])
                w+=np.matrix(x_matrix[i]).T*y_matrix[i]
                count+=1
                s=0
            if s==sum:
                flag=1
                break
        if flag==1:
            break
    return count

def weighted_random_PLA(x_matrix,y_matrix,eta):
    sum=len(x_matrix)
    length=len(x_matrix[0])
    w=np.zeros((length,1))
    order=range(sum)
    #print(order)
    random_seed=random.sample(order,sum)
    #print(random_seed)
    count=0
    s=0
    flag=0
    while True:
        for i in random_seed:
            s+=1
            #print(np.dot(x_matrix[i], w)[0]*y_matrix[i])
            if sign(x_matrix[i], w)!=y_matrix[i]:
                #print(w,x_matrix[i],y_matrix[i])
                w+=np.matrix(x_matrix[i]).T*y_matrix[i]*eta
                count+=1
                s=0
            if s==sum:
                flag=1
                break
        if flag==1:
            break
    return count

if __name__=='__main__':

    x_matrix, y_matrix=read_data('ntumlone_hw1_hw1_15_train.dat')

    #count=naive_PLA(x_matrix,y_matrix)       #Question 15
    #print(count)

    # sum=0                                     #Question 16
    # for i in range(2000):
    #     sum+=random_PLA(x_matrix,y_matrix)
    #     print()
    # print(sum/2000)

    sum=0                                     #Question 17
    for i in range(2000):
        sum+=weighted_random_PLA(x_matrix,y_matrix,0.5)
    print(sum/2000)





import numpy as np
import random
import copy
def read_data(path):
    f1=open(path)
    x_matrix=[]
    y_matrix=[]
    for i in f1:
        x=[1]
        for j in i.split('\t')[0].split():
            x.append(float(j))
        y_matrix.append(int(i.strip().split('\t')[1]))
        x_matrix.append(x)
    x_matrix=np.array(x_matrix)
    #print(x_matrix)
    return x_matrix,y_matrix
def sign(x,w):
    if np.dot(x, w)[0]<=0:
        return -1
    else:
        return 1
def test(w,x_matrix,y_matrix,sum):
    count=0
    for i in range(sum):
        if sign(x_matrix[i],w) !=y_matrix[i]:
            count+=1
    return count
def random_pocket(x_matrix,y_matrix,updates):
    sum=len(x_matrix)
    length=len(x_matrix[0])
    order=range(sum)
    random_seed=random.sample(order,sum)
    bestW=np.zeros((length,1))
    w= np.zeros((length, 1))
    bestCount=501
    update=0

    while update<updates:
        for i in random_seed:
            if sign(x_matrix[i], w)!=y_matrix[i]:
                update += 1
                w=w+np.matrix(x_matrix[i]).T*y_matrix[i]
                count=test(w,x_matrix,y_matrix,sum)
                if count<bestCount:
                    bestCount=count
                    bestW=w
            if update==updates:
                break
    return bestW

def random_PLA(x_matrix,y_matrix):
    sum=len(x_matrix)
    length=len(x_matrix[0])
    w=np.zeros((length,1))
    order=range(sum)
    #print(order)
    random_seed=random.sample(order,sum)
    #print(random_seed)
    count=0
    while True:
        for i in random_seed:
            if sign(x_matrix[i], w)!=y_matrix[i]:
                w+=np.matrix(x_matrix[i]).T*y_matrix[i]
                count+=1
            if count==50:
                break
        if count == 50:
            break
    return w

if __name__=='__main__':

    x_matrix, y_matrix=read_data('train.txt')
    x_test,y_test=read_data('test.txt')

    sum=len(x_test)
    error=0

    # for i in range(2000):                        #Question 18
    #     print(i)
    #     w=random_pocket(x_matrix, y_matrix, 50)
    #     count=test(w,x_test,y_test,sum)
    #     error+=count
    # print(float(error)/sum/2000)

    # for i in range(2000):                        #Question 19
    #     print(i)
    #     w=random_PLA(x_matrix, y_matrix)
    #     count=test(w,x_test,y_test,sum)
    #     error+=count
    # print(float(error)/sum/2000)

    for i in range(2000):                          #Question 20
        print(i)
        w=random_pocket(x_matrix, y_matrix, 100)
        count=test(w,x_test,y_test,sum)
        error+=count
    print(float(error)/sum/2000)


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Programming Exercise 1: Linear Regression Machine Learning Introduction In this exercise, you will implement linear regression and get to see it work on data. Before starting on this programming exercise, we strongly recom- mend watching the video lectures and completing the review questions for the associated topics. To get started with the exercise, you will need to download the starter code and unzip its contents to the directory where you wish to complete the exercise. If needed, use the cd command in Octave/MATLAB to change to this directory before starting this exercise. You can also find instructions for installing Octave/MATLAB in the “En- vironment Setup Instructions” of the course website. Files included in this exercise ex1.m - Octave/MATLAB script that steps you through the exercise ex1 multi.m - Octave/MATLAB script for the later parts of the exercise ex1data1.txt - Dataset for linear regression with one variable ex1data2.txt - Dataset for linear regression with multiple variables submit.m - Submission script that sends your solutions to our servers [?] warmUpExercise.m - Simple example function in Octave/MATLAB [?] plotData.m - Function to display the dataset [?] computeCost.m - Function to compute the cost of linear regression [?] gradientDescent.m - Function to run gradient descent [†] computeCostMulti.m - Cost function for multiple variables [†] gradientDescentMulti.m - Gradient descent for multiple variables [†] featureNormalize.m - Function to normalize features [†] normalEqn.m - Function to compute the normal equations ? indicates files you will need to complete † indicates optional exercises

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值