- R Deep Learning Cookbook
- Dr. PKS Prakash Achyutuni Sri Krishna Rao
- 158字
- 2021-07-02 20:49:07
How it works...
TensorFlow follows directed graph philosophy to set up computational models where mathematical operations are represented as nodes with each node supporting multiple input and output while the edges represent the communication of data between nodes. There are also edges known as control dependencies in TensorFlow that do not represent the data flow; rather the provide information related to control dependence such as node for the control dependence must finish processing before the destination node of control dependence starts executing.
An example TensorFlow graph for logistic regression scoring is shown in the following diagram:

The preceding figure illustrates the TensorFlow graph to score logistic regression with optimized weights:

The MatMul node performs matrix multiplication between input feature matrix X and optimized weight β. The constant C is then added to the output from the MatMul node. The output from Add is then transformed using the Sigmoid function to output Pr(y=1|X).
- 工程軟件開發技術基礎
- Redis Applied Design Patterns
- Mastering Python Scripting for System Administrators
- Building Mapping Applications with QGIS
- Oracle BAM 11gR1 Handbook
- MySQL數據庫管理與開發實踐教程 (清華電腦學堂)
- PHP+MySQL+Dreamweaver動態網站開發從入門到精通(第3版)
- 零基礎學Python編程(少兒趣味版)
- Solutions Architect's Handbook
- QGIS 2 Cookbook
- RocketMQ實戰與原理解析
- Python Projects for Kids
- 數據科學中的實用統計學(第2版)
- 程序員必會的40種算法
- Mastering Machine Learning with R