Day: May 4, 2021

Kotlin tutorial for Beginners – Kotlin Constructors

Kotlin Constructors In this article, you will learn about constructors in Kotlin (both primary and secondary constructors) as well as initializer blocks with the help of examples. A constructor is a concise way to initialize class properties. It is a special member function that is called when an object is instantiated (created). However, how they work in …

Kotlin tutorial for Beginners – Kotlin Class and Objects

Kotlin Class and Objects In this article, you’ll be introduced to Object-oriented programming in Kotlin. You’ll learn what a class is, how to create objects and use it in your program. Kotlin supports both functional and object-oriented programming. Kotlin supports features such as higher-order functions, function types and lambdas which makes it a great choice for working in functional programming …

Kotlin tutorial for Beginners – Kotlin Recursion (Recursive Function) and Tail Recursion

Kotlin Recursion (Recursive Function) and Tail Recursion In this article, you will learn to create recursive functions; a function that calls itself. Also, you will learn about tail recursive function. A function that calls itself is known as recursive function. And, this technique is known as recursion. A physical world example would be to place two parallel …

Kotlin tutorial for Beginners – Kotlin Default and Named Arguments

Kotlin Default and Named Arguments In this article, you will learn about default and named arguments with the help of examples. Kotlin Default Argument In Kotlin, you can provide default values to parameters in function definition. If the function is called with arguments passed, those arguments are used as parameters. However, if the function is …

How to setup Dropout Regularization in Keras

(How to setup Dropout Regularization in Keras) In this Learn through Codes example, How to setup Dropout Regularization in Keras in Python.  How_to_setup_Dropout_Regularization_in_Keras Python Example for Beginners Special 95% discount 2000+ Applied Machine Learning & Data Science Recipes Portfolio Projects for Aspiring Data Scientists: Tabular Text & Image Data Analytics as well as Time …

Visualize Model Training History in Keras in Python

(Visualize Model Training History in Keras in Python) In this Learn through Codes example, How to Visualize Model Training History in Keras in Python.  Visualize_Model_Training_History_in_Keras_in_Python Python Example for Beginners Special 95% discount 2000+ Applied Machine Learning & Data Science Recipes Portfolio Projects for Aspiring Data Scientists: Tabular Text & Image Data Analytics as well …

Regression with the Keras in Python

(Regression with the Keras in Python) In this Learn through Codes example, you will learn Regression with the Keras in Python.  Regression_with_the_Keras_in_Python Python Example for Beginners Special 95% discount 2000+ Applied Machine Learning & Data Science Recipes Portfolio Projects for Aspiring Data Scientists: Tabular Text & Image Data Analytics as well as Time Series …

Kotlin tutorial for Beginners – Kotlin Infix Function Call

Kotlin Infix Function Call In this article, you will learn to use infix notation to call a function in Kotlin (with the help of examples). Before you learn how to create a function having infix notation, let’s explore two commonly used infix functions. When you use || and && operations, the compiler look up for or and and functions respectively, and calls them …