FINETUNE ('SHOW') (SNOWFLAKE.CORTEX)¶

Lists the fine-tuning jobs for which you have access privileges.

Syntax¶

SNOWFLAKE.CORTEX.FINETUNE('SHOW')
Copy

Parameters¶

'SHOW'

Specifies that you want a list of the fine-tuning jobs for which you have access.

Output¶

A list of all the fine-tuning jobs in the current account that the role has USAGE privilege on.

Column

Type

Description

SNOWFLAKE.CORTEX.FINETUNE(‘SHOW’)

ARRAY

An array of objects containing the job ID and the job status.

The status is one of the following:

  • PENDING

  • IN_PROGRESS

  • SUCCESS

  • ERROR

  • CANCELLED

Access control requirements¶

For access requirements, see Access control requirements.

Examples¶

SELECT SNOWFLAKE.CORTEX.FINETUNE('SHOW');
Copy
[{"id":"CortexFineTuningWorkflow_194bbea4-1208-42f3-88c6-cfb202086125","status":"ERROR"},
{"id":"CortexFineTuningWorkflow_f45b452d-1672-44fa-8516-d4cf772b16db","status":"SUCCESS"},
{"id":"CortexFineTuningWorkflow_d867f188-5213-4d57-98e5-6d6c87fca680","status":"CANCELLED"}]