What’s New

version 1.4

New Datomize version 1.4 has been released!

We’re constantly working to improve your Datomize experience and are happy to share our latest version 1.4, released 23 Mar 2022

New

We are proud to release our first Python client sdk, which allows ML engineers to use Datomize’s capabilities with several lines of code from within their work environment ( see documentation ).


 

# Import relevant packages
from datomizer import Datomizer, DatoMapper, DatoTrainer, DatoGenerator

# Create a Datomizer with your credentials:
datomizer = Datomizer(username=username, password=password)

# Create a DatoMapper and analyze the data structure:
mapper = DatoMapper(datomizer)
mapper.discover(df=input_data)

# Create a DatoTrainer and train the generative model:
trainer = DatoTrainer(mapper)
trainer.train()

# Create a DatoGenerator and generate output data:
generator = DatoGenerator(trainer)
generator.generate()
output_data = pd.read_csv(generator.get_generated_data_csv())

Improvements

Rename your Datomizer

Added the ability to rename an existing Datomizer, by hovering the mouse over the Datomizer name, clicking the edit icon, and typing the desired name.

Delete a single task within your Datomizer

Added the ability to permanently delete a single task, by hovering over the desired task and clicking the delete icon.