ListModelsOptions interface
Stay organized with collections
Save and categorize content based on your preferences.
Interface representing options for listing Models.
Signature:
export interface ListModelsOptions
Properties
Property |
Type |
Description |
filter |
string |
An expression that specifies how to filter the results.Examples: |
display_name = your_model
display_name : experimental_*
tags: face_detector AND tags: experimental
state.published = true
See https://firebase.google.com/docs/ml/manage-hosted-models#list_your_projects_models |
| pageSize | number | The number of results to return in each page. |
| pageToken | string | A token that specifies the result page to return. |
ListModelsOptions.filter
An expression that specifies how to filter the results.
Examples:
display_name = your_model
display_name : experimental_*
tags: face_detector AND tags: experimental
state.published = true
See https://firebase.google.com/docs/ml/manage-hosted-models#list_your_projects_models
Signature:
filter?: string;
ListModelsOptions.pageSize
The number of results to return in each page.
Signature:
pageSize?: number;
ListModelsOptions.pageToken
A token that specifies the result page to return.
Signature:
pageToken?: string;
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2022-07-29 UTC.
[null,null,["Last updated 2022-07-29 UTC."],[],[],null,["Interface representing options for listing Models.\n\n**Signature:** \n\n export interface ListModelsOptions \n\nProperties\n\n display_name = your_model\n display_name : experimental_*\n tags: face_detector AND tags: experimental\n state.published = true\n\nSee https://firebase.google.com/docs/ml/manage-hosted-models#list_your_projects_models \\|\n\\| [pageSize](./firebase-admin.machine-learning.listmodelsoptions.md#listmodelsoptionspagesize) \\| number \\| The number of results to return in each page. \\|\n\\| [pageToken](./firebase-admin.machine-learning.listmodelsoptions.md#listmodelsoptionspagetoken) \\| string \\| A token that specifies the result page to return. \\|\n\nListModelsOptions.filter\n\nAn expression that specifies how to filter the results.\n\nExamples: \n\n display_name = your_model\n display_name : experimental_*\n tags: face_detector AND tags: experimental\n state.published = true\n\nSee https://firebase.google.com/docs/ml/manage-hosted-models#list_your_projects_models\n\n**Signature:** \n\n filter?: string;\n\nListModelsOptions.pageSize\n\nThe number of results to return in each page.\n\n**Signature:** \n\n pageSize?: number;\n\nListModelsOptions.pageToken\n\nA token that specifies the result page to return.\n\n**Signature:** \n\n pageToken?: string;"]]