PinnedA Traveler’s Diary on the Road to Machine Learning — Chapter 1What is Machine Learning? Machine Learning (ML) is a process to find cause-effect relationship and patterns usually in a huge amount of…Oct 18, 2020Oct 18, 2020
Hyperparameter Tuning — Common methods with Code in PythonHyperparameter tuning is the process of optimizing the hyperparameters of a machine learning model to achieve better performance…Nov 17, 20231Nov 17, 20231
ETL vs ELT — Extract, Transform, LoadETL (Extract, Transform, Load) and ELT (Extract, Load, Transform) are two approaches to data integration and processing in the context of…Nov 17, 2023Nov 17, 2023
Published inPython in Plain EnglishPandas — Quick LookupPandas, the most popular library for data manipulation and analysis. It offers data structures and operations for manipulating numerical…Oct 30, 2023Oct 30, 2023
Published inArtificial Intelligence in Plain EnglishImageNet & the rise of Deep Neural Network Architectures for Image Classification — AlexNet…ImageNet inspired a whole new generation of Image Classification models. Here, we will look at some popular ones & current…Dec 11, 2022Dec 11, 2022
Published inArtificial Intelligence in Plain EnglishExploratory Data Analysis (EDA) with Python & MatplotlibAnalyzing datasets to summarize their main characteristics, often with visual methods…Jan 13, 2021Jan 13, 2021
Published inArtificial Intelligence in Plain EnglishPython concepts for InterviewAs of December 2020 Python ranked third in TIOBE’s index of most popular programming languages, behind C and Java. This article assumes…Jan 13, 2021Jan 13, 2021
Useful Python Code Snippets1. Equal list: Checks if all elements in a list are equal. Use [1:] and [:-1] to compare all the values in the given list.May 25, 2020May 25, 2020