-
How I Trained A Simple Neural Network In C# To Recognize Numbers 0-9
[Looking for the code? Find it here. You can run the code as well] As promised in my previous post here, I was able to come up with a very simple and very specific problem that our simple neural network in C# can solve just to show in it’s very basic implementation how artificial neural network works. For our problem, I went with recognizin... Read More
-
From CloudFormation To Serverless Framework To Cloud Development Kit?
AWS CloudFormation Had the chance to work on AWS CloudFormation in my job. And I did not like it actually. Had a hard time reading it honestly. For those who is not familiar with CloudFormation, it’s AWS’s way of provisioning infrastructure in the cloud as code. Coming from a programming background, having to write and understand a CloudF... Read More
-
Branches of Mathematics, Solving Equations and Calculating Derivatives
The need for Math is real when diving deep into AI which I found myself scrambling. Thus I made it my mission to brush up on my math. Branches of Mathematics Traditional Branches I do recall the following traditional branches of Math being taught in school but could not say I still know them all: Arithmetic - study of numbers using vari... Read More
-
A Simple Neural Network In C#
(Note: I have the code up on my .NET C# Fiddle libray here where you can check it and run it online) There is definitely no good time to explore this than now and it just so happens I stumbled upon this really great article here talking about creating a simple neural network in C#. As I’ve mentioned in my 2017 post here, I have been wanting ... Read More
-
Back to the Roots with Algorithms
Data Structures This is about algorithms but data structures are also important and one cannot do without the other. So first a refresher on data structures. Data structure is the organization of data in the computer The following are the basic data structures in computer programming: Array, Linked List, Stack, Queue, Tree, and Graph. ... Read More