FINETUNE ('CANCEL') (SNOWFLAKE.CORTEX)

Cancels the specified fine-tuning job from the current schema.

Syntax

SNOWFLAKE.CORTEX.FINETUNE(
  'CANCEL',
  '<finetune_job_id>'
)
Copy

Parameters

'CANCEL'

Specifies that you want to cancel a fine-tuning job.

finetune_job_id

The ID of the fine-tuning job that was generated when you created the job.

Output

Column

Type

Description

SNOWFLAKE.CORTEX.FINETUNE

STRING

Message that the job was canceled.

Access control requirements

For access requirements, see Access control requirements.

Examples

SELECT SNOWFLAKE.CORTEX.FINETUNE(
  'CANCEL',
  'ft_194bbea4-1208-42f3-88c6-cfb202086125'
);
Copy
Canceled Cortex Fine-tuning job: ft_194bbea4-1208-42f3-88c6-cfb202086125
Language: English