This module is designed to provide a simple interface to help users successfully train synthetic models on complex datasets with high row and column counts, and offers features such as Cloud SaaS based training and multi-GPU based parallelization. Get started for free with an API key from Gretel.ai.
Gretel-LSTM model type supports text, tabular, time-series, and conditional data generation.Gretel-ACTGAN model type supports tabular and conditional data generation.Gretel-GPT natural language synthesis based on an open-source implementation of GPT-3 (coming soon).Gretel-DGAN multi-variate time series based on DoppelGANger (coming soon).If you want to quickly get started synthesizing data with Gretel.ai, simply click the button below and follow the examples. See additional Python3 and Jupyter Notebook examples in the ./notebooks folder.
If you want to be part of the Synthetic Data Community to receive announcements of the latest releases, ask questions, suggest new features or participate in the development meetings, please join the Synthetic Data Community Server!
Using pip:
pip install -U gretel-trainerUse the Gretel client to store your API key to disk. This step is optional, the trainer will prompt for an API key in the next step.
gretel configurefrom gretel_trainer import trainer
dataset = "https://gretel-public-website.s3-us-west-2.amazonaws.com/datasets/USAdultIncome5k.csv"
model = trainer.Trainer()
model.train(dataset)df = model.generate()Setup environment and install dependencies.
python -m venv venv
source venv/bin/activate
pip install -r requirements-dev.txt
pip install -e .make testmake type