Extract NER Entities#

Extract entities (NER).

Source Text[Text] The source text for processing.
Result

[List of Objects] Returns a list of objects. The numbering starts from zero. Each object contains three properties:

  • Type - the type of entity in English abbreviation;
  • Text - the full text of the found entity;
  • Items - a list of child objects of this entity.

For example, to get the type of the first found entity, you need to write $Result[0].Type.

Child objects have the same properties and allow for a more detailed breakdown of the parent entity. For instance, the entity PERSON contains child entities SEX, LASTNAME, FIRSTNAME, BORN.

Error Handling Level

Select the error handling level. Possible values:

  • "Default" - by default;
  • "Ignore" - errors are ignored;
  • "Handle" - errors are handled.

If "Default" is selected, the value from the "Start" block of this diagram will be used.

Message Level

Select the message level that the blocks will output during operation. Possible values:

  • "Default" - by default;
  • "Release" - output is disabled;
  • "Debug" - outputs main information;
  • "Detailed" - outputs detailed information.

If "Default" is selected, the value from the "Start" block of this diagram will be used.

Error Message[Text] Returns detailed information about the error in case of incorrect execution of the block's work.