In this tutorial, we will learn what are pointers and how to pass pointers to functions in C++. Pointers Pointer stores the address of another variable. Pointer has no data type. *.... Read More
In this tutorial, we will learn about template parameters and template arguments in C++ along with an example. Template in C++ Templates help us to write generic programs. Template.... Read More
In this tutorial, we will learn how to compute q-th percentile using NumPy percentile() method in Python. q-th percentile The q-th percentile gives a value below which q percentage.... Read More
In this tutorial, we will learn about scientific notations in Python. Before proceeding to the scientific notations in Python, let us understand the scientific notations in detail..... Read More
Hotshot TensorFlow is here! In this article, we learn how to get the batch size back from the input dataset or the iterator. Getting the batch size back Let’s brush up on a f.... Read More
Today we will discuss how can we pad a string with leading zeroes. Padding a string means adding some zeroes or any other character to the string to increase the length of the stri.... Read More
In this tutorial, we will learn how to convert XML data to JSON data and also to convert an XML file to JSON data in Python. XML (Extensible Markup Language) is a markup language l.... Read More
In this tutorial, we will learn how to use unique_ptr in C++. We will learn about the unique_ptr in C++, what exactly it is and with an example. The unique_ptr is one of the smart .... Read More