Posts by Sumit Chhirush

Author Biographical Info: Not available

Find an element in Python Tuple by value

By Sumit Chhirush

Hello programmers, in this tutorial, we will learn how to Find an element in Python Tuple by value. 1. Index() method The index () method returns the index number of 1st element in.... Read More

Get first N key:value pairs of a dictionary in Python

By Sumit Chhirush

Hello programmers, in this tutorial, we will learn how to get first N key:value pairs of a dictionary in Python. we have a dictionary with keys and values d={‘a’:1,R.... Read More

Python List index()

By Sumit Chhirush

Hello programmers, in this tutorial, we will learn how to find the index of a particular word in Python. index(): It is a Python list method used to find the index of a particular .... Read More

How to Perform Data Binning in Python

By Sumit Chhirush

Hello programmers, in this tutorial, we will learn how to Perform Data Binning in Python. Data Binning: It is a process of converting continuous values into categorical values. Let.... Read More

How to refresh or reload a webpage in selenium Python

By Sumit Chhirush

Hello programmers, in this tutorial, we will learn how to refresh or reload a webpage in selenium Python. Today I’m helping you with how to reload a webpage that is already o.... Read More

Count the number of words in a PDF file in Python

By Sumit Chhirush

Hello programmers, in this tutorial, we will learn how to count the number of words in a PDF file in Python. For counting the numbers of words in a PDF, we are using the PyPDF2 mod.... Read More

tf.keras.losses.Hinge in TensorFlow

By Sumit Chhirush

Hello programmers, in this tutorial, we will learn how to use tf.keras.losses.Hinge in TensorFlow. All the codes are done in a collab notebook What is Hinge loss? It is a loss func.... Read More

How to prevent our model from overfitting in neural networks

By Sumit Chhirush

Hello programmers, in this tutorial we will learn how to prevent our model from overfitting in neural networks with the help of Python programming. We can prevent our model by addi.... Read More

Related Posts