Answers for "rasa entity extraction"

0

rasa entity extraction

- I want to fly from [Berlin]{"entity": "city", "role": "departure"} to [San Francisco]{"entity": "city", "role": "destination"}.
Posted by: Guest on June-25-2020
0

rasa entity extraction

Give me a [small]{"entity": "size", "group": "1"} pizza with [mushrooms]{"entity": "topping", "group": "1"} and
a [large]{"entity": "size", "group": "2"} [pepperoni]{"entity": "topping", "group": "2"}
Posted by: Guest on June-25-2020
0

rasa entity extraction

I want to fly from [Berlin](city) to [San Francisco](city).
Posted by: Guest on June-25-2020
0

rasa entity extraction

{
  "text": "Book a flight from Berlin to SF",
  "intent": "book_flight",
  "entities": [
    {
      "start": 19,
      "end": 25,
      "value": "Berlin",
      "entity": "city",
      "role": "departure",
      "extractor": "DIETClassifier",
    },
    {
      "start": 29,
      "end": 31,
      "value": "San Francisco",
      "entity": "city",
      "role": "destination",
      "extractor": "DIETClassifier",
    }
  ]
}
Posted by: Guest on June-25-2020

Browse Popular Code Answers by Language