Skip to main content

Generative Summarization for Data Augmentation

Project description

gensum - Generative Summarization for Data Augmentation

License PyPI version Python 3.10

Introduction

Imbalanced class distribution remains a classic common problem in ML. Undersampling combined with oversampling are two methods of attempting to address this issue. Techniques such as SMOTE and MLSMOTE have been proposed, but the high dimensional nature of numerical vectors created from text makes other data augmentation approaches preferable.

gensum is an NLP library based on absum that uses generative summarization to perform data augmentation in order to oversample under-represented classes in datasets. Recent advancements in generative models such as ChatGPT make this approach optimal in achieving realistic but unique data for the augmentation process.

It uses ChatGPT by default, but is designed in a modular way to allow you to use any large language models capable of generative summarization. gensum is format agnostic, expecting only a DataFrame containing a text and classifier column.

Installation

Via pip

pip install gensum

From source

git clone https://github.com/aaronbriel/gensum.git
pip install [--editable] .

or

pip install git+https://github.com/aaronbriel/gensum.git

Usage

gensum expects a DataFrame containing a text column which defaults to 'text', and another classifier column which defaults to 'classifier'. All available parameters are detailed in the Parameters section below.

import pandas as pd
from gensum import Augmentor

csv = 'path_to_csv'
df = pd.read_csv(csv)
augmentor = Augmentor(df, text_column='text', classifier='intent')
df_augmented = augmentor.gen_sum_augment()
# Store resulting dataframe as a csv
df_augmented.to_csv(csv.replace('.csv', '-augmented.csv'), encoding='utf-8', index=False)

NOTE: The output dataframe contains only the augmented rows.

Parameters

Name Type Description
df (:class:pandas.Dataframe, required, defaults to None) Dataframe containing text and one-hot encoded features.
text_column (:obj:string, optional, defaults to "text") Column in df containing text.
classifier (:obj:string, optional, defaults to "classifier") Classifier to augment data for.
classifier_values (:obj:string, optional, defaults to None) Specific classifier values to augment data for.
min_length (:obj:int, optional, defaults to 10) The min length of the sequence to be generated. Between 0 and infinity. Default to 10.
max_length (:obj:int, optional, defaults to 50) The max length of the sequence to be generated. Between min_length and infinity. Default to 50.
num_samples (:obj:int, optional, defaults to 20) Number of samples to pull from dataframe with specific feature to use in generating new sample with Generative Summarization.
threshold (:obj:int, optional, defaults to mean count for all classifier values) Maximum ceiling for each feature, normally the under-sample max.
prompt (:obj:string, optional, defaults to "Create SUMMARY_COUNT unique, informally written sentences similar to the ones listed here:") The prompt to use for the generative summarization. If you change the prompt, please be sure to keep the SUMMARY_COUNT string in it somewhere as this is expected and replaced based on the append count calculated for said classifier value.
llm (:obj:string, optional, defaults to 'chatgpt') The generative LLM to use for summarization.
model (:obj:string, optional, defaults to 'gpt-3.5-turbo') The specific model to use.
temperature (:obj:int, optional, defaults to 0) Determines the randomness of the generated sequences. Between 0 and 1, where a higher value means the generated sequences will be more random.
debug (:obj:bool, optional, defaults to True) If set, prints generated summarizations.

Citation

Please reference this library if you use this work in a published or open-source project.

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

gensum-0.1.2.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

gensum-0.1.2-py3-none-any.whl (13.3 kB view details)

Uploaded Python 3

File details

Details for the file gensum-0.1.2.tar.gz.

File metadata

  • Download URL: gensum-0.1.2.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.4

File hashes

Hashes for gensum-0.1.2.tar.gz
Algorithm Hash digest
SHA256 57d5ea14a2e79d10f87a9d43482e912525a23a46c2f8595231cd6e2288b664f7
MD5 51677caa8471e13252b0fe43836e8819
BLAKE2b-256 be1b1788d49144ef64e2301c698a2463cb39f69a46de0fbf1db61339d4945fa0

See more details on using hashes here.

File details

Details for the file gensum-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: gensum-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 13.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.4

File hashes

Hashes for gensum-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 50e3da088c3cbdc5a5daa872fc97a090f537c4d8420f466235db578782cba931
MD5 e0e4c70a6854157b09bf51b0700aac39
BLAKE2b-256 9d96bf6829ae39dfeaab623a61d1c3858e11b04f90fc5edb1bac5c78ea61a7b0

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