novian kristianto
novian kristianto

Reputation: 761

is possible to make microsoft LUIS auto trained with API?

last time i try to learn about LUIS from microsoft, and i found some interesting part about train LUIS.

Is Possible to trained Microsoft LUIS using API without login to LUIS Dashboard?

Upvotes: 2

Views: 1216

Answers (1)

Mokhtar Ashour
Mokhtar Ashour

Reputation: 600

Yes, it's possible through LUIS programmatic APIs There are 2 APIs:

  • Train : Asynchronously firing the train request for your App [POST]https://api.projectoxford.ai/luis/v1.0/prog/apps/{appId}/train
  • Training Status : to check the training status [Get]https://api.projectoxford.ai/luis/v1.0/prog/apps/{appId}/train

You will need to provide the Ocp-Apim-Subscription-Key header, which is the Subscription key that provides access to the API.

Upvotes: 3

Related Questions