load | AutoDataPrep in AutoML | teradataml - load - Teradata VantageCloud Lake

Lake - Analyze Your Data with ClearScape Analytics™

Deployment
VantageCloud
Edition
Lake
Product
Teradata VantageCloud Lake
Release Number
Published
February 2025
ft:locale
en-US
ft:lastEdition
2026-02-20
dita:mapPath
tcl1683670667798.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
tcl1683670667798

Use the load() function to load the AutoDataPrep generated data from the database in the session to use it for model training or scoring. This function returns a dictionary of DataFrames containing the datas generated from AutoDataPrep.

Required Parameter

table_name
Specifies the name of the table containing the information of deployed datasets in the database.

Example: Load data

Create an instance of AutoDataPrep.

>>> aprep_obj = AutoDataPrep()

Load the data from the table.

>>> data = aprep_obj.load("table_name")

Retrieve the data.

>>> print(data)