Skip to main content

feature_importances

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

Overview

Namefeature_importances
TypeResource
Idazure.ai_personalizer.feature_importances

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
create_feature_importanceinsertfeature_importance_id, endpointCreate Feature Importance. Submit a new Feature Importance job.
delete_feature_importancedeletefeature_importance_id, endpointFeature Importance. Delete the Feature Importance associated with the Id.
list_feature_importancesexecendpointtop, skipAll Feature Importances. List of all Feature Importances.
get_feature_importanceexecfeature_importance_id, endpointFeature Importance. Get the Feature Importance associated with the Id.

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
endpointstringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client Endpoint parameter. (default: )
feature_importance_idstringId of the Feature Importance. Required.
skipintegerAn offset into the collection of the first resource to be returned. Defaults to 0. Default value is 0.
topintegerThe maximum number of resources to return from the collection. Defaults to maximum value of integer. Default value is None.

INSERT examples

Create Feature Importance. Submit a new Feature Importance job.

INSERT INTO azure.ai_personalizer.feature_importances (
feature_importance_id,
endpoint
)
SELECT
'{{ feature_importance_id }}',
'{{ endpoint }}'
;

DELETE examples

Feature Importance. Delete the Feature Importance associated with the Id.

DELETE FROM azure.ai_personalizer.feature_importances
WHERE feature_importance_id = '{{ feature_importance_id }}' --required
AND endpoint = '{{ endpoint }}' --required
;

Lifecycle Methods

All Feature Importances. List of all Feature Importances.

EXEC azure.ai_personalizer.feature_importances.list_feature_importances 
@endpoint='{{ endpoint }}' --required,
@top='{{ top }}',
@skip='{{ skip }}'
;