Skip to main content

Custom implementation of tfidf for imbalanced datasets

Project description

Weighted-Class-Tfidf

forthebadge made-with-pythonForTheBadgebuilt-with-love

Inspiration behind WCBTFIDF

Standard tfidf models select the features(number defined by the max_features param) using term frequency alone. This can create problems when the dataset is imbalanced resulting in words from the majority class being selected. As a result of this minority class gets under-represented in the matrix that is being returned by tfidf.

Solution

To tackle this problem we break down the tfidf process class wise. Let us consider an example to understand what WCBTFIDF does under the hood

Assume a dataset having two labels 0 and 1. 0 is present in 80% of the records and 1 is present in 20% of the records.

If we run standard tfidf on this(with for example 300 features) it will pick the top 300 words by frequency from both the classes. There is a very high chance that words selected will be majorly from class 0 and we might run the risk of under-representing class 1 severely.

What wcbtfidf does is that first it calculates weight for each label. Weight here refers to how many features it should select from each class.

Since class 0 is present in 80% of the records, wcbtfidf will pick 240 features from class 0 and 60 features from class 1.

So essentially we run tfidf class wise on 0 and 1 labels with max features set as 240 and 60.

After doing that, we combine the vocabulary from both these classes into a single list.It can be easily done since tfidf provides a vocabulary_ param that stores the vocab.

Finally this combined vocab is used as a fixed vocabulary in another tfidf model that is ran on the entire data. By fixing the vocab for the final tfidf we ensure that we are going to score on these set of words only.

To put it simply the 300 features choosen by wcbtfidf are a better representation of the overall data as compared to the features chosen by standard tfidf model.

RESULTS

In the experiments conducted, wcbtfidf performed better than standard tfidf models. The results have been put into a notebook under the demos folder.

Data Sources

IMDB Dataset

Toxic Classification Dataset

Sentiment140 Dataset

Article Link

Click here

Tutorial

# Import the class
from wcbtfidf import Wcbtfidf
# Initialize the object
wcbtfidf = Wcbtfidf(max_features=100)
# Fit on the training set
wcbtfidf.fit(xtrain,ytrain)
# Transform on the test set
test_df = wcbtfidf.transform(xtest)
# Get the vocab
wcbtfidf.combine_vocab
# Get the class wise vocab
wcbtfidf.class_wise_vocab

# Here xtrain,xtest refers to a single pandas column containing the text data and ytrain ytest the
# categorical output label

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Weighted Class Tfidf-1.0.2.tar.gz (4.7 kB view details)

Uploaded Source

Built Distribution

Weighted_Class_Tfidf-1.0.2-py3-none-any.whl (4.6 kB view details)

Uploaded Python 3

File details

Details for the file Weighted Class Tfidf-1.0.2.tar.gz.

File metadata

  • Download URL: Weighted Class Tfidf-1.0.2.tar.gz
  • Upload date:
  • Size: 4.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.5

File hashes

Hashes for Weighted Class Tfidf-1.0.2.tar.gz
Algorithm Hash digest
SHA256 962008b93dcc6f3b811f7c47fd44b72c725071008c3ee3f353ea69ea6a5c61d2
MD5 a283d19b712a9c9ce65ab0540689c1fe
BLAKE2b-256 e686362199106f62a43e9e317947872fc9ad49bbf8ffe2d05ba4da9e1c0df20c

See more details on using hashes here.

File details

Details for the file Weighted_Class_Tfidf-1.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for Weighted_Class_Tfidf-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a97ff0758474d3b0401997ba7759bb958057b57bbbb4dad81504b917b18e196d
MD5 e7c26d04d698ec4b6e68e43210bd3510
BLAKE2b-256 14eab609f01fe4f8d7ceb2005c5057452520cbb8564bb8fe4d47e20cab9d7d8c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page