Skip to content

Latest commit

 

History

History
96 lines (74 loc) · 2.38 KB

reference-entity-simple.md

File metadata and controls

96 lines (74 loc) · 2.38 KB
title titleSuffix description author ms.author manager ms.service ms.subservice ms.topic ms.date
Simple entity type - LUIS
Azure AI services
A simple entity describes a single concept from the machine-learning context. Add a phrase list when using a simple entity to improve results.
aahill
aahi
nitinme
azure-ai-language
azure-ai-luis
reference
01/19/2024

Simple entity

[!INCLUDE deprecation notice]

A simple entity is a generic entity that describes a single concept and is learned from the machine-learning context. Because simple entities are generally names such as company names, product names, or other categories of names, add a phrase list when using a simple entity to boost the signal of the names used.

The entity is a good fit when:

  • The data aren't consistently formatted but indicate the same thing.

simple entity

Example JSON

Bob Jones wants 3 meatball pho

In the previous utterance, Bob Jones is labeled as a simple Customer entity.

The data returned from the endpoint includes the entity name, the discovered text from the utterance, the location of the discovered text, and the score:

"entities": [
  {
  "entity": "bob jones",
  "type": "Customer",
  "startIndex": 0,
  "endIndex": 8,
  "score": 0.473899543
  }
]

This is the JSON if verbose=false is set in the query string:

"entities": {
    "Customer": [
        "Bob Jones"
    ]
}```

This is the JSON if `verbose=true` is set in the query string:

```json
"entities": {
    "Customer": [
        "Bob Jones"
    ],
    "$instance": {
        "Customer": [
            {
                "type": "Customer",
                "text": "Bob Jones",
                "startIndex": 0,
                "length": 9,
                "score": 0.9339134,
                "modelTypeId": 1,
                "modelType": "Entity Extractor",
                "recognitionSources": [
                    "model"
                ]
            }
        ]
    }
}

Data object Entity name Value
Simple Entity Customer bob jones

Next steps

[!div class="nextstepaction"] Learn pattern syntax