- Practical Convolutional Neural Networks
- Mohit Sewak Md. Rezaul Karim Pradeep Pujari
- 174字
- 2021-06-24 18:58:51
Keras deep learning library overview
Keras is a high-level deep neural networks API in Python that runs on top of TensorFlow, CNTK, or Theano.
Here are some core concepts you need to know for working with Keras. TensorFlow is a deep learning library for numerical computation and machine intelligence. It is open source and uses data flow graphs for numerical computation. Mathematical operations are represented by nodes and multidimensional data arrays; that is, tensors are represented by graph edges. This framework is extremely technical and hence it is probably difficult for data analysts. Keras makes deep neural network coding simple. It also runs seamlessly on CPU and GPU machines.
A model is the core data structure of Keras. The sequential model, which consists of a linear stack of layers, is the simplest type of model. It provides common functions, such as fit(), evaluate(), and compile().
You can create a sequential model with the help of the following lines of code:
from keras.models import Sequential
#Creating the Sequential model
model = Sequential()
- ETL數據整合與處理(Kettle)
- DB29forLinux,UNIX,Windows數據庫管理認證指南
- Effective Amazon Machine Learning
- 大數據可視化
- 卷積神經網絡的Python實現
- 文本數據挖掘:基于R語言
- 區塊鏈通俗讀本
- Learn Unity ML-Agents:Fundamentals of Unity Machine Learning
- 軟件成本度量國家標準實施指南:理論、方法與實踐
- 智能數據時代:企業大數據戰略與實戰
- 網站數據庫技術
- 高維數據分析預處理技術
- Oracle RAC日記
- Python數據分析與挖掘實戰(第3版)
- Gideros Mobile Game Development