日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 人工智能 > pytorch >内容正文

pytorch

2.深度学习练习:Logistic Regression with a Neural Network mindset

發(fā)布時間:2023/12/10 pytorch 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 2.深度学习练习:Logistic Regression with a Neural Network mindset 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

本文節(jié)選自吳恩達老師《深度學習專項課程》編程作業(yè),在此表示感謝。

課程鏈接:https://www.deeplearning.ai/deep-learning-specialization/

You will learn to:

  • Build the general architecture of a learning algorithm, including:
    • Initializing parameters
    • Calculating the cost function and its gradient
    • Using an optimization algorithm (gradient descent)
  • Gather all three functions above into a main model function, in the right order.

你將會學到深度學習的通用結(jié)構(gòu),包括:

  • 參數(shù)初始化
  • 計算損失函數(shù)和梯度
  • 使用優(yōu)化算法(梯度下降)

目錄

1 - Packages

2 - Overview of the Problem set

3 - General Architecture of the learning algorithm(掌握)

4 - Building the parts of our algorithm

4.1 - Helper functions

4.2 - Initializing parameters

4.3 - Forward and Backward propagation(掌握)

4.4 - Optimization

4.5 - Predict

5 - Merge all functions into a model


1 - Packages

First, let's run the cell below to import all the packages that you will need during this assignment.

  • numpy?is the fundamental package for scientific computing with Python.
  • h5py?is a common package to interact with a dataset that is stored on an H5 file.
  • matplotlib?is a famous library to plot graphs in Python.
  • PIL?and?scipy?are used here to test your model with your own picture at the end.
import numpy as np import matplotlib.pyplot as plt import h5py import scipy from PIL import Image from scipy import ndimage from lr_utils import load_dataset # 這個函數(shù)在文件夾下的 py 文件中%matplotlib inline

2 - Overview of the Problem set

Problem Statement: You are given a dataset ("data.h5") containing:

- a training set of m_train images labeled as cat (y=1) or non-cat (y=0)
- a test set of m_test images labeled as cat or non-cat
- each image is of shape (num_px, num_px, 3) where 3 is for the 3 channels (RGB). Thus, each image is square (height = num_px) and (width = num_px).

每一張圖片的shape:(num_px, num_px, 3),3代表3個通道(RGB)。

You will build a simple image-recognition algorithm that can correctly classify pictures as cat or non-cat.

Let's get more familiar with the dataset. Load the data by running the following code.

Many software bugs in deep learning come from having matrix/vector dimensions that don't fit. If you can keep your matrix/vector dimensions straight you will go a long way toward eliminating many bugs.

Exercise:?Find the values for:

- m_train (number of training examples)
- m_test (number of test examples)
- num_px (= height = width of a training image)

Remember that?train_set_x_orig?is a numpy-array of shape (m_train, num_px, num_px, 3). For instance, you can access?m_train?by writing?train_set_x_orig.shape[0].

m_train = train_set_x_orig.shape[0] m_test = test_set_x_orig.shape[0] num_px = train_set_x_orig.shape[1]

For convenience, you should now reshape images of shape (num_px, num_px, 3) in a numpy-array of shape (num_px????num_px????3, 1). After this, our training (and test) dataset is a numpy-array where each column represents a flattened image. There should be m_train (respectively m_test) columns.

Exercise:?Reshape the training and test data sets so that images of size (num_px, num_px, 3) are flattened into single vectors of shape (num_px????num_px????3, 1).

A trick when you want to flatten a matrix X of shape (a,b,c,d) to a matrix X_flatten of shape (b??c??d, a) is to use:

X_flatten = X.reshape(X.shape[0], -1).T # X.T is the transpose of X train_set_x_flatten = train_set_x_orig.reshape(train_set_x_orig.shape[0], -1).T test_set_x_flatten = test_set_x_orig.reshape(test_set_x_orig.shape[0], -1).T

Let's standardize our dataset.

train_set_x = train_set_x_flatten/255. test_set_x = test_set_x_flatten/255.

**What you need to remember:**

Common steps for pre-processing a new dataset are:

  • Figure out the dimensions and shapes of the problem (m_train, m_test, num_px, ...)
  • Reshape the datasets such that each example is now a vector of size (num_px * num_px * 3, 1)
  • "Standardize" the data

新數(shù)據(jù)集常用的預處理順序是:

  • 查看訓練集、測試集大小和樣本的形狀(m_train,m_test,num_px等)
  • 重塑數(shù)據(jù)集,使每個樣本變成為一個大小為(num_px * num_px * 3, 1)的向量
  • 數(shù)據(jù)“標準化”處理

3 - General Architecture of the learning algorithm(掌握)

You will build a Logistic Regression, using a Neural Network mindset. The following Figure explains why?Logistic Regression is actually a very simple Neural Network!

Mathematical expression of the algorithm:

For one example?:

?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????

??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????

??????????????????????????????????????????????????????????????????????????????????????????????????

The cost is then computed by summing over all training examples:

Key steps: In this exercise, you will carry out the following steps:

  • - Initialize the parameters of the model
  • - Learn the parameters for the model by minimizing the cost ?
  • - Use the learned parameters to make predictions (on the test set)
  • - Analyse the results and conclude

關(guān)鍵步驟:在這個練習中,你將會進行以下步驟:

  • 初始化模型參數(shù)
  • 通過降低損失來學習模型參數(shù)
  • 使用學習到的參數(shù)來預測(在測試集上預測)
  • 分析預測結(jié)果和總結(jié)

4 - Building the parts of our algorithm

The main steps for building a Neural Network are:

  • Define the model structure (such as number of input features)
  • Initialize the model's parameters
  • Loop:
    • Calculate current loss (forward propagation)
    • Calculate current gradient (backward propagation)
    • Update parameters (gradient descent)
  • You often build 1-3 separately and integrate them into one function we call?model().

    4.1 - Helper functions

    Exercise: Using your code from "Python Basics", implement?sigmoid()

    def sigmoid(z):"""Compute the sigmoid of zArguments:z -- A scalar or numpy array of any size.Return:s -- sigmoid(z)"""s = 1 / (1 + np.exp(-z))return s

    4.2 - Initializing parameters

    def initialize_with_zeros(dim):"""This function creates a vector of zeros of shape (dim, 1) for w and initializes b to 0.Argument:dim -- size of the w vector we want (or number of parameters in this case)Returns:w -- initialized vector of shape (dim, 1)b -- initialized scalar (corresponds to the bias)"""w = np.zeros((dim, 1))b = 0assert(w.shape == (dim, 1))assert(isinstance(b, float) or isinstance(b, int))return w, b

    4.3 - Forward and Backward propagation(掌握)

    Now that your parameters are initialized, you can do the "forward" and "backward" propagation steps for learning the parameters.

    Exercise:?Implement a function?propagate()?that computes the cost function and its gradient.

    Hints:

    Forward Propagation:

    • You get X
    • You compute

    • ?You calculate the cost function:


    Here are the two formulas you will be using:???

    # GRADED FUNCTION: propagatedef propagate(w, b, X, Y):"""Implement the cost function and its gradient for the propagation explained aboveArguments:w -- weights, a numpy array of size (num_px * num_px * 3, 1)b -- bias, a scalarX -- data of size (num_px * num_px * 3, number of examples)Y -- true "label" vector (containing 0 if non-cat, 1 if cat) of size (1, number of examples)Return:cost -- negative log-likelihood cost for logistic regressiondw -- gradient of the loss with respect to w, thus same shape as wdb -- gradient of the loss with respect to b, thus same shape as bTips:- Write your code step by step for the propagation. np.log(), np.dot()"""m = X.shape[1]# FORWARD PROPAGATION (FROM X TO COST)A = sigmoid(np.dot(w.T, X) + b)cost = -1/m * np.sum(Y*np.log(A) + (1-Y)*np.log(1-A))# BACKWARD PROPAGATION (TO FIND GRAD)dw = 1/m * np.dot(X, (A-Y).T)db = 1/m * np.sum(A-Y)assert(dw.shape == w.shape)assert(db.dtype == float)cost = np.squeeze(cost)assert(cost.shape == ())grads = {"dw": dw,"db": db}return grads, cost

    4.4 - Optimization

    Exercise:?Write down the optimization function. The goal is to learn??and??by?minimizing the cost function?. For a parameter?, the update rule is??where??is the learning rate.

    def optimize(w, b, X, Y, num_iterations, learning_rate, print_cost = False):"""This function optimizes w and b by running a gradient descent algorithmArguments:w -- weights, a numpy array of size (num_px * num_px * 3, 1)b -- bias, a scalarX -- data of shape (num_px * num_px * 3, number of examples)Y -- true "label" vector (containing 0 if non-cat, 1 if cat), of shape (1, number of examples)num_iterations -- number of iterations of the optimization looplearning_rate -- learning rate of the gradient descent update ruleprint_cost -- True to print the loss every 100 stepsReturns:params -- dictionary containing the weights w and bias bgrads -- dictionary containing the gradients of the weights and bias with respect to the cost functioncosts -- list of all the costs computed during the optimization, this will be used to plot the learning curve.Tips:You basically need to write down two steps and iterate through them:1) Calculate the cost and the gradient for the current parameters. Use propagate().2) Update the parameters using gradient descent rule for w and b."""costs = []for i in range(num_iterations):# Cost and gradient calculation (≈ 1-4 lines of code)grads, cost = propagate(w, b, X, Y)# Retrieve derivatives from gradsdw = grads["dw"]db = grads["db"]# update rule (≈ 2 lines of code)w = w - learning_rate * dwb = b - learning_rate * db# Record the costsif i % 100 == 0:costs.append(cost)# Print the cost every 100 training examplesif print_cost and i % 100 == 0:print ("Cost after iteration %i: %f" %(i, cost))params = {"w": w,"b": b}grads = {"dw": dw,"db": db}return params, grads, costs

    4.5 - Predict

    Exercise:?The previous function will output the learned w and b. We are able to use w and b to predict the labels for a dataset X. Implement the?predict()?function. There is two steps to computing predictions:

    1.Calculate?

    2.?Convert the entries of a into 0 (if activation <= 0.5) or 1 (if activation > 0.5), stores the predictions in a vector `Y_prediction`. If you wish, you can use an `if`/`else` statement in a `for` loop (though there is also a way to vectorize this).?

    def predict(w, b, X):'''Predict whether the label is 0 or 1 using learned logistic regression parameters (w, b)Arguments:w -- weights, a numpy array of size (num_px * num_px * 3, 1)b -- bias, a scalarX -- data of size (num_px * num_px * 3, number of examples)Returns:Y_prediction -- a numpy array (vector) containing all predictions (0/1) for the examples in X'''m = X.shape[1]Y_prediction = np.zeros((1,m))w = w.reshape(X.shape[0], 1)# Compute vector "A" predicting the probabilities of a cat being present in the pictureA = sigmoid(np.dot(w.T, X) + b)for i in range(A.shape[1]):# Convert probabilities A[0,i] to actual predictions p[0,i]if A[0,i] > 0.5:Y_prediction[0, i] = 1 else: Y_prediction[0, i] = 0assert(Y_prediction.shape == (1, m))return Y_prediction

    **What to remember:** You've implemented several functions that:

    - Initialize (w,b)

    - Optimize the loss iteratively to learn parameters (w,b):

    - computing the cost and its gradient

    - updating the parameters using gradient descent

    - Use the learned (w,b) to predict the labels for a given set of examples

    需要記住的,你已經(jīng)實現(xiàn)了一些函數(shù):

    • 初始化(w,b)
    • 迭代優(yōu)化損失來學習參數(shù)(w,b)
    • 計算損失和其梯度
    • 使用梯度下降來更新參數(shù)
    • 使用學習到的參數(shù)來預測給定樣本的標簽值

    5 - Merge all functions into a model

    You will now see how the overall model is structured by putting together all the building blocks (functions implemented in the previous parts) together, in the right order.

    Exercise:?Implement the model function. Use the following notation:

    - Y_prediction for your predictions on the test set
    - Y_prediction_train for your predictions on the train set
    - w, costs, grads for the outputs of optimize()

    def model(X_train, Y_train, X_test, Y_test, num_iterations = 2000, learning_rate = 0.5, print_cost = False):"""Builds the logistic regression model by calling the function you've implemented previouslyArguments:X_train -- training set represented by a numpy array of shape (num_px * num_px * 3, m_train)Y_train -- training labels represented by a numpy array (vector) of shape (1, m_train)X_test -- test set represented by a numpy array of shape (num_px * num_px * 3, m_test)Y_test -- test labels represented by a numpy array (vector) of shape (1, m_test)num_iterations -- hyperparameter representing the number of iterations to optimize the parameterslearning_rate -- hyperparameter representing the learning rate used in the update rule of optimize()print_cost -- Set to true to print the cost every 100 iterationsReturns:d -- dictionary containing information about the model."""# initialize parameters with zeros (≈ 1 line of code)w, b = initialize_with_zeros(X_train.shape[0])# Gradient descent (≈ 1 line of code)parameters, grads, costs = optimize(w, b, X_train, Y_train, num_iterations, learning_rate, print_cost)# Retrieve parameters w and b from dictionary "parameters"w = parameters["w"]b = parameters["b"]# Predict test/train set examples (≈ 2 lines of code)Y_prediction_test = predict(w, b, X_test)Y_prediction_train = predict(w, b, X_train)# Print train/test Errorsprint("train accuracy: {} %".format(100 - np.mean(np.abs(Y_prediction_train - Y_train)) * 100))print("test accuracy: {} %".format(100 - np.mean(np.abs(Y_prediction_test - Y_test)) * 100))d = {"costs": costs,"Y_prediction_test": Y_prediction_test, "Y_prediction_train" : Y_prediction_train, "w" : w, "b" : b,"learning_rate" : learning_rate,"num_iterations": num_iterations}return dd = model(train_set_x, train_set_y, test_set_x, test_set_y, num_iterations = 2000, learning_rate = 0.005, print_cost = True)

    總結(jié)

    以上是生活随笔為你收集整理的2.深度学习练习:Logistic Regression with a Neural Network mindset的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。