snowflake.ml.model.SaveMode

class snowflake.ml.model.SaveMode(value)

Bases: str, Enum

Save mode options for batch inference output.

Determines the behavior when files already exist in the output location.

OVERWRITE: Remove existing files and write new results.

ERROR: Raise an error if files already exist in the output location.

Attributes

OVERWRITE = 'overwrite'
ERROR = 'error'