A Python library for classification tasks using multiple LLMs
Project description
PCS Annotator: A Python Library for Classification Tasks Using Multiple LLMs
How to Install
pip install pcs-annotator
How to Use
from pcs_annotator import PCS
Create a Prompt for Classification Tasks
prompt = """Analyze the news article and determine whether it is 'Fake' or 'Real.'
Label the article using the tag format: <label>Fake</label> or <label>Real</label>.
Respond only with the label.
"""
Training Dataset Path (dataset_path)
You will need a CSV file with two columns: label and text to ensure better annotation, as the data is used to train the LLMs.
🔧 Customizing Hyperparameters
The PCS class allows you to customize various hyperparameters, including the choice of annotator models, text mutator models, and API keys for different LLM providers.
📌 Example Usage
pcs = PCS(
prompt="Your classification prompt here",
dataset_path="path/to/dataset.csv",
annotators=["llama3-8b-8192", "mistralai/Mistral-7B-Instruct-v0.3", "gemma-2-9b-it"],
textmutator="llama-3.1-8b-instant",
GROQ_API_KEY=None,
OPENAI_API_KEY=None,
ANTHROPIC_API_KEY=None,
HUGGINGFACE_API_KEY=None,
generate_annotations=True,
Optimizer="LR" # or "GA"
)
print(pcs.annotate("America is a country"))
🖨️ Output
The .annotate() function returns a dictionary of confidence scores for each label:
{'Real': 0.87, 'Fake': 0.13}
Configuration
🔹 Annotators (annotators)
Defines the list of LLMs used for annotation.
- Default Models:
"llama3-8b-8192""mistralai/Mistral-7B-Instruct-v0.3""google/gemma-2-9b-it"
- Customization:
- You can add, remove, or modify the annotators by passing a list of model names.
🔹 Text Mutator (textmutator)
Determines the LLM used for generating text mutations.
- Default Model:
"llama-3.1-8b-instant" - Customization:
- You can replace it by passing a different model name as a string.
🔹 API Keys
To access certain LLM models, you need to provide API keys. These can be passed as arguments during initialization or set as environment variables in a .env file.
| API Key | Purpose |
|---|---|
GROQ_API_KEY |
Required for Llama and Google Gemma models. Set via argument or .env file. |
OPENAI_API_KEY |
Required for OpenAI models (e.g., "gpt-4"). |
ANTHROPIC_API_KEY |
Required for Anthropic models (e.g., "claude-3-5-sonnet-20241022"). |
HUGGINGFACE_API_KEY |
Required for Mistral models. |
🔹 Continue the Training (generate_annotations)
Determines whether to continue generating more annotations in the dataset or not
- Default Value:
True - Customization:
- You can change to
False
- You can change to
⚙️ Optimizer (Optimizer)
The PCS class supports weight optimization strategies for combining LLM predictions and Metamorphic Relation (MR) outputs. You can choose the optimizer during initialization using the Optimizer parameter.
🔧 Options
| Value | Description |
|---|---|
"LR" |
Linear Regression – Optimizes annotator and MR weights via regression. (default) |
"GA" |
Genetic Algorithm – Uses evolutionary search to find optimal weights. |
➕ Adding a Custom Metamorphic Relation (MR)
You can define and register your own MR by passing a custom prompt-generation function to the TextMutator class:
from pcs_annotator.TextMutator import TextMutator
# Define a new MR prompt
def custom_negation_prompt(text):
return f"""Transform all affirmative statements in the following text into their negated forms.
Start the response with 'new_text:' and include only the revised text.
Original Text:
{text}
"""
Initialize a mutator and register the new MR
mutator = TextMutator(model_name="llama-3.1-8b-instant", token="your_groq_api_key") mutator.register_mr("custom_negation", custom_negation_prompt)
Apply the new MR
mutated_text = mutator.MutateText("The cat is on the table.", "custom_negation") print(mutated_text)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pcs_annotator-0.2.3.tar.gz.
File metadata
- Download URL: pcs_annotator-0.2.3.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
899580f5e4318fb92b744c625b433a7e3eb68e6b61fee2160fbe18e1cfa3148c
|
|
| MD5 |
a3a33cdb300ddf658c1e43ccc49471a1
|
|
| BLAKE2b-256 |
bdac360b6d349d90536f935b28866cc833ff05aabdd9fa12ac8e127f3127aff9
|
File details
Details for the file pcs_annotator-0.2.3-py3-none-any.whl.
File metadata
- Download URL: pcs_annotator-0.2.3-py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e4e66d17dbcbdb9380a60b2b9d07d63fd2112a84340dd783286179556e12140
|
|
| MD5 |
1be4ab7f88b63f11561fd35d5b228a81
|
|
| BLAKE2b-256 |
01bc3f208aedbe616741a625d80e56486f9e0fe85390a0e4bfca6a770513e447
|