- 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).
- 現代C++編程:從入門到實踐
- Vue.js設計與實現
- OpenCV實例精解
- C#編程入門指南(上下冊)
- 單片機C語言程序設計實訓100例:基于STC8051+Proteus仿真與實戰
- Offer來了:Java面試核心知識點精講(原理篇)
- Java從入門到精通(第4版)
- 深入理解Java7:核心技術與最佳實踐
- Internet of Things with Intel Galileo
- STM32F0實戰:基于HAL庫開發
- Visual C++數字圖像處理技術詳解
- Python數據結構與算法(視頻教學版)
- C++面向對象程序設計習題解答與上機指導(第三版)
- 從Java到Web程序設計教程
- Programming with CodeIgniterMVC