Skip to main content

resnet_50

Creates, updates, deletes, gets or lists a resnet_50 resource.

Overview

Nameresnet_50
TypeResource
Idcloudflare.ai.resnet_50

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
workers_ai_post_run_cf_microsoft_resnet_50insertaccount_idqueueRequest, tagsRuns inference on the @cf/microsoft/resnet-50 model.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.
queueRequeststring
tagsstring

INSERT examples

Runs inference on the @cf/microsoft/resnet-50 model.

INSERT INTO cloudflare.ai.resnet_50 (
account_id,
queueRequest,
tags
)
SELECT
'{{ account_id }}',
'{{ queueRequest }}',
'{{ tags }}'
;