Skip to content

OutputConfig

Helper class for defining the configuration of the prediction output destination.

Before running inference, you must specify where the output data will be saved. The data is stored in Snowflake tables. Ensure that the engine has write permissions for the target database and schema.

NameTypeDescriptionOptional
database_namestrThe name of the database where the result tables will be stored.No
schema_namestrThe name of the schema where the result tables will be stored.No

An instance of the OutputConfig class.

from relationalai_gnns import OutputConfig
output_config = OutputConfig.snowflake(
database_name="DATABASE_NAME",
schema_name="PUBLIC"
)