Implementing an Auto encoder to de-noise images

In this post, we will learn how to implement an autoencoder to denoise  images using TensorFlow and Keras. Introduction: Autoencoders are a type of neural network that can learn to reconstruct input data by encoding it into a lower-dimensional representation and then decoding it back to the original shape. Denoising autoencoders are specifically designed to …

Implementing an Auto encoder to de-noise images Read More »

Iterate over words of a String in Python

String In Python, strings are used to represent data which is in the form of characters, numbers, and symbols. The string is a collection of data that is represented in single(”) or double quotes(“”).To strings we can say array like other programming languages. Examples: str=”hello” str1=”helloo123″ str2=”Namaste@ india” In above examples we show  different types …

Iterate over words of a String in Python Read More »

Replacing NAN values in padas with an empty string

Introduction Replacing NAN values in pandas with an empty string, we have various methods to ensure the data consistency. We will learn totally four different ways to replace the NAN values with an empty string. Replacing NAN values methods Replace NAN using replace() Replace NAN using apply() Replace NAN using applymap() Replace NAN using fillna() …

Replacing NAN values in padas with an empty string Read More »

Create random card shuffle system in Python

  Introduction In this tutorial we will learn how to create random card shuffle system in Python using the random.randint(val1,val2). The randint(val1,val2) method returns an integer number selected randomly from the specified range val1,val2. Both the val1 and val2 are included while randomly selecting a value. Shuffling of cards system includes cards- Spade, Heart, Diamond …

Create random card shuffle system in Python Read More »

Take Input from User Separeted By Space in Java Understanding Thread Safety and achieve it in java get the Id of a Current Running Thread in Java

Take Input from User Separeted By Space in Java Understanding Thread Safety and achieve it in java get the Id of a Current Running Thread in Java   import java.util.Scanner; public class ThreadDemo { public static void main (String s[]) { System.out.println(“Enter the number of space separator”); String x=sc.nextLine(); Thread p=new Thread(); String []numbers =x.split(” …

Take Input from User Separeted By Space in Java Understanding Thread Safety and achieve it in java get the Id of a Current Running Thread in Java Read More »

Converting Text to Uppercase in C# – A Comprehensive Guide

This tutorial will teach us how to convert a string into an upper character string with an example. Uppercase method in C# In C#, The .ToUpper() method returns a new string with all the characters converted to uppercase. Same as .ToLower() is used for lowercase. Syntax: somestring.ToUpper() This method will not change the input string. …

Converting Text to Uppercase in C# – A Comprehensive Guide Read More »

How to Get a List of Class Attributes in Python

In this tutorial, we have to get the list of attributes of the user-defined class. We have to define one class for it and derive the methods of the class in this class. Python is an oops-based high-level programming language. In Object-oriented programming language, all things are objects. In objects, there are methods, properties, variables, …

How to Get a List of Class Attributes in Python Read More »

Scroll to Top