Questions tagged [knowledge-base-population]

12 questions
6
votes
1 answer

NLTK relation extraction returns nothing

I am recently working on using nltk to extract relation from text. so i build a sample text:" Tom is the cofounder of Microsoft." and using following program to test and return nothing. I cannot figure out why. I'm using NLTK version: 3.2.1, python…
hiber
  • 63
  • 1
  • 5
4
votes
1 answer

Is a "facts database" not a core feature of miniKanren?

I have been playing around with miniKanren, trying to understand it by converting very basic Prolog tutorials into it. I use Python habitually so I started with the LogPy library, which has since been forked and improved upon as a lib actually…
4
votes
1 answer

How to automatically (programmatically) train the Knowledge Base?

In the QnA Maker Service provided by the Microsoft's Cognitive Services, we can train our KB (Knowledge Base) by manually inserting the QnA pairs. Is there a way to automate this process so that we can always keep our KB up-to-date please? There is…
2
votes
0 answers

what does "distant" mean in distant supervision?

Mentioned in , ACL 09, Mintz et al. The distant supervision assumption is that if two entities participate in a relation, any sentence that contain those two entities might express that relation. Which is easy to understand. But, what does…
1
vote
1 answer

Prolog unknowns in the knowledge base

I am trying to learn Prolog and it seems the completeness of the knowledge is very important because obviously if the knowledge base does not have the fact, or the fact is incorrect, it will affect the query results. I am wondering how best to…
AxGryndr
  • 2,274
  • 2
  • 22
  • 45
1
vote
0 answers

Converting NLP to CSP: Story Consistency

Background: I would like to know if anyone has succeeded in converting Natural Language to a knowledge base representative of a constraint satisfaction problem. I want preform constraint satisfaction on a person's statements in order to see if any…
0
votes
0 answers

Why i get null or undefined value for this code, i am trying to connect my botpress with stackAi,

Here is the code const endpoint = "https://www.stack-inference.com/run_deployed_flow?flow_id=64b1aa0eeb1096a9b84e20ef&org=e55254da-2736-41bb-9549-798937b4a981"; const headers = { Authorization: 'Bearer 769ecdad-dd21-48fe-988b-78e188440e34', …
0
votes
0 answers

Converting traditional knowledge base into in-app context relevant articles

I want to organize KB articles so they are directly accessible from relevant menus in our cloud based web application. I imagine something like "related articles" as typical from Wiki based KB platforms. I need to find a good structure for linking…
0
votes
0 answers

where can I find an entire list of Microsoft knowledge base IDs

I'd like to analyze the security issue of each version of Microsoft products. My research shows that the Microsoft KB articles contains the update that fix certain vulnerabilities of some vers. of some MS products. I also notice that most old KBs…
0
votes
0 answers

How does "top" work in "Generate Answer" in Azure QnA maker service

I referred Generate Answer API. My KB has around 2600 QnA pairs and I observed that when I used "top 10", queried using "question", it provided different top results compared to when I used "top 100". My assumption is when "top 10" is used, this API…
0
votes
0 answers

How can I extract the name of all persons in Wikidata with Python?

I would like to extract (all distinct) names of all persons, i.e named entities that are human, in Wikidata with Python. I have tried different libraries (qwikidata, mwikidata), different get requests and Wikidata's SPARQL Service itself. After a…
0
votes
1 answer

Importing Sharepoint pages in QnA Maker knowledge base not working

I'm trying to import Sharepoint pages in a QnA Maker knowledge base as URL but without success. Every time obtaining a: Bad Argument Unsupported/Invalid URLs: "https://myapp.sharepoint.com/sites/AllKeyServices" I've read the documentation here but…