Posts by Suchita Sriramka
Author Biographical Info: Not available
In this short tutorial, we will see what the problem with scipy.misc.imresize() in Python is which was previously used to resize an image. Next, we will see some alternatives to th.... Read More
In this article, we will see what Snake case and Pascal case are and then a short easy code to convert Snake case to Pascal case in Java. Snake Case: Snake case is a naming style o.... Read More
In this tutorial, we will see different ways to add packages to the Anaconda environment in Python. Anaconda is an open-source python distribution. It is widely used for the ease o.... Read More
In this article, we will see the get_weights() and set_weights() functions in Keras layers. First, we will make a fully connected feed-forward neural network and perform simple lin.... Read More
In this tutorial, first, we will see a short description of what subsequence and longest common subsequence are, and then go straight into the code. In the code section, first, we .... Read More
In this article, I will show you how to implement a simple autoencoder using TensorFlow 2.0. You can always make it a deep autoencoder by just adding more layers. First, we will se.... Read More
This article explains the different patterns and uses of underscores in Python. We all know basic variable naming rules in Python – start with an alphabet or underscore, cannot s.... Read More