A tip A day – Python Tip #4 – Show Progress Bar using TQDM
Have you ever wished to see a progress bar in Jupyter Notebook when executing a complex function in for loop? Its possible in Python. There is a package tqdm which allows us to show progress bar.Also it is simple to…
A tip A day – Python Tip #3 – Pandas Apply Function
Apply function takes a function as an argument and execute the function in all the elements of the dataframe. For example, if we want to create a new column which is the square root of another column’s values or apply…
What are the Loss Functions for a Deep Learning model?
Optimizers in Neural Network
A tip A day – Python Tip #2 – iloc & loc vs iloc
Today we are going to learn how to use iloc to get values from Pandas DataFrame and we are going to compare iloc with loc. To learn about loc, please check A tip A day – Python Tip #1 –…
A tip A day – Python Tip #1 – loc
A Tip A Day? Yes! We know that this website mostly speaks about #MachineLearning, #DataScience, #Python & related topics. Now we are going to start a series of crisp and precise posts related to Python, Pandas, Numpy, Visualization and related…
Best way to Impute NAN within Groups — Mean & Mode
We know that we can replace the nan values with mean or median using fillna(). What if the NAN data is correlated to another categorical column? What if the expected NAN value is a categorical value? In this article we…