Data Magic: Exploring K-means Clustering Introduction Brief overview of the blog post Hello, fellow engineers! Looking to dive into the magic behind clustering in machine learning? Well, then you've come... Archive 21/02/2022
Neural Networks 101: Dive into the Fundamentals Introduction: Diving into the World of Neural Networks Welcome aboard, folks! We're about to embark on a thrilling journey into the world of neural networks... Archive 03/02/2022
Improving Your Business with the Kano Model When developing a new product or adding fresh features to an existing one, it's crucial to understand what our customers want and need. Whether the... Archive 03/09/2021
Accelerating Your ML Projects with Automated MLOps Pipelines: Best Practices to Follow Organizations are harnessing the power of artificial intelligence (AI) and machine learning (ML) to gain insights into customer behavior, operational efficiencies, and numerous other business... Archive 28/06/2021
Linear Regression: The Foundation of Predictive Analytics Let's chat about one of the most fundamental techniques in machine learning and statistics - Linear Regression, which forms the backbone of many advanced techniques,... Archive 02/04/2021
Mastering Scala Basics: Collections Scala collections systematically distinguish between mutable (scala.collection.mutable) and immutable (scala.collection.immutable) collections. A mutable collection can be updated or extended in place. This means you can... Archive 08/01/2021
Mastering Scala Basics: Sequencing Computations Generic types allows us to abstract over types. If we don’t care what type is stored but we want to make sure we preserve the... Archive 17/11/2020
Mastering Scala Basics: Modeling Data with Traits Traits allow us to express that multiple classes share a common super-type. Traits are similar to Java’s interfaces and can be thought of abstraction over... Archive 21/09/2020
Mastering Scala Basics: Objects & Classes Just like other programming languages, we use class to create objects that have similar methods and fields. In addition, class in Scala defines a type... Archive 03/08/2020
Mastering Scala Basics: Expressions, Types, Values & Methods Expressions are parts of a program that evaluate to a value. For example: val a = 3 + 5 // a evaluates to 8 A... Archive 20/06/2020