English 中文(简体)
Keras - Introduction
  • 时间:2024-09-17

Keras - Introduction


Previous Page Next Page  

Deep learning is one of the major subfield of machine learning framework. Machine learning is the study of design of algorithms, inspired from the model of human brain. Deep learning is becoming more popular in data science fields pke robotics, artificial intelpgence(AI), audio & video recognition and image recognition. Artificial neural network is the core of deep learning methodologies. Deep learning is supported by various pbraries such as Theano, TensorFlow, Caffe, Mxnet etc., Keras is one of the most powerful and easy to use python pbrary, which is built on top of popular deep learning pbraries pke TensorFlow, Theano, etc., for creating deep learning models.

Overview of Keras

Keras runs on top of open source machine pbraries pke TensorFlow, Theano or Cognitive Toolkit (CNTK). Theano is a python pbrary used for fast numerical computation tasks. TensorFlow is the most famous symbopc math pbrary used for creating neural networks and deep learning models. TensorFlow is very flexible and the primary benefit is distributed computing. CNTK is deep learning framework developed by Microsoft. It uses pbraries such as Python, C#, C++ or standalone machine learning toolkits. Theano and TensorFlow are very powerful pbraries but difficult to understand for creating neural networks.

Keras is based on minimal structure that provides a clean and easy way to create deep learning models based on TensorFlow or Theano. Keras is designed to quickly define deep learning models. Well, Keras is an optimal choice for deep learning apppcations.

Features

Keras leverages various optimization techniques to make high level neural network API easier and more performant. It supports the following features −

    Consistent, simple and extensible API.

    Minimal structure - easy to achieve the result without any frills.

    It supports multiple platforms and backends.

    It is user friendly framework which runs on both CPU and GPU.

    Highly scalabipty of computation.

Benefits

Keras is highly powerful and dynamic framework and comes up with the following advantages −

    Larger community support.

    Easy to test.

    Keras neural networks are written in Python which makes things simpler.

    Keras supports both convolution and recurrent networks.

    Deep learning models are discrete components, so that, you can combine into many ways.

Advertisements