iT邦幫忙

2018 iT 邦幫忙鐵人賽
DAY 9
0
AI & Machine Learning

如何使用tensorflow在android上系列 第 9

[Day 09] Tensorflow基本語法介紹(一)

  • 分享至 

  • xImage
  •  

Session

Tensorflow是基於圖架構進行運算的深度學習框架,Session是圖和執行者之間的媒介,首先透過Session來啟動圖,而Session.run()是用來進行操作的,Session再使用完過後需要透過close來釋放資源,或是透過with as的方式來讓他自動釋放。

Constant

就是不可變的常數,以下透過程式碼來逐一講解

import tensorflow as tf
result=tf.constant(5)
print (result)

imgur
在沒有session.run的情況下,我們可以看到const跟tensor以及type,那麼這次改用session.run的方式來執行result

import tensorflow as tf
result=tf.constant(5)
with tf.Session() as sess:
    result=sess.run(result)
    print (result)

這樣就會印出5這個數字了


上一篇
[Day 08] python基本語法介紹(二)
下一篇
[Day 10] Tensorflow基本語法介紹(二)
系列文
如何使用tensorflow在android上30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言