机器学习期中代码练习

期中复习

import pandas as pd
import numpy as np
import math
import random
import matplotlib.pyplot as plt

def load_data():
    data = pd.read_csv("C:/Users/lolo/Documents/WeChat Files/L15804627211/Files/iris.csv")
    return data

def choose_random(data,alpha):
    #划分数据集
    #alpha表示训练集的比例
    chooselist = random.sample(range(0,len(data)),int(alpha*len(data)))
    return data.loc[chooselist,:]
    
def sigmoid(x):
    return 1 / (1 + np.exp(-x))
    
def logistic_gradient_descent_method(train_x, train_y, alpha, maxnum):
    #train_x:训练集
    #train_y:训练集分类
    #alpha:步长
    #maxnum:最大迭代次数
    numSam, numFeature = train_x.shape
    add = np.ones((numSam,1))
    train_x = np.hstack((train_x,add))
    theta = np.ones((numFeature + 1, 1))
    for i in range(0,maxnum):
        cum = np.zeros((1,numFeature+1))
        for k in range(0,numSam):
            cum += (train_y[k]-sigmoid(np.dot(train_x[k],theta))) * train_x[k]
        theta = theta - alpha * cum.transpose()
    return theta

def logistic_newton_method(train_x, train_y, maxnum):
    #train_x:训练集
    #train_y:训练集分类
    #maxnum:最大迭代次数
    numSam, numFeature = train_x.shape
    add = np.ones((numSam,1))
    train_x = np.hstack((train_x,add))
    beta = np.ones((numFeature + 1, 1))
    for i in range(0,maxnum):
        patial1 = np.zeros((numFeature + 1, 1))
        patial2 = np.zeros((numFeature + 1, numFeature + 1))
        for k in range(0, numSam):
            p1 = sigmoid(np.dot(train_x[k], beta))
            patial1 -= np.matrix(train_x[k]).transpose() * (train_y[k] - p1)
            patial2 += np.dot(train_x[k].transpose(),train_x[k]) * p1 * (1-p1)
        beta <
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
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
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值