Is there a way to automatically train Wit.ai?

I know that the Wit.ai engine can be trained to manually check cases, but is there a way to train it with a set of specific inputs and outputs?

+4
source share
2 answers

perhaps you can see the export format of one of your applications and configure it to import in a new application. https://wit.ai/docs/recipes#manage-link

+6
source

You can use wat.ai API to create an object intent:

curl -X "POST" "https://api.wit.ai/entities" \
    -H "Authorization: Bearer [token]" \
    -d "{\"id\":\"intent\",\"doc\":\"Describe the users overall intention\",\"lookups\":[\"trait\"]}"

and then prepare it with the values:

curl -X "POST" "https://api.wit.ai/entities/intent/values" \
    -H "Authorization: Bearer [token]" \
    -d $'{
      "value": "hello",
      "expressions": [
        "hi",
        "hello",
        "oi",
        "bonjour",
        "aloha"
      ]
    }
+8
source

All Articles