Questions tagged [text-analytics-api]

Tag questions as text-analytics-api if you are asking about an issue that concerns Text Analytics API.

Overview of this API can be found here.

50 questions
2
votes
2 answers

Scanning texts for specific words

I want to create an algorithm that searches job descriptions for given words (like Java, Angular, Docker, etc). My algorithm works, but it is rather naive. For example, it cannot detect the word Java if it is contained in another word (such as…
EustassX
  • 78
  • 6
2
votes
0 answers

Improve Microsoft cognitive services sentiment analysis?

I find sentiment analysis to be frequently off, completely off, of what the sentiment actually should be. Here are some examples, I told you to not do that - Sentiment 0.81 (positive) .. how is this positive? if you drop the glass i will beat you…
2
votes
1 answer

Can we use LUIS and Text Analytics API together

i need to develop a chat bot on azure for user interaction i have used LUIS and now want the bot to perform analyze the chat and suggest user the necessary changes. So, should i use text analytic API for it and does LUIS and text analytic API can be…
2
votes
1 answer

Can I use customized set of training data to train Microsoft text analytics as customized version?

Microsoft text analytics provides out-of-box feature for sentiment analysis. However, if I would use sentiment analysis for different situations such as restaurant comment, mobile phone suggestion, travelling adviser, those scenario and background…
Thomas Lau
  • 121
  • 1
1
vote
1 answer

Extract hyperlink's along with related text using azure cognitive services

We have a requirement where we need to search the documents and give the related text along with the hyperlinks as present in the documents. Using the azure search we are able to get the text but not the hyperlinks associated with that text. based…
1
vote
0 answers

Alexandria Contextual Text Analysis with ibapi

I am using the Interactive Brokers API with python. I notice in the Trader Work Station there is a window with news updates. I understand how to get the news updates using the reqMkData. This post does a great job explaining that much. My…
1
vote
1 answer

Text Extraction from Images

I did extraction of text from image. I got unstructured data after extracting text. I have to convert this to a structured form but I'm not able to do the so. The unstructured data extracted from image in python: EQUITY-LARGE CAP ©@ SBIMUTUAL…
1
vote
1 answer

Cognitive services text translation authentication issue

I'm utilizing Azure's Cognitive Services Text Analysis API. I'm attempting to authenticate by passing my secret key for an access token via these instructions:…
Neil
  • 13
  • 3
1
vote
1 answer

Error while running Application using PowerApps in microsoft azure

I'm trying to run an application on powerapps using Microsoft azure cognitive services. This is a sentimental analysis application where in it gives a sentimental analysis score between 0 to 1 where 1 being positive and 0 being negative based on the…
Student
  • 11
  • 1
1
vote
1 answer

Python with google cloud language api Problem?

Using the google-cloud-language library for python how can I get the JSON returned from the following methods. client.classify_text() client.analyze_entity_sentiment() the method response.serializetostring() seems to encode the result in a manner…
1
vote
1 answer

Google translation api call

I am using the Google translation api paid version to translate comments in python. I am calling the rest api link in my Python code I would like to known if I pass 1000 comments at a time (strings) how many times api is called and also would like…
1
vote
2 answers

Limit for Text Analytics Microsoft Azure

I'm using Azure Text Analytics for Sentiment Analysis. I was wondering if the API is limited to 100 requests per minute or if there is any request limit for the service. When I tried to request more than 100 times within a minute, the API returns an…
0
votes
1 answer

Azure cognitive services: Async Text analytics for PII, limiting max allowed char size to 5120 when it should be 125,000

I am using azure-ai-textanalytics(version 5.2.7) library for detecting PII in some text content that I have. From the azure documentation the maximum chars allowed while using asynchronous processing is 125,000…
0
votes
0 answers

Chi-square in a pipeline

what code can i use to inclide the chi-square function in a pipeline. I tried using the below code but it seem the arguments must be passed. But i want to avoid that at the moment since i will be fitting the arguments later to run together with the…
0
votes
0 answers

KeyError: 'Coments'

df['new_Comments'] = df['Coments'].apply(lambda x: remove_punct(str(x))) df.head(1) KeyError Traceback (most recent call last) /usr/local/lib/python3.8/dist-packages/pandas/core/indexes/base.py in get_loc(self, key,…
1
2 3 4