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.
Parameters
Section titled “Parameters”| Name | Type | Description | Optional |
|---|---|---|---|
database_name | str | The name of the database where the result tables will be stored. | No |
schema_name | str | The name of the schema where the result tables will be stored. | No |
Returns
Section titled “Returns”An instance of the OutputConfig class.
Example
Section titled “Example”from relationalai_gnns import OutputConfig
output_config = OutputConfig.snowflake( database_name="DATABASE_NAME", schema_name="PUBLIC")