Python
Classify Handwritten-Digits With Tensorflow
Can a machine classify handwritten digits better than the human brain? Let’s see if Convolutional Neural Networks can give us some insight into this matter, then we’ll let you be the judge. To add some context for Convolutional Neural Networks, we’ll begin the tutorial with a practical example of a neural network. A Convolutional Neural …
How To Create user-Defined Functions in Python
If you are confused about user-defined functions? Your confusion ends today… A user-defined function is a reusable block of code that you (the programmer) create from scratch in order to perform a specific task of your choice one or more times. Unlike built-in functions which are included with the Python programming language fresh-out-of-the-box, a user-defined …
How To Reverse An Array In Python
Python Tutorial on how to reverse an array or list in Python without using list slicing.