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
0
votes
1 answer

Azure Cognitive Services: Problem with Text Analytics PII Endpoint in Python SDK

I'm trying to perform some more in-depth PII detection as the standard code that might be found here:…
0
votes
2 answers

ConfigurationError: lerc not in acceptable choices for dataset_reader.type

we are trying to use the evaluate_rc-lerc pretrained model provided by allennlp in page https://docs.allennlp.org/models/main/#pre-trained-models using below colab code !pip install allennlp==1.0.0 allennlp-models==1.0.0 !pip install --pre…
0
votes
1 answer

LIWC English Dictionary

How can I get the English dictionary of LIWC (Linguistic Inquiry and Word Count)? I want to make an Arabic dictionary for LIWC based on the English Dictionary.
0
votes
1 answer

Using azure text-analytics on android studio

I want to use Azure Text Analytics(extractKeyPhrases) on Android, but it make some error on my project. I'm wondering why I am getting this error. The error occurs in 'client.extractKeyPhrases(text)'. I think the important part of the error is 'at…
성범강
  • 1
  • 1
0
votes
1 answer

Cognitive batch transcription sentiment analysis

When using Azures batch transcription service ("api/speechtotext/v2.0/Transcriptions/") I am able to get sentiment analysis at the sentence level by setting the "AddSentiment" property to true. However, the results don't include sentiment analysis…
0
votes
1 answer

How to combine Multiple sentences in a dataframe column to a single list of elements in Python

I have a text column in my dataframe which looks like this col_name Row 1 My name is John Row 2 I live in London Row 3 I work for an IT firm Row 4 I travel once in a month Now I want the text in all four rows to be…
lakshith
  • 11
  • 4
0
votes
1 answer

can't solve java.net.MalformedURLException

public class AnalyticsDetectLanguage { static String subscription_key_var; static String subscription_key; static String endpoint_var; static String endpoint; public static void Initialize () throws Exception { …
ASV
  • 1
0
votes
1 answer

Microsoft Azure text translation API translation error

I use the text translation api to translate a word from zh-Hans to ko. Such as "你好",the result is "정말". The result is error.The correct result is "안녕하세요". And from ko to zh-Hans,"정말" -->"真的".
0
votes
2 answers

Azure Cognitive Text Analytics

The new Text Analytics library working with v3.0-preview for Sentiment Analysis. I passed a text with multiple sentences as a document to get the sentiment of the whole text. I have received the following warning in the…
user9333771
0
votes
1 answer

Cloud Corresponding tool of Max QDA

I am working on a project for cloud migration data from on-premise to cloud and we have encountered an advanced text analytics tool called MaxQDA , is there any tool available on/compatible with azure for doing advance text analytics , we are…
Deb
  • 11
  • 1
0
votes
1 answer

How to implement the language automatically in detect sentiment in azure text analytics in a logic app?

I've created a logic app which detects the language of a text and then the sentiment with cognitive services. I want to change the language parameter to the actual language which is detected. I've tried the following and much other stuff but it…
0
votes
1 answer

Azure text analytics accuracy in german is different from the demo case

I've created a website which communicates with my logic app while that uses the text analytics from azure. But my applications acts different from the demo case which you can find here:…
0
votes
1 answer

how do I convert rows in a dataframe into multiple lists in Python

I have large dataframe of the following type: Part Text P1 a P1 b P2 c P2 d I want to transform this data into two formats Expected output 1: Part Text P1 ['a','b'] P2 ['c','d'] Expected output 2: Part Text P1 ['ab'] P2 …
0
votes
0 answers

Error in e(s, a) : no sentence token annotations found. Error while doing NER in R

I am trying to do Named Entity Recognition in R. Its throwing below error after doing sentence token annotation and word token annotation. Cannot find a way out. Please help if anyone has faced the same error. Below is my code followed by the…
Payal
  • 23
  • 1
  • 1
  • 9
0
votes
1 answer

Predicting continuous variable using text in R

I have a task wherein I need to predict a continuous variable, odometer reading based on text field that has the issues faced by customer. This field is not a drop down menu but is updated using customer's verbatim. So I need to predict odometer…
Karthik S
  • 11,348
  • 2
  • 11
  • 25