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.

655 questions
5
votes
2 answers

Find the alive people using SPARQL (choose the items that doesn't have an edge)

Following sparql query will give the persons who are dead. select distinct ?item{ ?item . ?item
nizam.sp
  • 4,002
  • 5
  • 39
  • 63
5
votes
1 answer

RDF for a Freebase topic

I am using the python library rdflib to query Freebase for topics. I found that the data returned by Freebase for topics are not complete. For instance, when I query: http://rdf.freebase.com/rdf/en.barack_obama The result does not contain data…
user1748083
  • 137
  • 6
4
votes
4 answers

How to map subjective data in the semantic web?

I've been looking at the freebase project for storing data. It seems to be a great place to store concrete, objective data like names, locations and dates. Is it a good place to store subjective data like opinions or ratings? Is there…
Kevin Williams
  • 2,588
  • 3
  • 24
  • 25
4
votes
2 answers

freebase getting plain names of types and sorting by commonality

I'd like to be able to get a list of types by their common name from a freebase ID { "id": "/m/02mjmr", #obama "type":[] }​ How can I return the names of the types instead of their IDs? The above returns 0: "/common/topic"xp 1:…
ere
  • 1,739
  • 3
  • 19
  • 41
4
votes
1 answer

List all Freebase Domains with MQL query or API call

I would like to develop a Freebase java application that lets you browse Freebase. I thought a good starting point would be to mimic the Freebase Schema Explorer and allow the user of my app to "drill down" through Domains, Types in a Domain, then…
Hector
  • 4,016
  • 21
  • 112
  • 211
4
votes
2 answers

How to use Freebase to label a very large unlabeled NLP dataset?

Vocabulary that I am using: nounphrase -- A short phrase that refers to a specific person, place, or idea. Examples of different nounphrases include "Barack Obama", "Obama", "Water Bottle", "Yellowstone National Park", "Google Chrome web browser",…
Malcolm
  • 2,394
  • 1
  • 23
  • 26
4
votes
2 answers

How to retrieve a content from FreeBase.com in Italian language?

How to retrieve a content from FreeBase.com in Italian language? Now, I can only see content from eng.wikipedia.org.
Leonardo
  • 2,273
  • 6
  • 29
  • 32
4
votes
1 answer

Entity name not found by its mid in freebase

We are working on a research project for answering questions with a knowledge base. We adopted the dataset SimpleQuestions (https://research.fb.com/projects/babi/). We loaded the latest freebase data dump into Virtuoso, and query entities' names by…
Shawn Zhu
  • 41
  • 5
4
votes
2 answers

Freebase: Format search result to list all properties of object of unknown type(s)

I'm trying to write a MQL query to format a search result in freebase (the "output" parameter in the search API). I essentially want to find the (simple) values of all the properties of a given search result (without knowing anything about the types…
4
votes
1 answer

How to use `relevantTopicIds` from YouTube Data API v3?

As stated in this documentation: "Search with Freebase Topics" and in the available video as well, the YouTube Data API v3 offers certain Freebase MIDs when using topicDetails as an argument for part. My question is how can I use those returned…
4
votes
2 answers

How can I query wikidata with a freebase id from a youtube video?

I am using the youtube API to retrieve the freebase topic details of particular videos. Since freebase is closing down how do I use wikidata to query for a specific topic id? For example the following topic id /m/0181lj should give the following…
david_adler
  • 9,690
  • 6
  • 57
  • 97
4
votes
1 answer

How to get a list of all films on Wikidata?

I was using Freebase to get all movies/films there for my website, but it's getting shut down soon. so I was searching for another free database for movies and came across Wikidata. To be honest it's too complicated to understand how to query all…
Mightee
  • 689
  • 7
  • 22
4
votes
2 answers

converting freebase MQL to SPARQL

following freebase MQL finds 5 artists and 50 albums for each artists. [{ "type" : "/music/artist", "name":null, "album" : [{ "name" : null, "count":null, "limit":50 }], "limit":5 }] first try - without a subquery I can write…
Jason Heo
  • 9,956
  • 2
  • 36
  • 64
4
votes
2 answers

Extracting Entity-Verb relations from open knowledge bases like Freebase and DBPedia

Is there any way that we can extract entity-verb relations from already existing online KBs like Freebase, DBPedia, Wikidata or Wordnet, I checked and only found that these sources concentrate on entities. My aim is to derive relations like "A…
4
votes
2 answers

is this a valid xsd:dateTime? if so, why?

I'm looking through some of the triples contained within the Freebase data dump, and some of the date times look like this: "T12:00"^^ Which is ingestible by some triplestores, but not by others. So, is…
Kristian
  • 21,204
  • 19
  • 101
  • 176
1 2
3
43 44