- Hands-On Reinforcement Learning with Python
- Sudharsan Ravichandiran
- 148字
- 2021-06-18 19:12:07
TensorFlow
TensorFlow is an open source software library from Google which is extensively used for numerical computation. It is widely used for building deep learning models and is a subset of machine learning. It uses data flow graphs that can be shared and executed on many different platforms. Tensor is nothing but a multi-dimensional array, so when we say TensorFlow, it is literally a flow of multi-dimensional arrays (tensors) in the computation graph.
With Anaconda installed, installing TensorFlow becomes very simple. Irrespective of the platform you are using, you can easily install TensorFlow by typing the following command:
source activate universe
conda install -c conda-forge tensorflow
Don't forget to activate the universe environment before installing TensorFlow.
We can check whether the TensorFlow installation was successful by simply running the following Hello World program:
import tensorflow as tf
hello = tf.constant("Hello World")
sess = tf.Session()
print(sess.run(hello))
- Objective-C Memory Management Essentials
- Mastering Selenium WebDriver
- Web交互界面設計與制作(微課版)
- 機械工程師Python編程:入門、實戰與進階
- Windows Server 2012 Unified Remote Access Planning and Deployment
- QGIS By Example
- Jupyter數據科學實戰
- 數據結構習題解析與實驗指導
- Swift語言實戰精講
- C++面向對象程序設計習題解答與上機指導(第三版)
- Learning Bootstrap 4(Second Edition)
- HTML5移動Web開發
- Continuous Delivery and DevOps:A Quickstart Guide Second Edition
- 面向對象程序設計及C++(第3版)
- 啊哈C語言!:邏輯的挑戰(修訂版)