Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
themeEclipse
titleEntity JSON Format
{
    "_id" : "ca84",
    "tags" : [ 
        "number"
    ],
    "patterns" : [ 
        "[0-9]+", 
        "[0-9]+\\.[0-9]+"
    ],
    "confidence" : 0.95
    "splitMatch": false,
	"literal": false,
	"caseInsensitive": true
}

...

  • Parameter
    summaryIdentifies the entity by unique ID. This identifier must be unique across all entries (across all dictionaries).
    nameid
    requiredtrue

    • Typically, this is an identifier with meaning to the larger application that is using the Language Processing Toolkit.
  • Parameter
    summaryThe list of semantic tags that will be added to the interpretation graph whenever any of the patterns are matched.
    nametags
    typestring array
    requiredtrue

    • These will be added to the interpretation graph with the SEMANTIC_TAG flag.
  • Parameter
    summary A list of patterns to match in the content.
    namepatterns
    typestring array
    requiredtrue

  • Parameter
    summaryWhen this flag is specified then the input string that specifies the pattern is treated as a sequence of literal characters. Metacharacters or escape sequences in the input sequence will be given no special meaning.
    defaultfalse
    nameliteral
  • Parameter
    summarySet to true if the pattern is not case sensitive.
    defaulttrue
    namecaseInsensitive
    typeboolean
    Parameter
    summaryIndicates if the partialmatch will create a regex tag even if a full match was not met.
    defaultfalse
    namespliMatch
    typeboolean
  • Parameter
    summarySpecifies the confidence level of the entity, independent of any patterns matched.
    nameconfidence
    typedouble

    • This is the confidence of the entry, in comparison to all of the other entries. Essentially, the likelihood that this entry will be encountered randomly.

...