Azure AI services
A group of Azure services, SDKs, and APIs designed to make apps more intelligent, engaging, and discoverable.
2,891 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am using the Azure Text Analytics client library for Python, but it seems like I am not able to use the opinion mining feature.
For the code:
text_analytics_client.analyze_sentiment(documents, show_opinion_mining=True)
it returns the error:
TypeError: request() got an unexpected keyword argument 'show_opinion_mining'
How can I get opinion mining when using the library?
I figured out the problem, need to pip install the version 3.1 preview by "pip install azure-ai-textanalytics --pre"