Skip to content

Extract Data

Extract Entities

NeuralSeek Entity extraction. Define custom entities on the Extract Tab

{{ extract }}
Example Usage

Input:

My phone number is 555-555-5555=>{{ extract }}
Output: (You may see more entities than shown below - this is only an example)
{
  "phone-number": [
    "555-555-5555"
  ]
}


Extract Keywords

Extract keywords fro input text

Parameters

  • nouns: Consider normal nouns as keywords
{{ keywords | nouns: true }}
Example Usage 1

I have 20 cats and 40 dogs
{{ keywords|nouns:true }}
Will yield:
20 cats, 40 dogs

Example Usage 2

Howard has 20 cats and 40 dogs
{{ keywords|nouns:false }}
Will yield:
Howard
If the nouns: true is used, the following below is returned:
Howard, 20 cats, 40 dogs


Extract Grammar

Extract grammar from text

{{ grammar }}
Example Usage

Howard has 20 cats and 40 dogs. 
He took them to the vet last week.
{{ grammar  }}
Will yield in the environment (see the Inspector):
grammar.year: [2024]
grammar.context:
grammar.dates: ["last","week"]
grammar.propernouns: ["Howard"]
grammar.nouns: ["20 cats","40 dogs","vet","week"]
grammar.preps: ["He","them"]
grammar.determiners: []


OCR

OCR an image.

Parameters

  • name: The image name
{{ ocr  | name: "" }}