Teradata Package for Python Function Reference on VantageCloud Lake - load - Teradata Package for Python - Look here for syntax, methods and examples for the functions included in the Teradata Package for Python.

Teradata® Package for Python Function Reference on VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Package for Python
Release Number
20.00.00.04
Published
March 2025
ft:locale
en-US
ft:lastEdition
2025-04-11
dita:id
TeradataPython_FxRef_Lake_2000
Product Category
Teradata Vantage
teradataml.automl.__init__.AutoRegressor.load = load(self, table_name)
DESCRIPTION:
    Function loads models information from the specified table.
 
PARAMETERS:
    table_name:
        Required Argument.
        Specifies the table name from which models are to be loaded.
        Types: str
 
RETURNS:
    Pandas DataFrame with loaded models information.
 
RAISES:
    TeradataMlException.
 
EXAMPLES:
    # Create an instance of the AutoML called "obj" 
    # by referring "AutoML() or AutoRegressor() or AutoClassifier()" method.
    >>> obj = AutoML()
    # Load models from the specified table.
    >>> tab = obj.load("model_table")