Data2Image is a state-of-the-art library that wraps the most important techniques for the construction of Synthetic Images from Sorted Data (also known as Tabular Data).
-
Input data formats (2 options):
- Pandas Dataframe
- Files with the following format
-
Runs on Linux, Windows and macOS systems.
-
Compatible with Python 3.7 or higher.
Model | Class | Features | Hyperparameters |
---|---|---|---|
TINTO | tinto() |
blur |
problem algorithm pixels blur amplification distance steps option seed times verbose |
SuperTML | SuperTML() |
problem verbose |
|
IGTD | IGTD() |
problem scale fea_dost_method save_image_size max_step val_step error switch_t min_gain seed verbose |
You can install Data2Image using Pypi(test):
pip install data2image-alpha
To import a specific model use
from data2Image.models import tinto
Create the model. If you don't set any hyperparameter, the model will use the default values (read documentation).
model = tinto(blur=True)
To generate the synthetic images use .genereateImages(data,folder)
method.
model.generateImages(data, resultsFolderPath)
Data2Image is available under the Apache License 2.0.