Day: May 6, 2021

How to setup a text classification model in Keras using CNN

(How to setup a text classification model in Keras using CNN) In this Learn through Codes example, How to setup a text classification model in Keras using CNN.  How_to_setup_a_text_classification_model_in_Keras_using_CNN   Python Example for Beginners Special 95% discount 2000+ Applied Machine Learning & Data Science Recipes Portfolio Projects for Aspiring Data Scientists: Tabular Text & …

How to setup an object classification model in Keras using CNN

(How to setup an object classification model in Keras using CNN) In this Learn through Codes example, How to setup an object classification model in Keras using CNN.  How_to_setup_an_object_classification_model_in_Keras_using_CNN   Python Example for Beginners Special 95% discount 2000+ Applied Machine Learning & Data Science Recipes Portfolio Projects for Aspiring Data Scientists: Tabular Text & …

How to setup MLP and CNN for MNIST dataset in Keras

(How to setup MLP and CNN for MNIST dataset in Keras) In this Learn through Codes example, How to setup MLP and CNN for MNIST dataset in Keras.  How_to_setup_MLP_and_CNN_for_MNIST_dataset_in_Keras   Python Example for Beginners Special 95% discount 2000+ Applied Machine Learning & Data Science Recipes Portfolio Projects for Aspiring Data Scientists: Tabular Text & …

How to setup Time Based Learning Rate Decay in Keras

(How to setup Time Based Learning Rate Decay in Keras) In this Learn through Codes example, How to setup Time Based Learning Rate Decay in Keras.  How_to_setup_Learning_Rate_Decay_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 …

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.  Dropout_Regularization_on_the_Hidden_Layer   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 example for Beginners – Kotlin Program to Reverse a Sentence Using Recursion

Kotlin Program to Reverse a Sentence Using Recursion In this program, you’ll learn to reverse a given sentence using a recursive loop in Kotlin. Example: Reverse a Sentence Using Recursion fun main(args: Array<String>) { val sentence = “Go work” val reversed = reverse(sentence) println(“The reversed sentence is: $reversed”) } fun reverse(sentence: String): String { if …

Kotlin example for Beginners – Kotlin Program to Convert Binary Number to Octal and vice-versa

Kotlin Program to Convert Binary Number to Octal and vice-versa In this program, you’ll learn to convert binary number to a octal number and vice-versa using functions in Kotlin. Example 1: Program to Convert Binary to Octal In this program, we will first convert binary number to decimal. Then, the decimal number is converted to octal. …

Kotlin example for Beginners – Kotlin Program to Convert Octal Number to Decimal and vice-versa

Kotlin Program to Convert Octal Number to Decimal and vice-versa In this program, you’ll learn to convert octal number to a decimal number and vice-versa using functions in Kotlin. Example 1: Program to Convert Decimal to Octal fun main(args: Array<String>) { val decimal = 78 val octal = convertDecimalToOctal(decimal) println(“$decimal in decimal = $octal in …

Kotlin example for Beginners – Kotlin Program to Find G.C.D Using Recursion

Kotlin Program to Find G.C.D Using Recursion In this program, you’ll learn to find the GCD (Greatest Common Divisor) or HCF using a recursive function in Kotlin. This program takes two positive integers and calculates GCD using recursion.   Example: GCD of Two Numbers using Recursion fun main(args: Array<String>) { val n1 = 366 val n2 = …

Kotlin example for Beginners – Kotlin Program to Find the Sum of Natural Numbers using Recursion

Kotlin Program to Find the Sum of Natural Numbers using Recursion In this program, you’ll learn to find the sum of natural number using recursion in Kotlin. This is done with the help of a recursive function. The positive numbers 1, 2, 3… are known as natural numbers. The program below takes a positive integer …