Skip to content

Instantly share code, notes, and snippets.

@hpgsantos
Last active February 23, 2018 13:42
Show Gist options
  • Save hpgsantos/ed98f8881a8e08ea1591f55581793f9a to your computer and use it in GitHub Desktop.
Save hpgsantos/ed98f8881a8e08ea1591f55581793f9a to your computer and use it in GitHub Desktop.
output_intent.md

Request

Raw POST sample as JSON

http:///parse

{"q":"quero gerar o boleto de janeiro"}

Output

{
  "entities": [
    {
      "start": 14, 
      "extractor": "ner_crf", 
      "end": 20, 
      "value": "boleto", 
      "entity": "boleto"
    }, 
    {
      "start": 21, 
      "extractor": "ner_crf", 
      "end": 31, 
      "value": "de janeiro", 
      "entity": "mes"
    }
  ], 
  "intent": {
    "confidence": 0.6182224263214309, 
    "name": "findBoletoDASByMes"
  }, 
  "text": "quero gerar o boleto de janeiro", 
  "intent_ranking": [
    {
      "confidence": 0.6182224263214309, 
      "name": "findBoletoDASByMes"
    }, 
    {
      "confidence": 0.2125461695864951, 
      "name": "goodbye"
    }, 
    {
      "confidence": 0.12601956063941733, 
      "name": "findBoletoDAS"
    }, 
    {
      "confidence": 0.04321184345265633, 
      "name": "greet"
    }
  ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment