- Python Reinforcement Learning
- Sudharsan Ravichandiran Sean Saito Rajalingappaa Shanmugamani Yang Wenzhuo
- 148字
- 2021-06-24 15:17:28
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))
推薦閱讀
- Python絕技:運用Python成為頂級數據工程師
- Hands-On Machine Learning with Microsoft Excel 2019
- Python金融大數據分析(第2版)
- 分布式數據庫系統:大數據時代新型數據庫技術(第3版)
- 新型數據庫系統:原理、架構與實踐
- 數據化網站運營深度剖析
- Enterprise Integration with WSO2 ESB
- Hadoop大數據實戰權威指南(第2版)
- OracleDBA實戰攻略:運維管理、診斷優化、高可用與最佳實踐
- Spark大數據分析實戰
- 數據庫原理與設計(第2版)
- SQL Server深入詳解
- Web Services Testing with soapUI
- Expert Python Programming(Third Edition)
- Access數據庫開發從入門到精通