Aditya Chatterjee's Blog, page 4

September 8, 2024

Stepwise Regression

Say you're planning to work on a regression problem with a given dataset, you know how to build a regression model that predicts your desired output variable, but you are unsure about the importance of each variable. This is where our topic of this article comes in! We will be learning about stepwise regression- a technique that will help us find the best set of variables to choose for our linear regression.

Table of contents:

Introduction- Why use Stepwise Regression?Process: How does stepwis...
 •  0 comments  •  flag
Share on Twitter
Published on September 08, 2024 07:48

August 20, 2024

IPv6: Understanding its Development, Architectural Enhancements, and Current Adoption

Table of ContentsIntroduction1.1 Historical BackgroundObjectives of This ArticleIPv6 Architecture2.1 Address Structure2.2 Header Format2.3 Extension HeadersAddressing and Routing3.1 Address Allocation3.2 Routing Protocols3.3 Neighbor Discovery Protocol (NDP)Transition from IPv4 to IPv64.1 Dual Stack Approach4.2 Tunneling Mechanisms4.3 Translation TechniquesSecurity in IPv65.1 IPsec5.2 Privacy ExtensionsIPv6 adoptionConclusion1. Introduction

The Internet Prot...

 •  0 comments  •  flag
Share on Twitter
Published on August 20, 2024 12:10

Guide to Deep Learning Model Training and Quantization

Table of ContentAn OverviewSetting Up the EnvironmentMNISTBuild the ModelTrain the Model in FP32Quantize the Model to INT8Final Implementation and OutputEvaluate the Quantized ModelComparing FP32 and INT8 ModelsPerformanceAccuracyModel SizeConclusionAn OverviewGuide to Deep Learning Model Training and Quantization

In this OpenGenus article, I will be guiding you through training a sample convolutional neural network (ConvNet) with 5 convolutional layers for a specific task. The twist? We'll be exploring both FP32 (32-bit floating...

 •  0 comments  •  flag
Share on Twitter
Published on August 20, 2024 11:58

INT4 Quantization (with code demonstration)

TABLE OF CONTENTINT4 QuantizationImportanceWorking of INT4 QuantizationSimple DemonstrationFinal ImplementationINT4 VS INT8Quantization TechniquesTraining StrategiesINT4 Models: Accuracy & PerformanceUse CasePros & ConsConclusionKey PapersINT4 QuantizationINT4 Quantization (with code demonstration)

INT4 quantization is a technique used to optimize deep learning models by reducing their size and computational costs. It achieves this by using 4-bit integers instead of 32-bit floating-point numbers.

This approach makes th...

 •  0 comments  •  flag
Share on Twitter
Published on August 20, 2024 11:55

Database Indexing

Table of ContentsDatabase Index and Its ImportanceTypes of IndexesManaging IndexesMonitoring Index UsageMaintaining IndexesDropping IndexesConclusionDatabase Index and Its ImportanceDatabase Indexing

Database indexing is a technique to enhance the speed of data retrieval in a database. An index is a data structure that allows quick access to rows in a table, similar to a book's index helping you find topics quickly without reading every page.

By creating an index on one or more columns, the database...

 •  0 comments  •  flag
Share on Twitter
Published on August 20, 2024 11:53

List and Dictionary Comprehension in Python

In this article, we will be discussing list and dictionary comprehension and it's relevance.

Table of Contents:

ListsDictionariesFor loopsConditional statementsList and Dictionary ComprehensionLists

Lists are important data structures in Python used for containing elements. These elements can be in the form of numbers, letters and alphabets. Elements can be appended, removed and inserted into these lists. Each element within the list can be accessed using the index of that element. They a...

 •  0 comments  •  flag
Share on Twitter
Published on August 20, 2024 06:45

August 11, 2024

Personality Prediction Through Machine Learning

An accurate comprehension of the world largely hinges on understanding what motivates the people living on it. A person's action or reaction to any issue is largely dependent on the answer to the question: What kind of a person he is?
In this OpenGenus article, we aim to create a Machine Learning model which can tell us exactly that.

ContentsThe Myers Briggs Type Indicator (MBTI)Algorithm : XGBoost ClassifierBuilding the ModelCode ImplementationApplicationsKey-TakeawaysThe Myers Briggs ...
 •  0 comments  •  flag
Share on Twitter
Published on August 11, 2024 05:34

July 14, 2024

Dynamic and Static dispatch in C++

A dispatch mechanism determines which function gets executed when called upon by an object. In this OpenGenus article, we will explore each of these mechanisms along their approach to overloading and polymorphism.

Table of contents:

OverviewVirtual functions and vtablesStatic dispatchDynamic dispatchLinking design patternsConclusionOverview

Static dispatch, also known as early binding or compile-time binding, is a technique where the decision about which function to call is made at com...

 •  0 comments  •  flag
Share on Twitter
Published on July 14, 2024 09:57

July 4, 2024

Center Images using CSS

Table of Contents:

IntroductionPrerequisitesStarter CodeCenter Images HorizontallyCenter Images VerticallyCenter Images Both Horizontally and VerticallyKey Takeaways

Reading Time: 20 minutes | Coding Time: 30 minutes

Introduction

If you have used CSS (Cascading Style Sheets before) to develop a webpage, you know that if not like a standard programming language in that there are no runtime errors. If the logic in your code is not correct, there will simply be no changes on your webpage. T...

 •  0 comments  •  flag
Share on Twitter
Published on July 04, 2024 12:25

June 30, 2024

Guide through Serverless architecture

Introduction

In this OpenGenus article, we will present to you serverless architecture and its different aspects.

Table of ContentsIntroductionWhat is itHow it worksIt’s historyWhat problem is it answeringWhen is it usedReal life examples of the architectures being usedThe negativesImprovement on serverlessKey-takeawaysConclusionReferencesWhat is it

Serverless architecture is a system comprised of cloud infrastructure and an application.

How it works

There are different definition...

 •  0 comments  •  flag
Share on Twitter
Published on June 30, 2024 22:25