Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Microsoft Cognitive Services SDK Release - March 2016

Compare
Choose a tag to compare
@yungshinlintw yungshinlintw released this 30 Mar 18:04
· 31 commits to master since this release

Release Summary

Project Oxford now is part of Microsoft Cognitive Services. Welcome to Microsoft Cognitive Services!
Please see more info at: https://www.microsoft.com/cognitive-services

New client libraries/samples:
• Entity Linking Windows client library
• Emotion recognition in video
• Face iOS Cocoapods and sample
• Linguistic Analysis Windows client library and sample
• Speech.JS for Speech To Text APIs using JavaScript
• Speech to Text/LUIS iOS sample
• WebLM (Web Language Model) client library and sample
• Jupyter Notebook sample for Emotion, Face and Vision

Known issues:

VideoServiceClient.GetResultVideoAsync() may hit timeout when downloading large files

Workaround:

Send request directly to the service instead of calling GetResultVideoAsync(). i.e.
HttpWebRequest request = HttpWebRequest.CreateHttp(result.ResourceLocation); // result from GetOperationResultAsync()
request.Headers.Add("ocp-apim-subscription-key", "[your subscription key]");
WebResponse response = request.GetResponse();

Time to fix:

Within a week