freeCodeCamp/guide/english/data-science-tools/keras/index.md

21 lines
1.0 KiB
Markdown
Raw Normal View History

---
title: Keras
---
# Keras
Keras is a high-level library for practical deep learning. It is primarily used over other low-level APIs like TensorFlow, Theano, and Microsoft CNTK.
For beginners, it is a great tool to get started with deep learning because it takes out the nuances of defining each and every parameter and hyperparameter for the neural network. In fact, Keras has become popular enough to be used by numerous well-known organizations for making data driven products.
Keras speeds up the implementation process by eliminating boiler-plate code and keeping the developer focused only on the important details of the problem at hand.
Below are some useful links to get started with Keras.
### Links:
* [Keras Website](https://keras.io/)
* [Keras installation](https://keras.io/#installation)
* [Keras first 30 seconds](https://github.com/keras-team/keras)
### Click on the following link to check out a sample code in python.
* [Sample Implementation](https://github.com/simpleParadox/fertility-ann)