Questions tagged [freebase]

Freebase was a large, Google owned, community-edited, general knowledge semantic database that could previously be accessed via a RESTful API. It was shut down in 2016.

Freebase was a large, community-edited, general knowledge semantic database that could be accessed via a RESTful API. Its core information is derived from Wikipedia, MusicBrainz, and OpenLibrary, among other sources. It retains links to those sources, as well as a large number of other sources of strong identifiers (Library of Congress, New York Times, IMDB, etc), allowing cross-referencing among the various sources.

It was originally developed by Metaweb and is now owned by Google. Data can be reused under a CC-BY attribution license.

Freebase was shutdown on May 2, 2016, although extracts of the data are available.

649 questions
7
votes
1 answer

Freebase MQL filter where value != null?

I'm trying to write an MQL query that filters out null values. The query I have now (can be executed using the MQL Query Editor): [ { "/common/topic/image" : [ { "id" : null } ], "article" : [ { …
Eric Schoonover
  • 44,080
  • 43
  • 148
  • 200
7
votes
2 answers

Freebase MQL query for topic summary and image?

I'm trying to write an MQL query to be executed using Freebase API's. I would like to retrieve the topic summary and the image for the topic. I have been able to work out the below query which will get me the images associated with the Bill Gates…
Eric Schoonover
  • 44,080
  • 43
  • 148
  • 200
7
votes
1 answer

Named entity recognition using freebase

I understand DBPedia spotlight does Named Entity recognition on a given document. To do that it uses the downloaded DBPedia files that are stored in the file system.Refer the…
Vinodh
  • 866
  • 1
  • 14
  • 28
7
votes
4 answers

Natural Language Understanding API

I am unaware if such an API or service exists currently so this is a vague question, my apologies. I have a PHP script that works with Freebase and I was wondering if I can enable it so a user can ask a question on my site which will be…
Callum Whyte
  • 2,281
  • 11
  • 31
  • 51
7
votes
3 answers

How to search in freebase by mid

I have just dumped the data from Freebase, but when I see in the data I see "/m/03lp844" which is mid. But how am I going to get more detail out of that mid? I can't find anything on the documentation. So, I dumped film data and when I look for…
toy
  • 10,405
  • 19
  • 76
  • 161
6
votes
1 answer

How to use Google Knowledge Graph API

In what useful way can I use Google Knowledge Graph API at the moment? Let's say I have the MID for 1990 FIFA World Cup, which is /m/014nm_ and I make this request: GET…
Vlad
  • 946
  • 1
  • 5
  • 16
6
votes
1 answer

How to extract Freebase Data Dump for a particular topic

I want to extract music data from the freebase data dumps. (http://www.freebase.com/music) Once I have the data dump how to I extract say the following properties http://www.freebase.com/music/recording?schema= Will a better approach be get all…
varunthacker
  • 2,164
  • 2
  • 16
  • 18
6
votes
1 answer

Pass a JSON object to an url with requests

So, I want to use Kenneth' excellent requests module. Stumbled up this problem while trying to use the Freebase API. Basically, their API looks like that: https://www.googleapis.com/freebase/v1/mqlread?query=... as a query, they expect a JSON…
Manuel Ebert
  • 8,101
  • 3
  • 37
  • 56
5
votes
2 answers

Freebase query - exclusion of certain values

I want to retrieve name of all movies and their genre. It's ok if information about genre is empty, but if genre is known I want to retrieve it. "/film/film/genre": [{"id":null,"optional":"optional"}] But I'm not interested in gay pornography, so I…
user574959
  • 85
  • 5
5
votes
1 answer

Loading (parts of) a Freebase dump into ArangoDb

My web searches didn't turn up anything useful and maybe noone has done this yet. While I have done some processing freebase dumps and working with rdf and arangodb, my experience is still very limited and I'd like to hear…
stackmagic
  • 164
  • 8
5
votes
2 answers

how to increase freebase API result limit

I can't find anything in freebase's docs about it but it seems they limit the number of results to 100. For example: [{ "type":"/base/popstra/celebrity", "name":null }] Returns only 100 results whereas [{ "type":"/base/popstra/celebrity", …
Johnny
  • 6,271
  • 7
  • 39
  • 67
5
votes
2 answers

How can I get a list of all film ids from Freebase?

On a project I was working on a couple of years back, I was building a set of data about movies from Freebase. A simple shell script downloaded the "film.tsv" file (from http://download.freebase.com/datadumps/latest/browse/film/film.tsv). I then…
ddswy
  • 53
  • 3
5
votes
1 answer

How to properly attribute Freebase

I hope this is the right place to ask this question. I am attempting to attribute Freebase, but this website: https://www.freebase.com/policies/attribution Does not produce any HTML code or image. My question is: How do I give proper attribution to…
Jonathan
  • 2,603
  • 3
  • 20
  • 37
5
votes
1 answer

google api for glorious info box?

I'm guessing this info is privileged since I couldn't find anything on Google's listed APIs. In fact I'd be amazed if it wasn't proprietary securely fastened Google magic, but thought I'd ask anyway. Is there an Google API for the information…
holden
  • 13,081
  • 21
  • 89
  • 157
5
votes
1 answer

Is there a hierarchical representation of the Freebase types?

For example, if some topic (Ex: Texas) is of type /location/citytown, I also see that there is a type "/location/location" attached to the same topic. In addition, here as the topic is the name of a city or town, it is also by default a general…
London guy
  • 24,942
  • 40
  • 110
  • 169
1
2
3
43 44