FINETUNE ('SHOW') (SNOWFLAKE.CORTEX)

Lists all the fine-tuning jobs in the current account.

Syntax

SNOWFLAKE.CORTEX.FINETUNE('SHOW')
Copy

Parameters

'SHOW'

Specifies that you want a list of the fine-tuning jobs in the current account.

Output

A list of all the fine-tuning jobs in the current account.

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.

Usage notes

  • The returned fine-tuning jobs are not permanent and may be garbage collected periodically.

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}]

Limitations

Snowflake Cortex functions doesn’t support dynamic table incremental refresh.

Language: English