This section describes how to build your custom OCR API to extract data from US Visa using the API Builder. A US Visa is a stamp that you get on your travel document, more specifically your passport, which means that you are eligible to enter the United States

Prerequisites

You’ll need at least 20 US Visa images or pdfs to train your OCR.

Define your US Visa Use Case

Using the US Visa below, we’re going to define the fields we want to extract from it.
US Visa

  • First name: The first name of the visa holder (Happyperson)
  • Last name: The last name of the visa holder (Traveler)
  • Passport number: The passport number of the visa holder (AB1234567)
  • Control Number: The visa control number (20191234567890)
  • Visa type: The visa type appearing on the US Visa (B1/B2)

That’s it for this example. Feel free to add any other relevant data that fits your requirement.

Deploy your API

Once you have defined the list of fields you want to extract from your US Visa, head over to the platform and follow these steps:

  1. Click on the Create a new API button on the right.

  2. Next, fill in the basic information about the API you want to create as seen below.

Set up your API

  1. Click on the Next button. The following page allows you to define and add your data model.

Define Your Model

There are two ways to add fields to your data model.

  • Upload a JSON config file
  • Manually add data

Data Model

Upload a JSON Config

To add data fields using JSON config upload.

  1. Copy the following JSON into a file.
{
  "problem_type": {
    "classificator": { "features": [], "features_name": [] },
    "selector": {
      "features": [
        {
          "cfg": { "filter": { "alpha": -1, "numeric": 0 } },
          "handwritten": false,
          "name": "first_name",
          "public_name": "First name",
          "semantics": "word"
        },
        {
          "cfg": { "filter": { "alpha": -1, "numeric": 0 } },
          "handwritten": false,
          "name": "last_name",
          "public_name": "Last Name",
          "semantics": "word"
        },
        {
          "cfg": { "filter": { "alpha": -1, "numeric": -1 } },
          "handwritten": false,
          "name": "passport_number",
          "public_name": "Passport Number",
          "semantics": "word"
        },
        {
          "cfg": { "filter": { "is_integer": -1 } },
          "handwritten": false,
          "name": "control_number",
          "public_name": "Control Number",
          "semantics": "amount"
        },
        {
          "cfg": { "filter": { "alpha": -1, "numeric": -1 } },
          "handwritten": false,
          "name": "visa_type",
          "public_name": "Visa Type",
          "semantics": "word"
        }
      ],
      "features_name": [
        "first_name",
        "last_name",
        "passport_number",
        "control_number",
        "visa_type"
      ]
    }
  }
}
  1. Click on Upload a JSON config.
  2. The data model will be automatically filled.
  3. Click on Create API at the bottom of the screen.

Document Data Model filled

Manually Add Data

Using the interface, you can manually add each field for the data you are extracting. For this example, here are the different field configurations used:

  • First name: type String that never contains numeric characters.
  • Last Name: type String without specifications.
  • Passport Number: type String without specifications.
  • Control Number: type Number without specifications.
  • Visa Type: type String without specifications.

Once you’re done setting up your data model, click the Create API button at the bottom of the screen.

Document Data Model filled

Train your US Visa OCR

You’re all set! Now it's time to train your US Visa deep learning model in the Training section of our API.
Train your model

  1. Upload one file at a time or a zip bundle of many files.
  2. Click on the field input on the right, and the blue box on the left highlights all the corresponding field candidates in the document.
  3. Next, click on the validate arrow for all the field inputs.
  4. Once you have selected the proper box(es) for each of your fields as displayed on the right-hand side, click on the validate button located at the right-side bottom to send an annotation for the model you have created.
  5. Repeat this process until you have trained 20 documents to create a trained model.

To get more information about the training phase, please refer to the Getting Started tutorial.

 

Questions?
Slack Logo Icon  Join our Slack