Skip to main content

This package provides functions to analyze emotions in video or audio files. It offers a comprehensive set of tools to detect and analyze emotions at a sentence level, producing valuable insights into the emotional content of multimedia sources.

Project description

Emotion Detective

Overview

This NLP project provides functions to analyze emotions in video or audio files. It offers a comprehensive set of tools to detect and analyze emotions at a sentence level, producing valuable insights into the emotional content of multimedia sources. It includes a package with all necessary functions, two pipelines -- one for training the NLP model and one for inference, and Sphinx documentation.

Installation

To install the package and its dependencies, use the following pip command:

pip install emotion_detective

Additional Dependencies

The package also requires to have the following dependencies installed on your system. To install the additional dependencies, refer to the installation documentation linked below:

Usage

Package

To use the package in your Python code, import it as follows:

import emotion_detective

[Provide a brief overview of the main functionalities of your package and how users can use them.]

Pipelines

Training Pipeline

The training pipeline in this NLP project is the training pipeline for an emotion classification model. This pipeline executes the following steps:

  1. Data Loading: It loads the input data from the specified file path, including text data and emotion labels.

  2. Class Balancing: It balances the dataset to ensure equal representation of all emotion classes.

  3. Spelling Correction: It corrects spelling mistakes in the text data.

  4. Text Preprocessing: It preprocesses the text data, including tokenization and encoding.

  5. Model Training and Evaluation: It trains and evaluates a RoBERTa-based emotion classification model using the preprocessed data, specified learning rate, batch size, number of epochs, and patience for early stopping.

  6. Model Saving: It saves the trained model to the specified directory with the given name.

This pipeline takes the following parameters:

  • file_path: Path to the file containing the input data.
  • text_column: Name of the column in the DataFrame containing text data.
  • emotion_column: Name of the column in the DataFrame containing emotion labels.
  • mapped_emotion_column: Name of the column in the DataFrame containing mapped emotion labels.
  • input_id_column: Name of the column in the DataFrame containing input IDs.
  • learning_rate: Learning rate for the optimizer.
  • batch_size: Batch size for training and validation DataLoaders.
  • num_epochs: Number of epochs to train the model.
  • patience: Patience for early stopping.
  • model_dir: Directory where the trained model will be saved.
  • model_name: Name to use when saving the trained model.

Upon completion, this pipeline does not return any value but logs the completion status.

Inference Pipeline

The first pipeline in this NLP project is the inference pipeline for emotion detection from video and audio files. This pipeline performs the following steps:

  1. Data Ingestion: It ingests the input audio (mp3) or video file (mp4). If the input is a video file, it converts it to audio format and saves it to the specified output path.

  2. Data Preprocessing: It transcribes and translates the audio using NLP techniques.

  3. Model Loading: It loads the pre-trained NLP model specified by the model_path.

  4. Prediction: It utilizes the loaded model to predict emotions from the transcribed sentences.

  5. Logging: It logs the program's execution process, including information, warnings, and errors, to a log file (logs/emotion_detective.txt) and the console.

The pipeline takes the following parameters:

  • input_path: Path to the input audio or video file.
  • output_audio_path (optional): Path to save the transcribed audio file, required only when the input is a video file. Ensure the file extension is .mp3.
  • model_path (optional): Path to the saved NLP model, defaulting to "roberta-base".
  • batch_size (optional): Batch size used for model prediction, defaulting to 32.

The pipeline returns a DataFrame containing transcribed sentences, predicted emotions, their values, and probabilities.

Pipeline Overview

Visualisation of the pipeline

Sphinx Documentation

To see the full documentation of the functions and their usage, please refer to the Emotion Detective Documentation

Examples

Example Training Pipeline

from emotion_detective import 

def training_pipeline(
    file_path: str,
    text_column: str,
    emotion_column: str,
    mapped_emotion_column: str,
    input_id_column: str,
    learning_rate: float,
    batch_size: int,
    num_epochs: int,
    patience: int,
    model_dir: str,
    model_name: str
):
    """
    Executes the complete training pipeline for an emotion classification model.

    This function performs the following steps:
    1. Loads the data from a specified file path.
    2. Balances the dataset to ensure equal representation of all emotion classes.
    3. Preprocesses the text data, including tokenization and encoding.
    4. Trains and evaluates a RoBERTa-based emotion classification model.
    5. Saves the trained model to a specified directory with a given name.

    Args:
        file_path (str): Path to the file containing the input data.
        text_column (str): Name of the column in the DataFrame containing text data.
        emotion_column (str): Name of the column in the DataFrame containing emotion labels.
        mapped_emotion_column (str): Name of the column in the DataFrame containing mapped emotion labels.
        input_id_column (str): Name of the column in the DataFrame containing input IDs.
        learning_rate (float): Learning rate for the optimizer.
        batch_size (int): Batch size for training and validation DataLoaders.
        num_epochs (int): Number of epochs to train the model.
        patience (int): Patience for early stopping.
        model_dir (str): Directory where the trained model will be saved.
        model_name (str): Name to use when saving the trained model.

    Returns:
        None

    Raises:
        Exception: If any error occurs during the pipeline execution, it will be logged and re-raised.

    Author:
        Rebecca Borski, Kacper Janczyk, Martin Vladimirov, Amy Suneeth, Andrea Tosheva
    """
    logger = setup_logging()

    try:
        # Load data
        logger.info("Loading data...")
        df = load_data(file_path, text_column, emotion_column)

        # Balance classes
        logger.info("Balancing classes...")
        df = balancing_multiple_classes(df, emotion_column)

        logger.info("Correct Spelling Mistakes...")
        df = spell_check_and_correct(df, text_column)

        # Preprocess text
        logger.info("Preprocessing text...")
        df = preprocess_text(df, text_column, emotion_column)

        # Train and evaluate model
        logger.info("Training and evaluating model...")
        model = train_and_evaluate(df, mapped_emotion_column, input_id_column, learning_rate, batch_size, num_epochs, patience)

        # Save model
        logger.info("Saving model...")
        save_model(model, model_dir, model_name)

        logger.info("Training pipeline completed successfully.")

    except Exception as e:
        logger.error(f"Error in training pipeline: {e}")
        raise

if __name__ == "__main__":
    app()

Example Inference Pipeline

License

Credits

Amy Suneeth, Martin Vladimirov, Andrea Tosheva, Kacper Janczyk, Rebecca Borski

Contact

[Provide contact information for users to reach out to you for questions, feedback, or support.]

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

emotion_detective-1.1.2.tar.gz (15.4 kB view details)

Uploaded Source

Built Distribution

emotion_detective-1.1.2-py3-none-any.whl (17.4 kB view details)

Uploaded Python 3

File details

Details for the file emotion_detective-1.1.2.tar.gz.

File metadata

  • Download URL: emotion_detective-1.1.2.tar.gz
  • Upload date:
  • Size: 15.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.9.19 Windows/10

File hashes

Hashes for emotion_detective-1.1.2.tar.gz
Algorithm Hash digest
SHA256 ee8750268176aa3f292ed746e10bc98767e062b901fd915e96e76935a2522be1
MD5 7d5220b6d6876daefb3c0b11cd031d11
BLAKE2b-256 4f7f03e5b6004940721810d6e55311327f0e328c66559aeb146b7ac9d6b52a9b

See more details on using hashes here.

File details

Details for the file emotion_detective-1.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for emotion_detective-1.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 545904fdf515a50ee33c2ba0cd6636874053bec390fd1931651d80715e9f53e8
MD5 3f47b647bc8e392b83e776102c97a1e6
BLAKE2b-256 c31eaadceab43f6fc4ec91c35c6764fff3ab5e5ce1542f1d8b06fd236b0c6742

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