Steerable data generation system for model training
Project description
⬜️ Open Datagen ⬜️
Open Datagen, a steerable data generation system for ML models training.
Features
- Generate data in the format you want
- Create custom templates with Pydantic models
- Use predefined templates
Installation
pip install --upgrade opendatagen
Setting up the OpenAI API key
export OPENAI_API_KEY='your_openai_api_key'
Usage
Example: If you want to train a small model to write great python code
from opendatagen.data_generator import DataGenerator
from opendatagen.model import LLM
from opendatagen.template import Template, Variable
variation_model = LLM.load_chat.GPT_35_TURBO_CHAT
completion_model = LLM.load_instruct.GPT_35_TURBO_INSTRUCT
# Create the custom template using the Pydantic models
user_template = Template(
description="Custom template for Python exercises",
prompt="Python exercice statement: {python_exercice_statement}",
completion="Answer:\n{python_code}",
prompt_variation_number=1,
prompt_variables={
"python_exercice_statement": Variable(
name="Python exercice statement",
temperature=1,
max_tokens=120,
generation_number=10
)
},
completion_variables={
"python_code": Variable(
name="Python code",
temperature=0,
max_tokens=256,
generation_number=1
)
}
)
generator = DataGenerator(template=user_template, variation_model=variation_model, completion_model=completion_model)
data = generator.generate_data(output_path="output.csv")
print(data)
This code will generate a dataset of 5 medium-level Python exercises/answers formatted as you asked for.
Predefined Templates:
from opendatagen.data_generator import DataGenerator
from opendatagen.model import LLM
from opendatagen.template import TemplateManager, TemplateName
variation_model = LLM.load_chat.GPT_35_TURBO_CHAT
completion_model = LLM.load_instruct.GPT_35_TURBO_INSTRUCT
manager = TemplateManager()
template = manager.get_template(TemplateName.PRODUCT_REVIEW)
generator = DataGenerator(template=template, variation_model=variation_model, completion_model=completion_model)
data = generator.generate_data(output_path="output.csv")
print(data)
You can find the templates in the template.json file.
Roadmap
- Enhance completion quality with sources like Internet, local files, and vector databases
- Augment and replicate sourced data
- Ensure data anonymity & open-source model support
- Future releases to support multimodal data
Note
Please note that opendatagen is initially powered by OpenAI's models. Be aware of potential biases and use the start_with and 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.7.tar.gz.
File metadata
- Download URL: opendatagen-0.0.7.tar.gz
- Upload date:
- Size: 10.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a677d9a20b3610ea801bc6f866aec1577797c9bb1c6323b0ff2b3f1723afac0
|
|
| MD5 |
9ba9e3f3cf5d8cc5d3636a8427831dfa
|
|
| BLAKE2b-256 |
5508dd149307e3b396cb90b9c363ff5b0d8eedf206264fa21b17f41dbd4f129f
|
File details
Details for the file opendatagen-0.0.7-py3-none-any.whl.
File metadata
- Download URL: opendatagen-0.0.7-py3-none-any.whl
- Upload date:
- Size: 22.9 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 |
39b3a4278230cb1987f09f513292da5838e9ed2d311877282b824b3222ab2367
|
|
| MD5 |
30a3657a0ee3ac57e230efcf123761c6
|
|
| BLAKE2b-256 |
028229e8dc804e4dd75281d46fd364c2b112637826de2b3cecbfe25c6ccbffb8
|