Steerable data generation system for LLM fine-tuning
Project description
⬜️ Open Datagen ⬜️
Open Datagen, a steerable data generation system for ML models training.
Features
-
Generate high-quality synthetic datasets using simple templates
-
Quality enhancement with RAG from Internet and local files
-
Data anonymization
-
Data evaluation & cleaning agent
-
Open-source model support (HuggingFace Inference API)
-
(SOON) Data decontamination
-
(SOON) Multimodality
Installation
pip install --upgrade opendatagen
Setting up the OpenAI API key (using openai>=1.2)
export OPENAI_API_KEY='your_openai_api_key'
Setting up the SERPLY API key for Google Search API (optional)
export SERPLY_API_KEY='your_serply_api_key'
Usage
Example: Generate a low-biased dataset to improve factuality of an LLM.
template.json:
{
"factuality": {
"description": "Factuality",
"prompt": "Given the following text:\n\n'''{wikipedia_content}'''\n\nAnswer to this factually checkable question:\n'''{question}'''.",
"completion": "Answer: '''{answer}'''. Rate the answer out of 10: {score}",
"prompt_variation_number": 0,
"variables": {
"wikipedia_content": {
"name": "Wikipedia content",
"generation_number": 1,
"get_value_from_huggingface": {
"dataset_name": "20220301.en",
"dataset_path": "wikipedia",
"column_name": "text",
"max_tokens": 512
}
},
"question": {
"name": "Factually checkable question",
"generation_number": 3,
"models": [
{
"openai_chat_model": {
"name": "gpt-3.5-turbo-1106",
"temperature": 0,
"max_tokens": 128
}
}
]
},
"answer": {
"name": "Short answer to the question",
"generation_number": 1,
"models": [
{
"openai_instruct_model": {
"name": "gpt-3.5-turbo-instruct",
"temperature": 0,
"max_tokens": 128,
"start_with": ["Answer:"]
}
}
]
},
"score": {
"name": "Score",
"generation_number": 1,
"note": ["You must answer with an integer."],
"models": [
{
"openai_chat_model": {
"name": "gpt-3.5-turbo-1106",
"temperature": 0,
"max_tokens": 5
}
}
]
}
}
}
}
Python code to generate the dataset:
from opendatagen.template import TemplateManager
from opendatagen.data_generator import DataGenerator
output_path = "factuality.csv"
manager = TemplateManager(template_file_path="template.json")
template = manager.get_template(template_name=template_name)
if template:
generator = DataGenerator(template=template)
data = generator.generate_data(output_path=output_path)
print(data)
Using this template you will:
- Get text content from the Wikipedia dataset hosted on HuggingFace
- Generate 3 questions about this content
- Generate an short answer
- Rate the answer
Once the CSV created, you can ask an AI Agent to evaluate and correct your dataset
from opendatagen.agent import DataAgent
agent = DataAgent()
agent.run()
Contribution
We welcome contributions to Open Datagen! Whether you're looking to fix bugs, add templates, new features, or improve documentation, your help is greatly appreciated.
Note
Please note that opendatagen is initially powered by OpenAI's models. Be aware of potential biases and use the note field to guide outputs.
Acknowledgements
We would like to express our gratitude to the following open source projects and individuals that have inspired and helped us:
-
Textbook Generation by VikParuchuri
-
Evol-Instruct Paper (Read the paper) by WizardLM_AI
Connect
Reach us on Twitter: @thoddnn.
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 opendatagen-0.0.16.tar.gz.
File metadata
- Download URL: opendatagen-0.0.16.tar.gz
- Upload date:
- Size: 21.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e55d137699346b0eb7dc94c11e546669ddfd4ca503538c6d215cb7146c86c59
|
|
| MD5 |
1dae7d34018766438663ab6f527d0721
|
|
| BLAKE2b-256 |
688303b99926066741ff8d269dad2303862c840e0480e86f62428e3c3a5fd242
|
File details
Details for the file opendatagen-0.0.16-py3-none-any.whl.
File metadata
- Download URL: opendatagen-0.0.16-py3-none-any.whl
- Upload date:
- Size: 35.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
620328950605d97b955438663059b6c49237ebc696f70ce6c71d04dbc283b355
|
|
| MD5 |
8a4fa62efcb1e6eb08e67e20df0afc64
|
|
| BLAKE2b-256 |
43953b362af16db88f1ba1c5c19efe37440b48ef9ce289efa8793adab1eaa9cf
|