World Passport
The Passports model is a pre-trained document type build to recognize and extract information from passports issued by different countries.
API Upload
The
type
parameter isworld_passport
for the upload endpoint.
Field Descriptions:
The model automatically detects data such as:
Section Name | Field Name | Type | Description |
---|---|---|---|
Basic Information | Type | String | Passport Type |
Basic Information | Country code | String | Passport Issuing Country |
Basic Information | Passport Number | String | Passport Number |
Basic Information | Surname | String | Surname |
Basic Information | Given Name | String | Given Name |
Basic Information | Nationality | String | Nationality |
Basic Information | Place of birth | String | Place of Birth |
Basic Information | Sex | String | Gender |
Basic Information | Date of birth | Date | Date of Birth |
Basic Information | Issue Date | Date | Passport Issue Date |
Basic Information | Expiry Date | Date | Passport Expiry Date |
Basic Information | Authority | String | Issuing Authority |
Basic Information | Addition Id No | String | Additional Identification Numbe |
Coverage
- Majority of world
You can use this as a base model or train your own new model using just 50 samples. Here are the details:
Version
- 1.0.0
Sample
Sample JSON Output
[
{
"data": {
"Basic Information": {
"Type": {
"value": "P",
"position": [
249,
515,
259,
525
],
"confidence": 1.0,
"review_required": false
},
"Country code": {
"value": "USA",
"position": [
327,
504,
362,
529
],
"confidence": 1.0,
"review_required": false
},
"Passport Number": {
"value": "530500432",
"position": [
446,
514,
538,
530
],
"confidence": 1.0,
"review_required": false
},
"Surname": {
"value": "ZIA",
"position": [
218,
543,
240,
556
],
"confidence": 1.0,
"review_required": false
},
"Given Name": {
"value": "BILAL HUSNAIN",
"position": [
219,
575,
325,
589
],
"confidence": 1.0,
"review_required": false
},
"Nationality": {
"value": "UNITED STATES OF AMERICA",
"position": [
219,
606,
425,
622
],
"confidence": 1.0,
"review_required": false
},
"Place of birth": {
"value": "SAUDI ARABIA",
"position": [
218,
676,
317,
689
],
"confidence": 1.0,
"review_required": false
},
"Sex": {
"value": "M",
"position": [
529,
675,
542,
685
],
"confidence": 1.0,
"review_required": false
},
"Date of birth": {
"value": "12/07/1977",
"position": [
219,
642,
290,
655
],
"confidence": 1.0,
"review_required": false
},
"Issue Date": {
"value": "05/04/2016",
"position": [
218,
709,
293,
724
],
"confidence": 1.0,
"review_required": false
},
"Expiry Date": {
"value": "04/04/2026",
"position": [
217,
743,
296,
758
],
"confidence": 1.0,
"review_required": false
},
"Authority": {
"value": "United States Department of State",
"position": [
467,
707,
605,
746
],
"confidence": 1.0,
"review_required": false
},
"Addition Id No": {
"value": "",
"position": [],
"confidence": 1.0,
"review_required": false
}
}
}
}
]
Updated about 1 year ago