ListClassifiers

Lists the classifiers that you have created for use with image classification.

Type: synchronous

Parameter Description Required
trainingoptions A Boolean value (default false) that specifies whether to return the training options set for each classifier. No

Example

/action=ListClassifiers&trainingoptions=TRUE

Response

The response includes a list of classifiers, with the following information:

<autnresponse>
    <action>LISTCLASSIFIERS</action>
    <response>SUCCESS</response>
    <responsedata>
        <classifier>
            <classifier>vehicles</classifier>
            <state>SNAPSHOTTED</state>
            <numclasses>3</numclasses>
            <snapshots>
                <snapshot>
                    <index>0</index>
                    <iterations>2000</iterations>
                </snapshot>
                <snapshot>
                    <index>1</index>
                    <iterations>500</iterations>
                </snapshot>
                <snapshot>
                    <index>2</index>
                    <iterations>1000</iterations>
                </snapshot>
                <snapshot>
                    <index>3</index>
                    <iterations>1500/iterations>
                </snapshot>
            </snapshots>
            <trainingoptions>
                <trainingoption>
                    <key>iterations</key>
                    <value>2000</value>
                </trainingoption>
                <trainingoption>
                    <key>snapshot_frequency</key>
                    <value>500</value>
                </trainingoption>
            </trainingoptions>
        </classifier>
    </responsedata>
</autnresponse>