From d1ab2f233f6b5353dcb71469d32a23ff5c090f40 Mon Sep 17 00:00:00 2001 From: ash01825 Date: Fri, 17 Jan 2025 13:28:20 +0530 Subject: [PATCH] Added Displayn for all projects and algorithms --- .../machine-learning/boosting/index.md | 15 +-- .../data-preprocessing/index.md | 45 ++++++-- docs/algorithms/machine-learning/index.md | 48 ++++++++ .../natural-language-processing/index.md | 105 +++++++++++++++++- docs/algorithms/statistics/index.md | 48 ++++++++ docs/projects/computer-vision/index.md | 24 ++++ docs/projects/machine-learning/index.md | 75 +++++++++++++ .../natural-language-processing/index.md | 44 ++++++++ 8 files changed, 388 insertions(+), 16 deletions(-) diff --git a/docs/algorithms/machine-learning/boosting/index.md b/docs/algorithms/machine-learning/boosting/index.md index 249f1ae4..cedb89a6 100644 --- a/docs/algorithms/machine-learning/boosting/index.md +++ b/docs/algorithms/machine-learning/boosting/index.md @@ -1,11 +1,12 @@ # Boosting 🤖 -
-
- +
+ + +
+

Lighrt Gradient Boosting Machine

+

Powerful gradient-boosting framework that can be used for both regression and classification tasks.

+

📅 2025-01-10 | ⏱️ 4 mins

-

No Items Found

-

- There are no items available at this time. Check back again later. -

+
diff --git a/docs/algorithms/machine-learning/data-preprocessing/index.md b/docs/algorithms/machine-learning/data-preprocessing/index.md index 2801c7d3..c09bd471 100644 --- a/docs/algorithms/machine-learning/data-preprocessing/index.md +++ b/docs/algorithms/machine-learning/data-preprocessing/index.md @@ -1,11 +1,40 @@ # Data Pre-processing 🤖 -
-
- -
-

No Items Found

-

- There are no items available at this time. Check back again later. -

+
+ + +
+ + +
+

Encoding

+

Process of converting categorical data into numerical values

+
+
+
+ + +
+ + +
+

Imputation

+

Technique that replaces missing values in a dataset with estimated values.

+
+
+
+ + +
+ + +
+

Scaling and Normalization

+

Techniques that transform numerical data values into a common scale.

+
+
+
+ + +
diff --git a/docs/algorithms/machine-learning/index.md b/docs/algorithms/machine-learning/index.md index c2bb76d8..b7bca1d4 100644 --- a/docs/algorithms/machine-learning/index.md +++ b/docs/algorithms/machine-learning/index.md @@ -1,2 +1,50 @@ # Machine Learning 🤖 + +
+ + +
+ + +
+

Boosting

+

Modeling technique that attempts to build a strong classifier from the number of weak classifiers.

+
+
+
+ + +
+ + +
+

Data Preprocessing

+

Technique that is used to convert the raw data into a clean data set.

+
+
+
+ + +
+ + +
+

Supervised

+

Uses labeled datasets to train algorithms to predict outcomes and recognize patterns.

+
+
+
+ + +
+ + +
+

Unsupervised

+

Uses algorithms to analyze unlabeled data without human intervention

+
+
+
+ +
diff --git a/docs/algorithms/natural-language-processing/index.md b/docs/algorithms/natural-language-processing/index.md index 2ba3ae9c..b29b87ca 100644 --- a/docs/algorithms/natural-language-processing/index.md +++ b/docs/algorithms/natural-language-processing/index.md @@ -1,2 +1,105 @@ -# Natural Language Processing 🗣️ +# Natural Language Processing 🗣️ +
+ + + + +
+

Bag Of Words

+

Representation of text that is based on an unordered collection.

+

📅 2025-01-10 | ⏱️ 3 mins

+
+
+ + + + +
+

Fast Text

+

From Facebook AI Research(FAIR) for learning word embeddings and word classifications.

+

📅 2025-01-15 | ⏱️ 7 mins

+
+
+ + + + +
+

Gloabl Vectors

+

Unsupervised learning algorithm for obtaining vector representations for words.

+

📅 2025-01-15 | ⏱️ 4 mins

+
+
+ + + + +
+

NLP Introduction

+

Enables computers to comprehend, generate, and manipulate human language.

+

📅 2025-01-15 | ⏱️ 3 mins

+
+
+ + + + +
+

NLTK Setup

+

Working with human language data.

+

📅 2025-01-10 | ⏱️ 2 mins

+
+
+ + + + +
+

Text Pre-Processing Techniques

+

Cleaning and preparing raw text data for further analysis or model training.

+

📅 2025-01-15 | ⏱️ 4 mins

+
+
+ + + + +
+

Term Frequency-Inverse Document Frequency

+

Measure of importance of a word to a document.

+

📅 2025-01-15 | ⏱️ 3 mins

+
+
+ + + + +
+

Transformers

+

Deep neural network architecture.

+

📅 2025-01-15 | ⏱️ 4 mins

+
+
+ + + + +
+

Word2Vec

+

Creates vector representations of words.

+

📅 2025-01-15 | ⏱️ 3 mins

+
+
+ + + + +
+

Word Embeddings

+

Numeric representations of words in a lower-dimensional space.

+

📅 2025-01-15 | ⏱️ 3 mins

+
+
+ +
diff --git a/docs/algorithms/statistics/index.md b/docs/algorithms/statistics/index.md index f4cf4a4f..bd30fc6e 100644 --- a/docs/algorithms/statistics/index.md +++ b/docs/algorithms/statistics/index.md @@ -1,2 +1,50 @@ # Statistics 📃 +
+ + +
+ + +
+

Descriptive

+

Describe our data in some meaningful manner

+
+
+
+ + +
+ + +
+

Inferential

+

Uses sample data to draw conclusions about a larger population.

+
+
+
+ + +
+ + +
+

Metrics and Losses

+

Quantify how well your model matches the actual data

+
+
+
+ + +
+ + +
+

Probabilty

+

Possibility of the outcome of any random event.

+
+
+
+ + +
diff --git a/docs/projects/computer-vision/index.md b/docs/projects/computer-vision/index.md index 1ba7b3c8..303a0510 100644 --- a/docs/projects/computer-vision/index.md +++ b/docs/projects/computer-vision/index.md @@ -1,2 +1,26 @@ # Computer Vision 🎥 +
+ + + + +
+

Black and White Image Colorizer

+

Taking an input grayscale image and then producing an output colorized image

+

📅 2025-01-10 | ⏱️ 2 mins

+
+
+ + + + +
+

Music Genre Classification Model

+

Identify the genre of a song by analyzing its audio signal.

+

📅 2025-01-15 | ⏱️ 3 mins

+
+
+ +
+ diff --git a/docs/projects/machine-learning/index.md b/docs/projects/machine-learning/index.md index c2bb76d8..40ed1800 100644 --- a/docs/projects/machine-learning/index.md +++ b/docs/projects/machine-learning/index.md @@ -1,2 +1,77 @@ # Machine Learning 🤖 +
+ + + + +
+

Air Quality Prediction

+

Determining the air quality index.

+

📅 2025-01-10 | ⏱️ 4 mins

+
+
+ + + + +
+

Cardiovascular Disease Prediction

+

Predict cardiovascular disease (CVD) by analyzing health records.

+

📅 2025-01-15 | ⏱️ 7 mins

+
+
+ + + + +
+

Health Insurance Cross Sell Prediction

+

Predict whether the customers from past year will also be interested in Vehicle Insurance provided by the company./p> +

📅 2025-01-15 | ⏱️ 5 mins

+
+
+ + + + +
+

Poker Hand Prediction

+

Create classifiers than can classify a 5- cards poker hand.

+

📅 2025-01-15 | ⏱️ 5 mins

+
+
+ + + + +
+

Sleep Quality Prediction

+

Predict the quality of sleep based on actigraphy data from awake periods.

+

📅 2025-01-15 | ⏱️ 2 mins

+
+
+ + + + +
+

Used Car Price Prediction

+

Predict the price of a used car.

+

📅 2025-01-15 | ⏱️ 6 mins

+
+
+ + + + +
+

Heart Disease Detection Model

+

Detect heart disease by analyzing patient data and healthcare records.

+

📅 2025-01-15 | ⏱️ 4 mins

+
+
+ + + +
diff --git a/docs/projects/natural-language-processing/index.md b/docs/projects/natural-language-processing/index.md index 2ba3ae9c..8f2891d4 100644 --- a/docs/projects/natural-language-processing/index.md +++ b/docs/projects/natural-language-processing/index.md @@ -1,2 +1,46 @@ # Natural Language Processing 🗣️ +
+ + + + +
+

Email Spam Detection

+

Used to detect email spam.

+

📅 2025-01-10 | ⏱️ 4 mins

+
+
+ + + + +
+

Name Entity Recognition

+

Identifies and classifies important information in text.

+

📅 2025-01-15 | ⏱️ 3 mins

+
+
+ + + + +
+

Next Word Predictor

+

Identifying the most likely word to follow a given string of words./p> +

📅 2025-01-15 | ⏱️ 4 mins

+
+
+ + + + +
+

Twitter Sentiment Analysis

+

Determines negative, positive, or neutral emotions within the text of a tweet

+

📅 2025-01-15 | ⏱️ 4 mins

+
+
+ + +