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":"ft_9544250a-20a9-42b3-babe-74f0a6f88f60","status":"SUCCESS","base_model":"llama3.1-8b","created_on":1730835118114},
{"id":"ft_354cf617-2fd1-4ffa-a3f9-190633f42a25","status":"ERROR","base_model":"llama3.1-8b","created_on":1730834536632}]
Language: English