microsoft-cognitive

QnA Maker missing train endpoint

社会主义新天地 提交于 2019-12-11 17:52:29
问题 API V4 documentation is missing Train endpoint or is the feature missing in the GA-version? https://westus.dev.cognitive.microsoft.com/docs/services/5a93fcf85b4ccd136866eb37/operations/5ac266295b4ccd1554da75ff 回答1: Official reply has been made on Github issue by Prashant Choudhari from Microsoft: We do not have the train API in V4. We are re-thinking this feature and will re-enable an advanced version in a future release. See here: https://github.com/Microsoft/BotBuilder-CognitiveServices

Discussion: How to use visual recognition to locate a dandelion weed or flower

Deadly 提交于 2019-12-11 16:11:24
问题 Like, is this possible? Basic idea is to make a robot that can see the yard, recognize a dandelion flower, and then go murder the stinking monster where it sits. The robot is one thing. Telling it whut to do is another. Figuring out where you want to tell the robot to go is the issue. Like, find a yellow thing in the yard, check if it's maybe one of the devil spawn, get closer, then make sure it IS the evil target so we don't kill moms purdy flowers or the neighbors dog. Which MS CS tool

Generate thumbnail in php, posting to Azure Computer Vision API

耗尽温柔 提交于 2019-12-11 13:22:48
问题 I want to use Azure Computer Vision API to generate thumbnails for my Wordpress site. I'm trying to make it work in php with wp_remote_post, but i don't know how to parse the parameters ? It returns a thumbnail in really bad quality and default 500x500px. Any ideas on how to resolve this issue ? function get_thumbnail($URL) //* * * * Azure Computer Vision API - v1.0 * * * * { $posturl='https://api.projectoxford.ai/vision/v1.0/generateThumbnail'; $request = wp_remote_post($posturl, array(

Project oxford vision API ocr exception

谁说胖子不能爱 提交于 2019-12-11 08:36:16
问题 Got a problem with project oxford vision API. The example from project oxford git works fine and recognise text on images. But my code throws exception: Exception of type 'Microsoft.ProjectOxford.Vision.ClientException' was thrown. at Microsoft.ProjectOxford.Vision.VisionServiceClient.HandleException(Exception exception) at Microsoft.ProjectOxford.Vision.VisionServiceClient.b__39_1[TRequest,TResponse](Exception e) at System.AggregateException.Handle(Func 2 predicate) at Microsoft

Display Text for QnAMaker follow-on prompts

女生的网名这么多〃 提交于 2019-12-11 08:14:16
问题 I'm attempting to use follow-on prompts within QnAMaker but am confused about the purpose of the field labelled "Display text" in the "Follow-up prompt" creation dialogue. https://docs.microsoft.com/en-us/azure/cognitive-services/qnamaker/how-to/multiturn-conversation describes this field as "The custom text to display in the follow-up prompt.". To me, that suggests that it's just a label for the follow-up prompt which is typically rendered as a button. I therefore assumed that the text had

Compare a side face with front using Face - API (MS Cognitive Services)

烂漫一生 提交于 2019-12-11 06:55:06
问题 I am working on identifying a face against set of faces in database using MS Cognitive Services - Face API. If the input face is a side face then it throws, The length of faceids is not in a valid range. error. Is it possible to compare a side face with front one using Face - API? Thanks. Note: There is a question on EmguCV(Right side Face detection with EmguCv) for the same but I am using MS Cognitive Services Face API. 回答1: Saravanan, You may have already figured this out, but I hit a

Can't add the Entity Linking API to my Azure account

那年仲夏 提交于 2019-12-11 06:53:56
问题 TL;DR Can't add the "Entity Linking API" to my Azure account for some reason. I'm trying to add the "Entity Linking API" to my Azure account the same way I did with the Translation service. However, it doesn't exist in the service selection drop-down list in the console. I'm pretty sure I'm missing something, but after going over the documentation a gazillion times I can't say what. Thanks! 回答1: Not all Cognitive Services APIs are currently available with paid offers in the Azure portal. All

Uploading an image to Microsoft Cognitive Services?

懵懂的女人 提交于 2019-12-11 05:08:52
问题 I am trying to post an image to the Computer Vision API of Microsoft Cognitive Services. It requires me to upload the image as an url. I have the uploaded image by the user with an URI like http://localhost:9000/content/8a684db8?file=IMG-20160503-WA0002.jpg on my local pc. I tried the obvious but that doesn't work. How to pass the image to their API? They also mention I can post the image as a raw binary but I am unable to get how to get going. PS: You can get the subscription keys using the

LUIS closed list entities

偶尔善良 提交于 2019-12-11 04:12:28
问题 I cannot find any documentation or example related to closed list entities. Can someone give a C# example of using closed list entities? Also can you provide a brief explanation when they are useful, please? 回答1: Here is a link to the new documentation for List Entities. This next link is towards a quick overview of all entity types. This is a link to the API reference that has a good example of a potential use case. There are a few things to know about List Entities; they're not machine

bing news search API

为君一笑 提交于 2019-12-11 03:24:48
问题 How does the "freshness" parameter of the Bing news search API work? I am writng a program to call the Bing news search API. I set the "freshness" parameter to be "Month". Yet, Bing returned content that can be as old as 6 months ago. How did I find out? I use the offset parameter to retrieve the last new pages of the returned result and found out that they are can be as old as 6 months (some even 2 years odl). Clarly, this result is contradict to the fresness parameter that I put in. Can