- 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).
- Learning Neo4j
- R語言編程指南
- Python計算機視覺編程
- Apache Mahout Clustering Designs
- Learning JavaScript Data Structures and Algorithms
- Hands-On Nuxt.js Web Development
- Learning AWS
- PyQt編程快速上手
- Android應用開發實戰(第2版)
- 數據科學中的實用統計學(第2版)
- Node.js 6.x Blueprints
- JavaScript Mobile Application Development
- Learning Ionic(Second Edition)
- Python程序設計教程
- PhantomJS Cookbook