From 4cc14a3e917a89f1a08614891ccf0c06ac8dc8a8 Mon Sep 17 00:00:00 2001 From: Rohan Saha Date: Sat, 24 Nov 2018 06:34:52 +0530 Subject: [PATCH] Add Keras information (#26857) * Add Keras information Updated information according to the request made by @scissorsneedfoodtoo and added links to code samples for better understanding * fix: removed space before title front matter key --- .../english/data-science-tools/keras/index.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 guide/english/data-science-tools/keras/index.md diff --git a/guide/english/data-science-tools/keras/index.md b/guide/english/data-science-tools/keras/index.md new file mode 100644 index 0000000000..2ec8d22e18 --- /dev/null +++ b/guide/english/data-science-tools/keras/index.md @@ -0,0 +1,20 @@ +--- +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)