Changing Keras Version

Thu 22 March 2018 by Aditya Arora

Sometimes, we get errors which when looked up as Github issues dont give us a solid answer. It is told to change Theano versions to using CPU. A simple trick is to downgrade your keras version from 2.1.x to 2.0.y where y<=5. For this we ...

read more

Wrong files added in commit

Mon 19 March 2018 by Aditya Arora

This post helps users to revert changes made while using git. We might add wrong files while committing. It is a good practice to use

git status

to check what files are currently worked on. So this is what you have done

  • Added the wrong files to the staging area ...
read more

Build our first Neural Network for Audio Processing

Mon 15 January 2018 by Aditya Arora

Welcome to this post which guides you through the working of a Deep Neural Network in Audio Processing. Prerequisites:

  • Up and Running with Keras
  • Implementing DNN using Keras

What is different in Audio?

A standard deep learning model passes the arrays of text or images directly to the Deep Neural ...

read more