Ask Learn
Preview
Ask Learn is an AI assistant that can answer questions, clarify concepts, and define terms using trusted Microsoft documentation.
Please sign in to use Ask Learn.
Sign inThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[日本語版はこちら]
At Microsoft Connect(); 2018 event, these cognitive-related news announced;
Azure Updates > Language Understanding Container Support: Preview Azure Updates > Custom Translation capability of Text Translator
You can use these Docker environments:
This time I introduce it with Docker in local PC (Windows).
It's OK to use free F0 tier.
Please get endpoint (access URL) and API key, which is for billing when you use it in container. (No data except count usage shouldn't be send to Microsoft.)
Language Understanding is instant NLP services (modeling GUI tools and APIS for its management and use).
Once you congfigure LUIS App (NLP model), you can export it locally for container.
Store into local folder where Docker can access.
Using docker command, pull LUIS container image with "latest" option.
docker pull docker pull mcr.microsoft.com/azure-cognitive-services/luis:latest
Run LUIS image with your downloaded LUIS app.
docker run --rm -it -p 5000:5000 --memory 4g --cpus 2 --mount type=bind,src=c:\demo\container\luis,target=/input --mount type=bind,src=C:\demo\container\luis,target=/output mcr.microsoft.com/azure-cognitive-services/luis Eula=accept Billing=https://westus.api.cognitive.microsoft.com/luis/v2.0 ApiKey=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
This is sample to set parameters as:
Once docker image started, you can access using browser at https://localhost:5000
See swagger (https://localhost:5000/swagger), and you can try analyzing natural sentence by LUIS container.
Microsoft Azure Blog > Getting started with Cognitive Services Language Understanding container Github > Azure Samples - Container support for Azure Cognitive Services
Ask Learn is an AI assistant that can answer questions, clarify concepts, and define terms using trusted Microsoft documentation.
Please sign in to use Ask Learn.
Sign in