TensorFlow Tutorial
- Recommendations for Neural Network Training
- Image Recognition using TensorFlow
- TensorFlow - Forming Graphs
- Gradient Descent Optimization
- TensorFlow - XOR Implementation
- TensorFlow - Optimizers
- Hidden Layers of Perceptron
- Multi-Layer Perceptron Learning
- TensorFlow - Exporting
- TensorFlow - Distributed Computing
- TensorFlow - Keras
- CNN and RNN Difference
- TFLearn and its installation
- TensorFlow - Linear Regression
- Single Layer Perceptron
- TensorFlow - Word Embedding
- TensorBoard Visualization
- Recurrent Neural Networks
- Convolutional Neural Networks
- TensorFlow - Basics
TensorFlow Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
TensorFlow - Installation
为了安装TentsorFlow,必须在你的系统中安装“Python”。 据认为,从TensorFlow安装开始,最好采用3.4+法。
考虑采取以下步骤,在Windows操作系统安装TensorFlow。
Step 2——用户可选择在系统中安装TensorFlow的任何机制。 我们建议“ip”和“Anaconda”。 Pip是用于执行和安装“灰色”模块的指挥部。 在我们安装TensorFlow之前,我们需要在我们系统中安装Anaconda框架。 在安装成功后,通过“孔达”指挥迅速检查指挥。 执行指挥如下: 它下载了TensorFlow的安装所需的必要包裹。 Step 4——在成功建立环境之后,必须启动TensorFlow模块。 Step 5-利用pip在系统中安装“Tensorflow”。 用于安装的指挥系统如下: 而且, 在安装成功后,必须了解TensorFlow的抽样方案执行。 下面的例子帮助我们理解在TensorFlow创建“Hello World”的基本方案。 第一个方案执行守则如下:
conda create --name tensorflow python = 3.5
activate tensorflow
pip install tensorflow
pip install tensorflow-gpu
>> activate tensorflow
>> python (activating python shell)
>> import tensorflow as tf
>> hello = tf.constant(‘Hello, Tensorflow!’)
>> sess = tf.Session()
>> print(sess.run(hello))
Advertisements