You're looking at a specific version of this model. Jump to the model overview.

apna-mart /face-match:252bedd8

Input schema

The fields you can use to run this model with an API. If you don’t give a value for a field its default value will be used.

Field Type Default value Description
image1
string
First image (file upload)
image2
string
Second image (file upload)
image1_url
string
First image as a URL (used if image1 is not provided)
image2_url
string
Second image as a URL (used if image2 is not provided)
model_name
None
Facenet512
Face recognition model. Facenet512 is the most accurate

Output schema

The shape of the response you’ll get when you run this model with an API.

Schema
{'properties': {'comparison_image': {'format': 'uri',
                                     'title': 'Comparison Image',
                                     'type': 'string'},
                'confidence': {'title': 'Confidence', 'type': 'number'},
                'details': {'title': 'Details', 'type': 'object'},
                'distance': {'title': 'Distance', 'type': 'number'},
                'threshold': {'title': 'Threshold', 'type': 'number'},
                'verified': {'title': 'Verified', 'type': 'boolean'}},
 'required': ['verified',
              'confidence',
              'distance',
              'threshold',
              'details',
              'comparison_image'],
 'title': 'Output',
 'type': 'object'}