Skip to main content

Exposes RDF datasets from sparql endpoints for relational learning models in convenient formats

Project description

RDF2SRL

This package exposes RDF data from sparql database engines for relational learning models.

It provides some convenience functions that send sparql queries in http requests for both public and private sparql endpoints.

Installation

You can install the RDF2SRL package from PyPI:

pip install RDF2SRL

Getting Started

Collecting Statistics about the data

We can use this package to get some statistics about the DBpedia dataset. Let's use the DBpedia public endpoint provided by OpenLink Virtuoso

First, import the RDFGraphDataset class from the python package rdf2srl and initialize the RDFGraphDataset class with the endpoint URI and the graph URI

from rdf2srl import RDFGraphDataset
loader = RDFGraphDataset(sparql_endpoint="http://dbpedia.org/sparql", graph_name='http://dbpedia.org/')

Now, Let's find the number of (subject, predicate, object) triples in the DBpedia graph:

num_triples = loader.num_triples()

To find the number of (subject, predicate, object) triples where the object is another entity, find the number of entity to entity triples.

num_e2e_triples = loader.num_entity2entity_triples()

To find the number of (subject, predicate, object) triples where the object is a literal value, find the number of entity to entity triples.

num_e2l_triples = loader.num_entity2literal_triples()

Collecting Statistics about the data

We can also use the package to access the entities in the graph. A useful format for relational learning models is a dictionary that maps each entity to an index that starts from 0 to n_entities-1. Other available formats are pandas dataframes and python lists.

entity2idx = loader.entities('dict')

Similarly, we can get all the entity-to-entity predicates in the graph. A useful format for relational learning models is a dictionary that maps each predicate to an index that starts from 0 to n_relations-1. Other available formats are pandas dataframes and python lists.

relation2idx = loader.relations('dict')

Now, we can get the triples in the dataset as list of tuples where the values inside the tuples represent the indices in entity2idx and relation2idx. Other available formats are pandas dataframes.

triples = loader.triples('list')

list of the convenience functions available:

RDFGraphDataset.num_entities()  
RDFGraphDataset.num_predicates()  
RDFGraphDataset.num_relations()  
RDFGraphDataset.num_attributes()  
RDFGraphDataset.num_attr_literal_pairs()  
RDFGraphDataset.num_triples()  
RDFGraphDataset.num_entity2literal_triples()  
RDFGraphDataset.num_entity2entity_triples()  
RDFGraphDataset.num_rdf_type_triples()  
RDFGraphDataset.predicates(format) # where format is one of ['dict', 'df', 'list']  
RDFGraphDataset.relations(format) # where format is one of ['dict', 'df', 'list']  
RDFGraphDataset.attributes(format) # where format is one of ['dict', 'df', 'list']  
RDFGraphDataset.entities(format) # where format is one of ['dict', 'df', 'list']  
RDFGraphDataset.attr_literal_pairs()  
RDFGraphDataset.triples(format) # where format is one of ['df', 'list']  
RDFGraphDataset.entity2entity_triples(format) # where format is one of ['df', 'list']  
RDFGraphDataset.entity2literal_triples(format) # where format is one of ['df', 'list']  
RDFGraphDataset.subjects(predicate)  
RDFGraphDataset.objects(predicate)  
RDFGraphDataset.predicates_freq()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rdf2srl-1.0.3.tar.gz (7.8 kB view hashes)

Uploaded Source

Built Distribution

rdf2srl-1.0.3-py3-none-any.whl (8.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page