Gradient descent and linear regression go hand in hand. In this post, you will learn the theory and implementation behind these cool machine learning topics!
Computers, Coding and Caffeine
Gradient descent and linear regression go hand in hand. In this post, you will learn the theory and implementation behind these cool machine learning topics!
Fancy learning how to Base64 encode with modern C++? Learn how to implement an easy Base64 encoder and decoder using cutting-edge features of the Cpp standard.
The trapezium rule can be tricky to implement, specially in C++. This post will teach you how to get a fairly performant trapezium rule area estimator with CPP!
This post shows how to implement the trapezium rule with pure Python and Numpy! Learn how the trapezium rule works by implementing it.
The trapezium rule is a useful numerical method to estimate integrals. This post will explain the rule, show how to derive it, and use the trapezium method!