Questions tagged [watson-nlu]

Watson NLU uses deep linguistic parsing, statistical natural language processing, and machine learning to analyze your content, extracting semantic meta-data: information about people, places, companies, topics, languages, and more.

56 questions
3
votes
1 answer

How to resolve content is empty error in NLU Watson API?

I am streaming tweets in a file tweet.txt and using another python script, I am reading the tweets and sending them to Watson. Sometimes, there generates an error: Traceback (most recent call last): File "readingTweets.py", line 44, in …
3
votes
1 answer

Watson NLU - Not enough text provided for language detection

I am working with Watson NLU and trying to sentiment analysis on some text. The problem is that some text is too small for it to detect what language it is (E.g: Excellent service).Is there a way for me to specify that if language detection isn't…
3
votes
1 answer

WatsonException: Error: unsupported text language, Code: 400

I am using natural language understanding api. text I am using 'hmmmm nawa ohh wen am I gona win ds tin' and it is giving error WatsonException: Error: unsupported text language, Code: 400 My code is : response =…
tom
  • 35
  • 1
  • 6
2
votes
2 answers

IBM Knowledge Studio - Advanced Rules Workspace : cannot export advanced rules model zipfile

First of all, I want to greet and thank warmly this great community, you guys have helped me countless times with all kind of issues and problems. Now, back to the issue part... I'm trying to save a zip file containing my developed model to deploy…
2
votes
1 answer

IBM Watson NLU in Ruby

I am attempting to use the watson api client from https://github.com/suchowan/watson-api-client. I have this written so far based on documentation from…
John M.
  • 307
  • 2
  • 13
2
votes
0 answers

Watson-NLU giving downstream issue (500) in a loop, but not on the sentence individually

I am trying to return the entities for each sentence in corpus using Watson Natural Language Understanding. (I can't produce fully reproducible code because the dataset I'm using is private.) My script looks like this: import json from…
2
votes
2 answers

my city location is not available in IBM Watson api NLU

When I am sending text using Watson api NLU with my city which is located in India. I am getting empty entity. It should be come with data entity location. So how can i solve this problem in watson NLU. The sentence being sent is: mba college in…
Yogesh Karodiya
  • 225
  • 5
  • 15
1
vote
1 answer

Convert from Watson NLC to NLU

We are trying to convert from Watson NLC to NLU using the same NLC training csv data. There are 3 classification models to convert. Current status of these models are all "error". 2 model messages are "internal training error occurred, please try…
kazuki
  • 11
  • 1
1
vote
1 answer

IBM Cloud Watson (NLU) Sentiment service ERROR

I am new to IBM NLU Watson; I wanted to learn anyone is facing the same problem? I have signed up for a BASIC IBM FREE tier account. import json from ibm_watson import NaturalLanguageUnderstandingV1 from ibm_cloud_sdk_core.authenticators import…
user15499865
1
vote
1 answer

What model does Watson natural language processing uses for topic modeling? LDA?

I'm learning about Watson's NLU but I can't find any reference as to what model it's using for topic modeling. Is it LDA? pLSA? Any other? I understand the question is general, but it's very important to know what's under the hood...
Aerodynamika
  • 7,883
  • 16
  • 78
  • 137
1
vote
1 answer

How to extract meaningful extraction when given a query for a structured dataframe using Python/NLU?

I am finding this task very challenging and unable to find an approach. Given:Structred Dataframe of FinanacialReport Finanacial Report I want to identify the intents given a text query. To be more precise: If I'm given a text query "What is Fiscal…
1
vote
1 answer

NLU - extract string that is related to entity

is it possible in any NLU (e.g RASA, or Lex) to get attrbitued string of an entity? Here is an example: "please make sure to remind me about getting the project done" let's say I'll put remind me as a REGEX - how can I extract the latter? I'm…
user1025852
  • 2,684
  • 11
  • 36
  • 58
1
vote
1 answer

Watson NLU never returns disambiguation info

I'm trying to use a combination of Watson conversation and Watson NLU to extract entities and compare them to a list. I need access to the disambiguation information returned, but its not returning for anything I put in. It is correctly extracting…
Simon McLoughlin
  • 8,293
  • 5
  • 32
  • 56
1
vote
1 answer

IBM Watson Natural Language Understanding - Too Many Request Error

I am using IBM Watson Natural Language Understanding Service via Node SDK for Text Analysis. I have an Array of sentences with length nearly 20 to 30. When I tried to iterate through the Array and Call NLU Analyze API I am getting Error : Too Many…
Mdumanoj
  • 517
  • 3
  • 9
  • 27
1
vote
1 answer

Watson NLU Order Of entities returned

I am using watson NLU along with a custom model to extract education entities from a resume. So far, it works okay, but if there is more than one education mentioned, it doesn't return the result in order. for example, if a resume contains high…
noor
  • 651
  • 1
  • 8
  • 19
1
2 3 4