Skip to main content

A variant of the beam search algorithm that focuses on finding answers that maximize the probability of generating an answer before diverging into another subject.

Project description

Divergent Beam Search

Overview

Divergent Beam Search is a variant of the beam search algorithm. Unlike the beam search where answers are constrained, which aims to find the answers with the highest probability of appearing, Divergent Beam Search focuses on finding answers that are not likely to be continued with another answer. Essentially, it finds the answers that maximize the probability of generating an answer before diverging into another subject given the prompt.

The core idea of this algorithm can be roughly summarized in the following optimization problem:

$$\max_{ans \in A} P(ans + diverging\ into\ another\ subject \mid prompt)$$

It is important that the set of answers $A$ is sufficiently exhaustive for this method to work. Otherwise, the algorithm could unjustifiably conclude that an answer is not being followed by the answer while this longer answer exists but is not included in the set $A$.

Installation

To install the package, use the following command:

pip install divergent-beamsearch

Usage

Here's a brief example of how to use divergent-beamsearch:

import torch
from transformers import GPT2LMHeadModel, GPT2Tokenizer
from multi_choices_parser import MultiChoicesParser
from divergent_beamsearch import divergent_beamsearch

# Load model and tokenizer
model = GPT2LMHeadModel.from_pretrained("gpt2")
tokenizer = GPT2Tokenizer.from_pretrained("gpt2")

# Define input prompt
prompt = "The capital of France is"
input_ids = tokenizer.encode(prompt, return_tensors="pt")

# Define beam search parameters
beam_size = 5
max_length = 10
pad_token_id = tokenizer.eos_token_id

# Define possible answers
possible_answers = [' Paris', ' Paris Hilton']
tokenized_answers = tokenizer(possible_answers).input_ids
multi_choices_parser = MultiChoicesParser([tokenized_answers])

# Perform beam search
scores, solutions = divergent_beamsearch(
    input_ids=input_ids,
    model=model,
    beam_size=beam_size,
    max_length=max_length,
    multi_choices_parser=multi_choices_parser,
    pad_token_id=pad_token_id,
    num_solutions=2
)

# Decode solutions
decoded_solutions = [tokenizer.decode(solution, skip_special_tokens=True) for solution in solutions]
print("Scores:", scores)
print("Solutions:", decoded_solutions)

License

This project is licensed under the MIT License. See the LICENSE file for details.

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

divergent_beamsearch-0.2.3.tar.gz (38.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

divergent_beamsearch-0.2.3-py3-none-any.whl (6.1 kB view details)

Uploaded Python 3

File details

Details for the file divergent_beamsearch-0.2.3.tar.gz.

File metadata

File hashes

Hashes for divergent_beamsearch-0.2.3.tar.gz
Algorithm Hash digest
SHA256 97e99a5297b7867e76017452db4cfadf426e01be39ed4a038d36c491caee333a
MD5 51324ff36ce1d689639753a4633d5396
BLAKE2b-256 38cf3fc94842145aeb627e70b7570fe42fdf0babd4fac7ed6c11fcfef4ee9cf8

See more details on using hashes here.

File details

Details for the file divergent_beamsearch-0.2.3-py3-none-any.whl.

File metadata

File hashes

Hashes for divergent_beamsearch-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d979c1c46cae828d07bc877ba57d69a46532282f0a43602dbb61fa7e6f63fbfb
MD5 7fccce7b85b2d20f8bdc3c386ffa392a
BLAKE2b-256 3ec62f84c7db76070713a100556dda41257b98269e4ab6c68cc89377bcb4e7c1

See more details on using hashes here.

Supported by

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