TensorFlow實(shí)現(xiàn)創(chuàng)建分類器
本文實(shí)例為大家分享了TensorFlow實(shí)現(xiàn)創(chuàng)建分類器的具體代碼,供大家參考,具體內(nèi)容如下
創(chuàng)建一個iris數(shù)據(jù)集的分類器。
加載樣本數(shù)據(jù)集,實(shí)現(xiàn)一個簡單的二值分類器來預(yù)測一朵花是否為山鳶尾。iris數(shù)據(jù)集有三類花,但這里僅預(yù)測是否是山鳶尾。導(dǎo)入iris數(shù)據(jù)集和工具庫,相應(yīng)地對原數(shù)據(jù)集進(jìn)行轉(zhuǎn)換。
# Combining Everything Together #---------------------------------- # This file will perform binary classification on the # iris dataset. We will only predict if a flower is # I.setosa or not. # # We will create a simple binary classifier by creating a line # and running everything through a sigmoid to get a binary predictor. # The two features we will use are pedal length and pedal width. # # We will use batch training, but this can be easily # adapted to stochastic training. import matplotlib.pyplot as plt import numpy as np from sklearn import datasets import tensorflow as tf from tensorflow.python.framework import ops ops.reset_default_graph() # 導(dǎo)入iris數(shù)據(jù)集 # 根據(jù)目標(biāo)數(shù)據(jù)是否為山鳶尾將其轉(zhuǎn)換成1或者0。 # 由于iris數(shù)據(jù)集將山鳶尾標(biāo)記為0,我們將其從0置為1,同時(shí)把其他物種標(biāo)記為0。 # 本次訓(xùn)練只使用兩種特征:花瓣長度和花瓣寬度,這兩個特征在x-value的第三列和第四列 # iris.target = {0, 1, 2}, where '0' is setosa # iris.data ~ [sepal.width, sepal.length, pedal.width, pedal.length] iris = datasets.load_iris() binary_target = np.array([1. if x==0 else 0. for x in iris.target]) iris_2d = np.array([[x[2], x[3]] for x in iris.data]) # 聲明批量訓(xùn)練大小 batch_size = 20 # 初始化計(jì)算圖 sess = tf.Session() # 聲明數(shù)據(jù)占位符 x1_data = tf.placeholder(shape=[None, 1], dtype=tf.float32) x2_data = tf.placeholder(shape=[None, 1], dtype=tf.float32) y_target = tf.placeholder(shape=[None, 1], dtype=tf.float32) # 聲明模型變量 # Create variables A and b (0 = x1 - A*x2 + b) A = tf.Variable(tf.random_normal(shape=[1, 1])) b = tf.Variable(tf.random_normal(shape=[1, 1])) # 定義線性模型: # 如果找到的數(shù)據(jù)點(diǎn)在直線以上,則將數(shù)據(jù)點(diǎn)代入x2-x1*A-b計(jì)算出的結(jié)果大于0; # 同理找到的數(shù)據(jù)點(diǎn)在直線以下,則將數(shù)據(jù)點(diǎn)代入x2-x1*A-b計(jì)算出的結(jié)果小于0。 # x1 - A*x2 + b my_mult = tf.matmul(x2_data, A) my_add = tf.add(my_mult, b) my_output = tf.subtract(x1_data, my_add) # 增加TensorFlow的sigmoid交叉熵?fù)p失函數(shù)(cross entropy) xentropy = tf.nn.sigmoid_cross_entropy_with_logits(logits=my_output, labels=y_target) # 聲明優(yōu)化器方法 my_opt = tf.train.GradientDescentOptimizer(0.05) train_step = my_opt.minimize(xentropy) # 創(chuàng)建一個變量初始化操作 init = tf.global_variables_initializer() sess.run(init) # 運(yùn)行迭代1000次 for i in range(1000): rand_index = np.random.choice(len(iris_2d), size=batch_size) # rand_x = np.transpose([iris_2d[rand_index]]) # 傳入三種數(shù)據(jù):花瓣長度、花瓣寬度和目標(biāo)變量 rand_x = iris_2d[rand_index] rand_x1 = np.array([[x[0]] for x in rand_x]) rand_x2 = np.array([[x[1]] for x in rand_x]) #rand_y = np.transpose([binary_target[rand_index]]) rand_y = np.array([[y] for y in binary_target[rand_index]]) sess.run(train_step, feed_dict={x1_data: rand_x1, x2_data: rand_x2, y_target: rand_y}) if (i+1)%200==0: print('Step #' + str(i+1) + ' A = ' + str(sess.run(A)) + ', b = ' + str(sess.run(b))) # 繪圖 # 獲取斜率/截距 # Pull out slope/intercept [[slope]] = sess.run(A) [[intercept]] = sess.run(b) # 創(chuàng)建擬合線 x = np.linspace(0, 3, num=50) ablineValues = [] for i in x: ablineValues.append(slope*i+intercept) # 繪制擬合曲線 setosa_x = [a[1] for i,a in enumerate(iris_2d) if binary_target[i]==1] setosa_y = [a[0] for i,a in enumerate(iris_2d) if binary_target[i]==1] non_setosa_x = [a[1] for i,a in enumerate(iris_2d) if binary_target[i]==0] non_setosa_y = [a[0] for i,a in enumerate(iris_2d) if binary_target[i]==0] plt.plot(setosa_x, setosa_y, 'rx', ms=10, mew=2, label='setosa') plt.plot(non_setosa_x, non_setosa_y, 'ro', label='Non-setosa') plt.plot(x, ablineValues, 'b-') plt.xlim([0.0, 2.7]) plt.ylim([0.0, 7.1]) plt.suptitle('Linear Separator For I.setosa', fontsize=20) plt.xlabel('Petal Length') plt.ylabel('Petal Width') plt.legend(loc='lower right') plt.show()
輸出:
Step #200 A = [[ 8.70572948]], b = [[-3.46638322]] Step #400 A = [[ 10.21302414]], b = [[-4.720438]] Step #600 A = [[ 11.11844635]], b = [[-5.53361702]] Step #800 A = [[ 11.86427212]], b = [[-6.0110755]] Step #1000 A = [[ 12.49524498]], b = [[-6.29990339]]
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
一文解密Python中_getattr_和_getattribute_的用法與區(qū)別
這篇文章主要為大家詳細(xì)介紹了Python中_getattr_和_getattribute_的用法與區(qū)別,文中通過一些簡單的示例為大家進(jìn)行了講解,需要的可以參考一下2023-01-01MxNet預(yù)訓(xùn)練模型到Pytorch模型的轉(zhuǎn)換方式
這篇文章主要介紹了MxNet預(yù)訓(xùn)練模型到Pytorch模型的轉(zhuǎn)換方式,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-05-05Python機(jī)器學(xué)習(xí)之底層實(shí)現(xiàn)KNN
今天給大家?guī)淼氖顷P(guān)于Python機(jī)器學(xué)習(xí)的相關(guān)知識,文章圍繞著Python底層實(shí)現(xiàn)KNN展開,文中有非常詳細(xì)的解釋及代碼示例,需要的朋友可以參考下2021-06-06Django如何防止定時(shí)任務(wù)并發(fā)淺析
這篇文章主要給大家介紹了關(guān)于Django如何防止定時(shí)任務(wù)并發(fā)的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家學(xué)習(xí)或者使用Django具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧2019-05-05Python Queue模塊詳細(xì)介紹及實(shí)例
這篇文章主要介紹了Python Queue模塊詳細(xì)介紹及實(shí)例的相關(guān)資料,需要的朋友可以參考下2016-12-12Python中scatter散點(diǎn)圖及顏色整理大全
python自帶的scatter函數(shù)參數(shù)中顏色和大小可以輸入列表進(jìn)行控制,即可以讓不同的點(diǎn)有不同的顏色和大小,下面這篇文章主要給大家介紹了關(guān)于Python中scatter散點(diǎn)圖及顏色整理大全的相關(guān)資料,需要的朋友可以參考下2023-05-05python實(shí)現(xiàn)去除下載電影和電視劇文件名中的多余字符的方法
這篇文章主要介紹了python實(shí)現(xiàn)去除下載電影和電視劇文件名中的多余字符的方法,可以批量修改視頻文件名稱,非常具有實(shí)用價(jià)值,需要的朋友可以參考下2014-09-09