安裝python python-3.6.1-amd64.exe
加入python.exe、pip、pip3加入環境變數
在cmd下執行:
pip3
install--
upgrade
tensorflow
>>>
import tensorflow as tf
>>> hello = tf.constant('hello, tensorflow!')
>>> sess = tf.session()
>>> print(sess.run(hello))
會輸出:
hello, tensorflow
!
另外乙個計算的例子:
>>>import tensorflow as tf
>>>sess = tf.session()
>>>a = tf.constant(10)
>>>b = tf.constant(22)
>>>print(sess.run(a + b))
>>>import tensorflow as tf
>>>sess = tf.session()
>>>a = tf.constant(10)
>>>b = tf.constant(22)
>>>print(sess.run(a + b))
會輸出:
32
1、史上最強—-機器學習經典總結—入門必讀—-心血總結—–回味無窮
2、在windows環境下搭建tensorflow
3、開發者入門必讀:最值得看的十大機器學習公開課
4、tensorflow在windows環境下的搭建
5、tensorflow在windows上安裝與簡單示例
6、深度學習動手入門:github上四個超棒的tensorflow開源專案
7、28款github最流行的開源機器學習專案
Redis在Windows環境下搭建
windows下redis專案 redis benchmark.exe redis效能測試工具 redis check aof.exe 更新日誌檢查 redis check dump.exe 本地資料庫檢查 redis cli.exe redis命令列客戶端操作工具 redis server.exe...
QT在windows下程式設計環境搭建
1 安裝vs2010 cn visual studio 2010 ultimate x86 532347.iso 2 安裝編譯環境qt creator opensource windows x86 64 4.6.0 beta1 1814.exe,使用預設路徑 3 安裝qt for vs2010的庫檔...
Python在windows下的 環境搭建
以下為在 window 平台上安裝 python 的簡單步驟 usr bin python coding utf 8 print hello world 注意 1 usr bin python在linux下是一種特別的注釋,表示python直譯器的目錄位置為 usr bin python 在wind...