ListImageEmbeddingEncoders

Lists the image embedding encoders that exist in the training database. You can use these encoders to generate embeddings.

Type: synchronous

Example

/action=ListImageEmbeddingEncoders

Response

The following XML is an example response.

  • The encoder element provides the name of the encoder.
  • The embeddinglength element provides the number of dimensions in the vectors generated by the encoder. In the following example, each vector would consist of 512 floating point numbers.
<autnresponse>
  <action>LISTIMAGEEMBEDDINGENCODERS</action>
  <response>SUCCESS</response>
  <responsedata>
    <encoder>
      <encoder>model1</encoder>
      <embeddinglength>512</embeddinglength>
    </encoder>
  </responsedata>
</autnresponse>