Naveen
Most Common Feature Scaling methods in Machine Learning
Definition Feature scaling is the process of normalizing the range of feature in a dataset. Real-world datasets often contain features...
Read More βTop 8 Deep Learning Algorithms
Convolutional Neural Networks CNNβs popularly known as ConvNets majority consists of several layers and are specifically used for image processing...
Read More βPython Interview Questions – Part 1
1. What is the difference between indexing and slicing? Indexing is the extracting or lookup one or particular values in...
Read More βWhat are Pickling and Unpickling?
Pickling Pickling and unpickling are terms commonly used in the context of Python programming and refer to the process of...
Read More βWhat Advantage does the NumPy Array have over a nested list?
NumPy arrays offer several advantages over nested lists in Python. Let’s see some of the key advantages: Overall, the advantages...
Read More βDjango Architecture in Python
Django is a web service used to build your web pages. Its architecture is as shown: Popular Posts
Read More βHow is Multithreading Achieved in Python?
Multithreading usually implies that multiple threads are executed concurrently. The Python Global Interpreter Lock doesnβt allow more than one thread...
Read More βWhat is the difference Between a Shallow Copy and Deep Copy?
Deepcopy Deepcopy creates a different object and populates it with the child objects of the original object. Therefore, changes in...
Read More βWhat are Literals in Python and explain about different Literals?
A literal in python source code represents a fixed value for primitive data types. There are 5 types of literals...
Read More βWhat are the common built-in data types in Python?
The common built-in data types in Python are: String A sequence of characters in called a string. They are declared...
Read More βWhat are the common built-in data types in Python?
The common built-in data types in python are: Numbers They include integers, floating-point numbers, and complex numbers. e.g., 1, 2.4,...
Read More βWhat are Dict and List Comprehensions in Python?
Dictionary and list comprehensions are just concise way to define dictionaries and lists. Example of list comprehension is: Var =...
Read More β