TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Any open access alternatives to Google's knowledge graph?

2 pointsby emrgxover 8 years ago

3 comments

mindcrimeover 8 years ago
A completely equivalent alternative, that&#x27;s ready to use &quot;out of the box&quot;? Probably not. But a lot of the pieces you need to build something like Google&#x27;s knowledge graph are out there.<p>For starters, you have things like Wikidata[1] and dbPedia[2] which give you access to Wikipedia data in a structured form. Then you have datasets like OpenCyc[3] and Freebase[4] that you could include.<p>Then, there are tools like Stanbol[5] which can, to a certain extent, extract structured data from free text. Of course this isn&#x27;t perfect, since you&#x27;d basically need to have solved AGI to do this completely. But you can get <i>some</i> &quot;knowledge&quot; from free text. Combine that with a crawling system like ManifoldCF[6] or Nutch[7] or something, and you could imagine building a pipeline to crawl websites and add to your knowledge-base.<p>If you decide to use RDF as the representation for the knowledgebase, there are things like Jena[8] that let you store and query your KB and do inference against it. Do all that, and probably add in a little more AI &#x2F; NLP and you can build your own knowledge graph.<p>OK, yes, the &quot;add a little more AI&quot; bit is kinda hand-wavy, but that&#x27;s an area of open research. Still, there are practical things that can be done today... and if you&#x27;re looking for a thesis topic, well, here ya go. :-)<p>[1]: <a href="https:&#x2F;&#x2F;www.wikidata.org&#x2F;wiki&#x2F;Wikidata:Main_Page" rel="nofollow">https:&#x2F;&#x2F;www.wikidata.org&#x2F;wiki&#x2F;Wikidata:Main_Page</a><p>[2]: <a href="http:&#x2F;&#x2F;wiki.dbpedia.org&#x2F;" rel="nofollow">http:&#x2F;&#x2F;wiki.dbpedia.org&#x2F;</a><p>[3]: <a href="http:&#x2F;&#x2F;sw.opencyc.org&#x2F;" rel="nofollow">http:&#x2F;&#x2F;sw.opencyc.org&#x2F;</a><p>[4]: <a href="https:&#x2F;&#x2F;developers.google.com&#x2F;freebase&#x2F;" rel="nofollow">https:&#x2F;&#x2F;developers.google.com&#x2F;freebase&#x2F;</a><p>[5]: <a href="http:&#x2F;&#x2F;stanbol.apache.org" rel="nofollow">http:&#x2F;&#x2F;stanbol.apache.org</a><p>[6]: <a href="http:&#x2F;&#x2F;manifoldcf.apache.org" rel="nofollow">http:&#x2F;&#x2F;manifoldcf.apache.org</a><p>[7]: <a href="http:&#x2F;&#x2F;nutch.apache.org" rel="nofollow">http:&#x2F;&#x2F;nutch.apache.org</a><p>[8]: <a href="http:&#x2F;&#x2F;jena.apache.org" rel="nofollow">http:&#x2F;&#x2F;jena.apache.org</a>
评论 #13359447 未加载
marfiover 8 years ago
@mindcrime has put a pretty extensive list and explanation.<p>The things is, you are probably looking for a solution that does the reconciliation of data arriving from multiple sources and formats for you and preferably exposes it over an easy to use API.<p>You can try <a href="http:&#x2F;&#x2F;unigraph.io" rel="nofollow">http:&#x2F;&#x2F;unigraph.io</a>, the API Sandbox (GraphQL) is available at: <a href="http:&#x2F;&#x2F;u01.unigraph.rocks" rel="nofollow">http:&#x2F;&#x2F;u01.unigraph.rocks</a> and an extensive documentation covers it at: <a href="https:&#x2F;&#x2F;github.com&#x2F;unigraph&#x2F;docs&#x2F;wiki" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;unigraph&#x2F;docs&#x2F;wiki</a><p>Currently Unigraph combines data from:<p>- wikidata<p>- geonames<p>- freebase<p>- crunchbase<p>- SEC EDGAR<p>- Companies House (UK).<p>A datadump is on its way and more sources will be added soon.<p>Disclaimer: I am building Unigraph, precisely for the reason of the question: &quot;An open alternative to GKG&quot;.
tinodotimover 8 years ago
There would be, of course, one (if not the no. 1) google knowledge graph source: Wikidata.<p><a href="https:&#x2F;&#x2F;www.wikidata.org&#x2F;wiki&#x2F;Wikidata:Main_Page" rel="nofollow">https:&#x2F;&#x2F;www.wikidata.org&#x2F;wiki&#x2F;Wikidata:Main_Page</a>