Gretel SDK

Start building with synthetic data in just 3 lines of code πŸš€

The SDK's high-level interface makes interacting with Gretel's APIs simple and intuitive. Training state-of-the-art deep generative models from scratch only takes a few lines of code:

from gretel_client import Gretel

gretel = Gretel(project_name="sdk-docs", api_key="prompt")

trained = gretel.submit_train("tabular-actgan", data_source="data.csv")

In this section, we will provide an overview of the key concepts you need to know to start building with the high-level interface:

What about the lower-level SDK?

The high-level SDK interface is built on top of the lower-level Gretel Python SDK. This means it is compatible with all existing code, and the lower-level SDK can always be used for features that are not yet covered by the high-level SDK.

Note that the high-level interface is in active development, and it currently only supports Synthetics. We have plans to add support for Transform and Workflows soon.

Last updated