亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

TensorFlow實(shí)現(xiàn)創(chuàng)建分類(lèi)器

 更新時(shí)間:2018年02月06日 13:39:31   作者:lilongsy  
這篇文章主要為大家詳細(xì)介紹了TensorFlow實(shí)現(xiàn)創(chuàng)建分類(lèi)器,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了TensorFlow實(shí)現(xiàn)創(chuàng)建分類(lèi)器的具體代碼,供大家參考,具體內(nèi)容如下

創(chuàng)建一個(gè)iris數(shù)據(jù)集的分類(lèi)器。

加載樣本數(shù)據(jù)集,實(shí)現(xiàn)一個(gè)簡(jiǎn)單的二值分類(lèi)器來(lái)預(yù)測(cè)一朵花是否為山鳶尾。iris數(shù)據(jù)集有三類(lèi)花,但這里僅預(yù)測(cè)是否是山鳶尾。導(dǎo)入iris數(shù)據(jù)集和工具庫(kù),相應(yīng)地對(duì)原數(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)練只使用兩種特征:花瓣長(zhǎng)度和花瓣寬度,這兩個(gè)特征在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]))

# 定義線(xiàn)性模型:
# 如果找到的數(shù)據(jù)點(diǎn)在直線(xiàn)以上,則將數(shù)據(jù)點(diǎn)代入x2-x1*A-b計(jì)算出的結(jié)果大于0;
# 同理找到的數(shù)據(jù)點(diǎn)在直線(xià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)建一個(gè)變量初始化操作
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ù):花瓣長(zhǎng)度、花瓣寬度和目標(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)建擬合線(xiàn)
x = np.linspace(0, 3, num=50)
ablineValues = []
for i in x:
 ablineValues.append(slope*i+intercept)

# 繪制擬合曲線(xiàn)
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]]

 以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • 一文解密Python中_getattr_和_getattribute_的用法與區(qū)別

    一文解密Python中_getattr_和_getattribute_的用法與區(qū)別

    這篇文章主要為大家詳細(xì)介紹了Python中_getattr_和_getattribute_的用法與區(qū)別,文中通過(guò)一些簡(jiǎn)單的示例為大家進(jìn)行了講解,需要的可以參考一下
    2023-01-01
  • MxNet預(yù)訓(xùn)練模型到Pytorch模型的轉(zhuǎn)換方式

    MxNet預(yù)訓(xùn)練模型到Pytorch模型的轉(zhuǎn)換方式

    這篇文章主要介紹了MxNet預(yù)訓(xùn)練模型到Pytorch模型的轉(zhuǎn)換方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧
    2020-05-05
  • Python機(jī)器學(xué)習(xí)之底層實(shí)現(xiàn)KNN

    Python機(jī)器學(xué)習(xí)之底層實(shí)現(xiàn)KNN

    今天給大家?guī)?lái)的是關(guān)于Python機(jī)器學(xué)習(xí)的相關(guān)知識(shí),文章圍繞著Python底層實(shí)現(xiàn)KNN展開(kāi),文中有非常詳細(xì)的解釋及代碼示例,需要的朋友可以參考下
    2021-06-06
  • pymysql的簡(jiǎn)單封裝代碼實(shí)例

    pymysql的簡(jiǎn)單封裝代碼實(shí)例

    這篇文章主要介紹了pymysql的簡(jiǎn)單封裝代碼實(shí)例,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2020-01-01
  • 詳解PyCharm配置Anaconda的艱難心路歷程

    詳解PyCharm配置Anaconda的艱難心路歷程

    這篇文章主要介紹了詳解PyCharm配置Anaconda的艱難心路歷程,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2018-08-08
  • Django如何防止定時(shí)任務(wù)并發(fā)淺析

    Django如何防止定時(shí)任務(wù)并發(fā)淺析

    這篇文章主要給大家介紹了關(guān)于Django如何防止定時(shí)任務(wù)并發(fā)的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家學(xué)習(xí)或者使用Django具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2019-05-05
  • Python Queue模塊詳細(xì)介紹及實(shí)例

    Python Queue模塊詳細(xì)介紹及實(shí)例

    這篇文章主要介紹了Python Queue模塊詳細(xì)介紹及實(shí)例的相關(guān)資料,需要的朋友可以參考下
    2016-12-12
  • Python中scatter散點(diǎn)圖及顏色整理大全

    Python中scatter散點(diǎn)圖及顏色整理大全

    python自帶的scatter函數(shù)參數(shù)中顏色和大小可以輸入列表進(jìn)行控制,即可以讓不同的點(diǎn)有不同的顏色和大小,下面這篇文章主要給大家介紹了關(guān)于Python中scatter散點(diǎn)圖及顏色整理大全的相關(guān)資料,需要的朋友可以參考下
    2023-05-05
  • python實(shí)現(xiàn)去除下載電影和電視劇文件名中的多余字符的方法

    python實(shí)現(xiàn)去除下載電影和電視劇文件名中的多余字符的方法

    這篇文章主要介紹了python實(shí)現(xiàn)去除下載電影和電視劇文件名中的多余字符的方法,可以批量修改視頻文件名稱(chēng),非常具有實(shí)用價(jià)值,需要的朋友可以參考下
    2014-09-09
  • python實(shí)現(xiàn)dict版圖遍歷示例

    python實(shí)現(xiàn)dict版圖遍歷示例

    這篇文章主要介紹了python實(shí)現(xiàn)dict版圖遍歷的示例,需要的朋友可以參考下
    2014-02-02

最新評(píng)論