Generate a Random Alphanumeric String in Kotlin 1. Overview In this tutorial, we’ll discuss how to generate a random alphanumeric String in Kotlin using three different approaches: Java Random, Kotlin Random, and Apache Commons Lang RandomStringUtils. Then, we’ll wrap up with a look at a high-performance approach. 2. Dependencies Before… Continue Reading kotlin-random-alphanumeric-string

Machine Learning with Spark MLlib 1. Overview In this tutorial, we’ll understand how to leverage Apache Spark MLlib to develop machine learning products. We’ll develop a simple machine learning product with Spark MLlib to demonstrate the core concepts. 2. A Brief Primer to Machine Learning Machine Learning is part of… Continue Reading spark-mlib-machine-learning

Logistic Regression in Java 1. Introduction Logistic regression is an important instrument in machine learning (ML) practitioner toolbox. In this tutorial, we’ll explore the main idea behind logistic regression. First, let’s start with a brief overview of ML paradigms and algorithms. 2. Overview ML allows us to solve problems that… Continue Reading java-logistic-regression