SlideShare ist ein Scribd-Unternehmen logo
1 von 4
Downloaden Sie, um offline zu lesen
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 04 | Apr42018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 573
DATA RETRIEVAL USING MASTER RESOURCE DESCRIPTION
FRAMEWORK
Lavanya .R, Manjula .M
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - The proliferation ofheterogeneousLinkedDataon
the Web poses new challenges to database systems. In
particular, the capacity to store, track and query provenance
in data is becoming a pivotal feature of modern triplestores.
We present methods by extending a native RDF store to
efficiently handle the storage, tracking, and querying of
provenance in RDF data by using the concept of Master
Resource Description Framework. We describe a reliable and
understandable specification of the way results are derived
from the data and how particular pieces of data are combined
to answer a query. This project further aims to give a
personalized experience for the users by using a user profile
which tracks the user interests and produce results relatively
to their interests. Subsequently, wepresenttechniquestotailor
queries with provenance data. Finally, we show how using
Master Resource Description Framework improves the
efficiency of search while retrieving data from databases.
Keywords— database, linked data,Master RDF,
provenance, query, RDF,triplestores
I. INTRODUCTION
As Database Retrieval process is heavyweightedandTime
Consuming, it needs to be addressed by RDF-based
approach. Every query representsa graphpatternconsisting
of a set of triple patterns representing the sets of
distinguished variables, undistinguished variables, and
constants. Hence Retrieval based on query search also
meaningless. A solution to a graph pattern q ona graphG isa
mapping from the variables in q to vertices in Gsuchthatthe
substitution of variables would yield a sub graph of G. The
substitutions of distinguished variables constitute the
answers. In fact, It can be interpreted as a homomorphism
(i.e., a structure preserving mapping) from the query graph
to the data graph.
II. PROBLEM DEFINITION
The existing system fails to effectively handle the massive
amounts of files. Also the Database retrieval is a heavy
wighted process [11]. This in turn resultsinslowprocessing.
Cost of querying is also high. These conditionsresulttoother
effects like high access latency, not supporting the user run
time profiling and also not supportinguserpreference based
queries. Above stated points define the problem for our
project. These points are taken forward and solved to the
possible extent to make a better retrieval system.
III. RESOURCE DESCRIPTION FRAMEWORK
The Resource Description Framework (RDF) is a general
framework for how to describe any Internet resource such
as a Web site and its content. An RDF description (such
descriptions are often referred to as metadata, or "data
about data") can include the authors of the resource, date of
creation or updating, the organization of the pages on a site
(the sitemap), information that describescontentinterms of
audience or content rating, key words forsearchenginedata
collection, subject categories, and so forth [1]. The Resource
Description Framework will makeitpossiblefor everyoneto
share Web site and other descriptions more easily and for
software developers to build products that can use the
metadata to provide bettersearchenginesanddirectories,to
act as intelligent agents, and to give Web users more control
of what they're viewing[3]. The RDF is an application of
another technology, the ExtensibleMarkupLanguage(XML),
and is being developed undertheauspicesoftheWorld Wide
Consortium (W3C)[1]. A certain amount of metadata is
already provided for Web site resources usingtheHypertext
Markup Language (HTML). Forexample,whenwewrotethis
page, we added HTML statements containingkey wordsthat
describe the content of this definition and that are used by
search engines for indexing. This RDF is generated by using
an API called Jena API which happens to be an open source
framework helping in the generation of RDF files [2].
A. Basics of RDF
An Internet resource is defined as any resource with a
Uniform ResourceIdentifier (URI).ThisincludestheUniform
Resource Locators (URL) that identify entire Web sites as
well as specific Web pages[1]. As with today's
HTML META tags, the RDF description statements, encased
as part of an Extensible Markup Language (XML) section,
could be included within a Web page (that is, a Hypertext
Markup Language - HTML - file) or could be in separate files.
RDF is now a formal W3C Recommendation, meaning that it
is ready for general use [1]. Currently, a second W3C
recommendation, still at the Proposal stage, proposes a
system in which the descriptions related to a particular
purpose would constitute a class of such like descriptions
(using class here much as it is used in object-oriented
programming data modeling and programming). Such
classes could fit into a schema or hierarchy of classes, with
subclasses of a class able to inherit the descriptions of the
entire class [4]. The schema of classes proposal would save
having to repeat descriptions since a single reference to the
class of which a particular RDF description was a partwould
suffice [2]. The scheme or description of the collection of
classes could itself be written in RDF language.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 04 | Apr42018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 574
Fig. 1. Diagramatic representation of Resource
Description Framework
B. Working of RDF
RDF is a structure oriented approach that exploits the
structure patterns exhibited bytheunderlyingdata captured
using a structure index. For capturing the structure of the
underlying data, structure index is used, a concept that has
been successfully applied in the area of XML- and semi
structured data management [3]. It is basically a graph,
where vertices represent groups of data elements that are
similar in structure. For constructing this index, consider
structure patterns that exhibitcertainedgelabelscontaining
path.. Further, RDF data partitioning is carried on. To obtain
a contiguous storage of data elements that are structurally
similar, vertices of the structure index are mapped to tables
[12]. The triples with the same property label, triples with
subjects that share the same structure are physically
grouped. A basic strategy is to match the query against the
structure index first to identify groupsofdata thatsatisfythe
query structure [10]. Then, via standard data-level
processing, data in these relevant groups are retrieved and
joined. Instead of performing structure- and data-level
operations successively and independent from each other
like in this basic strategy, an integrated strategy that aims at
an optimal combination of these two types of operations is
used.
Fig. 2. Working of Resource Description Framework
C. Benefits
 By providing a consistent framework, RDF will
encourage the providing of metadata about Internet
resources.
 Because RDF will include a standard syntax for
describing and querying data, software that exploits
metadata will be easier and faster to produce.
 The standard syntax and query capability will allow
applications to exchange information more easily.
 Searchers will get more precise results from
searching, based on metadata rather than on indexes
derived from full text gathering.
 Intelligent software agents will have more precise
data to work with.
D. Example
<?xml version="1.0"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cd="http://www.recshop.fake/cd#">
<rdf:Description
rdf:about="http://www.recshop.fake/cd/EmpireBurlesque">
<cd:artist>Bob Dylan</cd:artist>
<cd:country>USA</cd:country>
<cd:company>Columbia</cd:company>
<cd:price>10.90</cd:price>
<cd:year>1985</cd:year>
</rdf:Description>
<rdf:Description
rdf:about="http://www.recshop.fake/cd/Hide your heart">
<cd:artist>BonnieTyler</cd:artist>
<cd:country>UK</cd:country>
<cd:company>CBS Records</cd:company>
<cd:price>9.90</cd:price>
<cd:year>1988</cd:year>
</rdf:Description>
.
.
.
</rdf: RDF>
IV. MASTER RESOURCE DESCRIPTION
FRAMEWORK
Master resource description framework extends the
concept of native RDF. It aims to combine multiple RDF files
and use a single master RDF for the purpose of retrieving
contents. These master RDFs can be a combination of any
number of RDFs based on their content size [6]. This project
aims to improve the efficiency while searching by using
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 04 | Apr42018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 575
master RDF concept. This is done by reducing thetimetaken
for the search engine to go and search in each of the RDFs as
the content is combined and stored in a Master RDF [7]. The
efficiency of which is shown theoretically at the end.
A. Architecture Diagram
Fig. 3. Architecture diagram
V. USER PROFILE
User profile consists of a user behavior. Each user may
have the difference in preferences.Firstuser needtocreatea
profile and add the preference.Whenevertheuserlogins, the
proxy will be enabled automatically and runtime profiling
will start. Consistent with many previous works in
personalized runtime user profiling is failed to achieve.
Moreover, our profile isconstructedbasedontheavailability
of a public accessible taxonomy. User profile is constructed
based on the sample taxonomy repository.
VI. RDF FOR USER UPLOADED DATA
The RDF is also generated by mining the text contents
uploaded by the users in blogs and the contents of the file
are analyzed and the Meta contents are manipulated. The
Meta contents are the key for search process so that the file
can be rendered on demand [4]. Text mining process
analyses the text word by word and also picks up the literal
meaning behind the group of words that constitute the
sentence [8]. The Words are analyzed in WordNet API so
that the related terms can be found for use in the Meta
content in generation of RDF.
VII.MASTER RDF GENERATION
Similar data’s are grouped together that relatetothesame
resource. The data level process is subjected to structure
level processing by indexing the semantic data elements.
Multiple RDFs are groupedandstructuredtogethertoforma
master RDF data that holds all the semantic information’s of
a Server that support reasoning in any formats of query
processing[9]. The different resources are interlinked with
high degree of relational factors by the predicates in the
triples [4]. The query processing is handled directly in the
RDF file by iterating the triples forming a discrete relation
with the service query and the URI representing thelocation
of the resource is returned, as this process is handled in web
services in real time servers. Hence the structure-oriented
approach to RDF data management where data partitioning
and query processing make use of structure patterns
generated by the RDF [6].
VIII. QUERYING OVER MASTER RDF WITH
PROFILING
When a user issues a query on the client, the proxy
generates a user profile in runtime in the light of query
terms. The output of this step is a generalized user profile
satisfying the privacy requirements.Subsequently,thequery
and the generalized user profile aresenttogethertothePWS
server for personalized search [12]. The search results are
personalized with the profile anddeliveredback tothequery
proxy. Finally, the proxy either presents the raw results to
the user, or reranks them with the complete user profile. As
the sensitivity values explicitly indicate the user’s privacy
concerns, the most straightforward privacy preserving
method is to remove sub-trees rooted at all sensitive-nodes
whose sensitivity values are greater than a threshold[5].
Such method is referred to as forbidding.
IX. PERFORMANCE MEASURE
Assume there are two RDF files with one RDF file
containing database content and another being a text file.
Let us consider the following:
N=time taken to search RDF file 1
M=time taken to search RDF file 2
S=time taken to navigate from RDF file1 to RDF file2
Now using native RDF file to perform search will be:
Time complexity=O (N+S+M)
Using Master RDF concept for searching will give:
Time complexity=O (N+M)
From the above measures it is evident that the time taken to
perform search will reduce by a factor of S which represents
the time taken to navigate between RDF files.
X. CONCLUSION
Hence we propose a system for retrieval of data by using the
concept of Master Resource Description Framework which
acts as an index for all the underlying RDF. This reduces the
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 04 | Apr42018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 576
time taken to switch between multipleRDF'sandalsostrives
to provide personalized experience to the user which helps
them in retrieving the exact data that they want. Thus this
system brings about a considerable change in the efficiency
of retrieval and improves the performance of the data
system.
REFERENCES
[1] D. Wood, R. Cyganiak and M. Lanthaler, Eds., “RDF 1.1
Concepts and Abstract Syntax,” W3C Recommendation,
Feb. 2014. [Online]. Available:
http://www.w3.org/TR/rdf11-concepts/
[2] M. Schmachtenberg, C. Bizer, and H. Paulheim, “
Adoption of the linked data best practices in different
topical domains,” in The Semantic Web, P. Mika, et al.,
Eds. Berlin, Germany: Springer, 2014, pp. 245–260.
[Online]. Available: http://dx.doi.org/10.1007/978- 3-
319-11964-9_16
[3] G. Grimnes, “BTC2012 stats,” 2012. [Online]. Available:
http:// gromgull.net/blog/2012/07/some-basic-
btc2012-stats/
[4] P. Groth and W. Beek, “Measuring PROV provenance on
the Web of data,” 2016. [Online]. Available:
https://nbviewer.jupyter.org/ github/pgroth/prov-
wod-analysis/blob/master/ Measuring PROV
Provenance WebofData.ipynb
[5] M. Wylot, J. Pont, M. Wisniewski, and P. Cudr e-
Mauroux, “dipLODocus[RDF]: Short and long-tail RDF
analytics for massive webs of data,” in Proc. 10th Int.
Conf. Semantic Web, 2011, pp. 778–793. [Online].
Available: http://dl.acm.org/citation.cfm?
id=2063016.2063066
[6] M. Wylot and P. Cudr e-Mauroux,“DiploCloud:Efficient
and scalable management of RDF data in the cloud,”
IEEE Trans. Knowl. Data Eng., vol.28,no.3,pp.659–674,
Mar. 2016.
[7] M. Wylot, P. Cudre-Mauroux , and P. Groth, “TripleProv:
Efficient processing of lineage queries in a native RDF
store,” in Proc. 23rd Int. Conf. World Wide Web, 2014,
pp. 455–466.
[8] M. Wylot, P. Cudr e-Mauroux, and P. Groth, “Executing
provenance- enabled queries over Web data,” in Proc.
24th Int. Conf. World Wide Web, 2015, pp. 1275–1285.
[14] M. Wylot, P. Cudr e-Mauroux, and P. Groth, “A
demonstration of TripleProv: Tracking and querying
provenance over Web data,” Proc. VLDB Endowment,
vol. 8, no. 12, pp. 1992–1995, 2015.
[9] L. Moreau, “The foundations for provenance on the
Web,” Found. Trends Web Sci., vol. 2, no. 2/3, pp. 99–
241, Nov. 2010. [Online]. Available:
http://eprints.ecs.soton.ac.uk/21691/
[10] J. Cheney, L. Chiticariu, and W.-C. Tan, Provenance in
databases: Why, How, and Where, vol. 1, no. 4. Breda,
The Netherlands: Now Publishers Inc, 2009.
[11] P. Groth, Y. Gil, J. Cheney, and S. Miles, “Requirements
for provenance on theWeb,” Int. J. Digit. Curation, vol. 7,
no. 1, pp. 39–56, 2012.
[12] P. Cudr e-Mauroux, et al., “A demonstrationofSciDB:A
scienceoriented DBMS,” Proc. VLDB Endowment, vol. 2,
no. 2, pp. 1534– 1537, 2009.

Weitere ähnliche Inhalte

Was ist angesagt?

Jarrar: SPARQL - RDF Query Language
Jarrar: SPARQL - RDF Query LanguageJarrar: SPARQL - RDF Query Language
Jarrar: SPARQL - RDF Query LanguageMustafa Jarrar
 
Range Query on Big Data Based on Map Reduce
Range Query on Big Data Based on Map ReduceRange Query on Big Data Based on Map Reduce
Range Query on Big Data Based on Map ReduceIJMER
 
Deploying PHP applications using Virtuoso as Application Server
Deploying PHP applications using Virtuoso as Application ServerDeploying PHP applications using Virtuoso as Application Server
Deploying PHP applications using Virtuoso as Application Serverwebhostingguy
 
Drupal, CKAN and Public Data. DrupalGov 08 february 2016
Drupal, CKAN and Public Data. DrupalGov 08 february 2016Drupal, CKAN and Public Data. DrupalGov 08 february 2016
Drupal, CKAN and Public Data. DrupalGov 08 february 2016Steven De Costa
 
A Novel Approach for Web Page Set Mining
A Novel Approach for Web Page Set Mining  A Novel Approach for Web Page Set Mining
A Novel Approach for Web Page Set Mining dannyijwest
 
How to clean data less through Linked (Open Data) approach?
How to clean data less through Linked (Open Data) approach?How to clean data less through Linked (Open Data) approach?
How to clean data less through Linked (Open Data) approach?andrea huang
 
DC-2008 Tutorial 3 - Dublin Core and other metadata schemas
DC-2008 Tutorial 3 - Dublin Core and other metadata schemasDC-2008 Tutorial 3 - Dublin Core and other metadata schemas
DC-2008 Tutorial 3 - Dublin Core and other metadata schemasMikael Nilsson
 
Vision Based Deep Web data Extraction on Nested Query Result Records
Vision Based Deep Web data Extraction on Nested Query Result RecordsVision Based Deep Web data Extraction on Nested Query Result Records
Vision Based Deep Web data Extraction on Nested Query Result RecordsIJMER
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)theijes
 
AAT LOD Microthesauri
AAT LOD MicrothesauriAAT LOD Microthesauri
AAT LOD MicrothesauriMarcia Zeng
 
Mining Of Big Data Using Map-Reduce Theorem
Mining Of Big Data Using Map-Reduce TheoremMining Of Big Data Using Map-Reduce Theorem
Mining Of Big Data Using Map-Reduce TheoremIOSR Journals
 
Omitola birmingham cityuniv
Omitola birmingham cityunivOmitola birmingham cityuniv
Omitola birmingham cityunivTope Omitola
 
A unified approach for spatial data query
A unified approach for spatial data queryA unified approach for spatial data query
A unified approach for spatial data queryIJDKP
 
Relations for Reusing (R4R) in A Shared Context: An Exploration on Research P...
Relations for Reusing (R4R) in A Shared Context: An Exploration on Research P...Relations for Reusing (R4R) in A Shared Context: An Exploration on Research P...
Relations for Reusing (R4R) in A Shared Context: An Exploration on Research P...andrea huang
 
Automating Relational Database Schema Design for Very Large Semantic Datasets
Automating Relational Database Schema Design for Very Large Semantic DatasetsAutomating Relational Database Schema Design for Very Large Semantic Datasets
Automating Relational Database Schema Design for Very Large Semantic DatasetsThomas Lee
 
Combiningefficiencyfidelityandflexibilityin 150511053028-lva1-app6892
Combiningefficiencyfidelityandflexibilityin 150511053028-lva1-app6892Combiningefficiencyfidelityandflexibilityin 150511053028-lva1-app6892
Combiningefficiencyfidelityandflexibilityin 150511053028-lva1-app6892Shakas Technologies
 
SOURCE CODE RETRIEVAL USING SEQUENCE BASED SIMILARITY
SOURCE CODE RETRIEVAL USING SEQUENCE BASED SIMILARITYSOURCE CODE RETRIEVAL USING SEQUENCE BASED SIMILARITY
SOURCE CODE RETRIEVAL USING SEQUENCE BASED SIMILARITYIJDKP
 

Was ist angesagt? (19)

Jarrar: SPARQL - RDF Query Language
Jarrar: SPARQL - RDF Query LanguageJarrar: SPARQL - RDF Query Language
Jarrar: SPARQL - RDF Query Language
 
Extend db
Extend dbExtend db
Extend db
 
Range Query on Big Data Based on Map Reduce
Range Query on Big Data Based on Map ReduceRange Query on Big Data Based on Map Reduce
Range Query on Big Data Based on Map Reduce
 
Deploying PHP applications using Virtuoso as Application Server
Deploying PHP applications using Virtuoso as Application ServerDeploying PHP applications using Virtuoso as Application Server
Deploying PHP applications using Virtuoso as Application Server
 
Drupal, CKAN and Public Data. DrupalGov 08 february 2016
Drupal, CKAN and Public Data. DrupalGov 08 february 2016Drupal, CKAN and Public Data. DrupalGov 08 february 2016
Drupal, CKAN and Public Data. DrupalGov 08 february 2016
 
A Novel Approach for Web Page Set Mining
A Novel Approach for Web Page Set Mining  A Novel Approach for Web Page Set Mining
A Novel Approach for Web Page Set Mining
 
How to clean data less through Linked (Open Data) approach?
How to clean data less through Linked (Open Data) approach?How to clean data less through Linked (Open Data) approach?
How to clean data less through Linked (Open Data) approach?
 
DC-2008 Tutorial 3 - Dublin Core and other metadata schemas
DC-2008 Tutorial 3 - Dublin Core and other metadata schemasDC-2008 Tutorial 3 - Dublin Core and other metadata schemas
DC-2008 Tutorial 3 - Dublin Core and other metadata schemas
 
Vision Based Deep Web data Extraction on Nested Query Result Records
Vision Based Deep Web data Extraction on Nested Query Result RecordsVision Based Deep Web data Extraction on Nested Query Result Records
Vision Based Deep Web data Extraction on Nested Query Result Records
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
AAT LOD Microthesauri
AAT LOD MicrothesauriAAT LOD Microthesauri
AAT LOD Microthesauri
 
Mining Of Big Data Using Map-Reduce Theorem
Mining Of Big Data Using Map-Reduce TheoremMining Of Big Data Using Map-Reduce Theorem
Mining Of Big Data Using Map-Reduce Theorem
 
semanticweb
semanticwebsemanticweb
semanticweb
 
Omitola birmingham cityuniv
Omitola birmingham cityunivOmitola birmingham cityuniv
Omitola birmingham cityuniv
 
A unified approach for spatial data query
A unified approach for spatial data queryA unified approach for spatial data query
A unified approach for spatial data query
 
Relations for Reusing (R4R) in A Shared Context: An Exploration on Research P...
Relations for Reusing (R4R) in A Shared Context: An Exploration on Research P...Relations for Reusing (R4R) in A Shared Context: An Exploration on Research P...
Relations for Reusing (R4R) in A Shared Context: An Exploration on Research P...
 
Automating Relational Database Schema Design for Very Large Semantic Datasets
Automating Relational Database Schema Design for Very Large Semantic DatasetsAutomating Relational Database Schema Design for Very Large Semantic Datasets
Automating Relational Database Schema Design for Very Large Semantic Datasets
 
Combiningefficiencyfidelityandflexibilityin 150511053028-lva1-app6892
Combiningefficiencyfidelityandflexibilityin 150511053028-lva1-app6892Combiningefficiencyfidelityandflexibilityin 150511053028-lva1-app6892
Combiningefficiencyfidelityandflexibilityin 150511053028-lva1-app6892
 
SOURCE CODE RETRIEVAL USING SEQUENCE BASED SIMILARITY
SOURCE CODE RETRIEVAL USING SEQUENCE BASED SIMILARITYSOURCE CODE RETRIEVAL USING SEQUENCE BASED SIMILARITY
SOURCE CODE RETRIEVAL USING SEQUENCE BASED SIMILARITY
 

Ähnlich wie IRJET- Data Retrieval using Master Resource Description Framework

An Implementation of a New Framework for Automatic Generation of Ontology and...
An Implementation of a New Framework for Automatic Generation of Ontology and...An Implementation of a New Framework for Automatic Generation of Ontology and...
An Implementation of a New Framework for Automatic Generation of Ontology and...IJCSIS Research Publications
 
Semantic framework for web scraping.
Semantic framework for web scraping.Semantic framework for web scraping.
Semantic framework for web scraping.Shyjal Raazi
 
Force11 JDDCP workshop presentation, @ Force2015, Oxford
Force11 JDDCP workshop presentation, @ Force2015, OxfordForce11 JDDCP workshop presentation, @ Force2015, Oxford
Force11 JDDCP workshop presentation, @ Force2015, OxfordMark Wilkinson
 
An Efficient Annotation of Search Results Based on Feature Ranking Approach f...
An Efficient Annotation of Search Results Based on Feature Ranking Approach f...An Efficient Annotation of Search Results Based on Feature Ranking Approach f...
An Efficient Annotation of Search Results Based on Feature Ranking Approach f...Computer Science Journals
 
RDFa Semantic Web
RDFa Semantic WebRDFa Semantic Web
RDFa Semantic WebRob Paok
 
A Novel Data Extraction and Alignment Method for Web Databases
A Novel Data Extraction and Alignment Method for Web DatabasesA Novel Data Extraction and Alignment Method for Web Databases
A Novel Data Extraction and Alignment Method for Web DatabasesIJMER
 
RDF-Gen: Generating RDF from streaming and archival data
RDF-Gen: Generating RDF from streaming and archival dataRDF-Gen: Generating RDF from streaming and archival data
RDF-Gen: Generating RDF from streaming and archival dataGiorgos Santipantakis
 
Key aspects of big data storage and its architecture
Key aspects of big data storage and its architectureKey aspects of big data storage and its architecture
Key aspects of big data storage and its architectureRahul Chaturvedi
 
Dublin Core In Practice
Dublin Core In PracticeDublin Core In Practice
Dublin Core In PracticeMarcia Zeng
 
Metadata: Towards Machine-Enabled Intelligence
Metadata: Towards Machine-Enabled IntelligenceMetadata: Towards Machine-Enabled Intelligence
Metadata: Towards Machine-Enabled Intelligencedannyijwest
 
Metadata: Towards Machine-Enabled Intelligence
Metadata: Towards Machine-Enabled Intelligence               Metadata: Towards Machine-Enabled Intelligence
Metadata: Towards Machine-Enabled Intelligence dannyijwest
 
Part2- The Atomic Information Resource
Part2- The Atomic Information ResourcePart2- The Atomic Information Resource
Part2- The Atomic Information ResourceJEAN-MICHEL LETENNIER
 
Document Based Data Modeling Technique
Document Based Data Modeling TechniqueDocument Based Data Modeling Technique
Document Based Data Modeling TechniqueCarmen Sanborn
 
Search Engines After The Semanatic Web
Search Engines After The Semanatic WebSearch Engines After The Semanatic Web
Search Engines After The Semanatic Websamar_slideshare
 
Annotating search results from web databases-IEEE Transaction Paper 2013
Annotating search results from web databases-IEEE Transaction Paper 2013Annotating search results from web databases-IEEE Transaction Paper 2013
Annotating search results from web databases-IEEE Transaction Paper 2013Yadhu Kiran
 

Ähnlich wie IRJET- Data Retrieval using Master Resource Description Framework (20)

An Implementation of a New Framework for Automatic Generation of Ontology and...
An Implementation of a New Framework for Automatic Generation of Ontology and...An Implementation of a New Framework for Automatic Generation of Ontology and...
An Implementation of a New Framework for Automatic Generation of Ontology and...
 
Semantic framework for web scraping.
Semantic framework for web scraping.Semantic framework for web scraping.
Semantic framework for web scraping.
 
Force11 JDDCP workshop presentation, @ Force2015, Oxford
Force11 JDDCP workshop presentation, @ Force2015, OxfordForce11 JDDCP workshop presentation, @ Force2015, Oxford
Force11 JDDCP workshop presentation, @ Force2015, Oxford
 
Gt ea2009
Gt ea2009Gt ea2009
Gt ea2009
 
The Social Data Web
The Social Data WebThe Social Data Web
The Social Data Web
 
An Efficient Annotation of Search Results Based on Feature Ranking Approach f...
An Efficient Annotation of Search Results Based on Feature Ranking Approach f...An Efficient Annotation of Search Results Based on Feature Ranking Approach f...
An Efficient Annotation of Search Results Based on Feature Ranking Approach f...
 
RDFa Semantic Web
RDFa Semantic WebRDFa Semantic Web
RDFa Semantic Web
 
A Novel Data Extraction and Alignment Method for Web Databases
A Novel Data Extraction and Alignment Method for Web DatabasesA Novel Data Extraction and Alignment Method for Web Databases
A Novel Data Extraction and Alignment Method for Web Databases
 
RDF-Gen: Generating RDF from streaming and archival data
RDF-Gen: Generating RDF from streaming and archival dataRDF-Gen: Generating RDF from streaming and archival data
RDF-Gen: Generating RDF from streaming and archival data
 
Key aspects of big data storage and its architecture
Key aspects of big data storage and its architectureKey aspects of big data storage and its architecture
Key aspects of big data storage and its architecture
 
Dublin Core In Practice
Dublin Core In PracticeDublin Core In Practice
Dublin Core In Practice
 
Metadata: Towards Machine-Enabled Intelligence
Metadata: Towards Machine-Enabled IntelligenceMetadata: Towards Machine-Enabled Intelligence
Metadata: Towards Machine-Enabled Intelligence
 
Metadata: Towards Machine-Enabled Intelligence
Metadata: Towards Machine-Enabled Intelligence               Metadata: Towards Machine-Enabled Intelligence
Metadata: Towards Machine-Enabled Intelligence
 
Part2- The Atomic Information Resource
Part2- The Atomic Information ResourcePart2- The Atomic Information Resource
Part2- The Atomic Information Resource
 
Database system Handbook.docx
Database system Handbook.docxDatabase system Handbook.docx
Database system Handbook.docx
 
Document Based Data Modeling Technique
Document Based Data Modeling TechniqueDocument Based Data Modeling Technique
Document Based Data Modeling Technique
 
Search Engines After The Semanatic Web
Search Engines After The Semanatic WebSearch Engines After The Semanatic Web
Search Engines After The Semanatic Web
 
P341
P341P341
P341
 
Annotating search results from web databases-IEEE Transaction Paper 2013
Annotating search results from web databases-IEEE Transaction Paper 2013Annotating search results from web databases-IEEE Transaction Paper 2013
Annotating search results from web databases-IEEE Transaction Paper 2013
 
Week 1
Week 1Week 1
Week 1
 

Mehr von IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

Mehr von IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Kürzlich hochgeladen

VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfRagavanV2
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptNANDHAKUMARA10
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startQuintin Balsdon
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaOmar Fathy
 
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...soginsider
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Arindam Chakraborty, Ph.D., P.E. (CA, TX)
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf203318pmpc
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdfKamal Acharya
 
Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086anil_gaur
 

Kürzlich hochgeladen (20)

VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 

IRJET- Data Retrieval using Master Resource Description Framework

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 04 | Apr42018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 573 DATA RETRIEVAL USING MASTER RESOURCE DESCRIPTION FRAMEWORK Lavanya .R, Manjula .M ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - The proliferation ofheterogeneousLinkedDataon the Web poses new challenges to database systems. In particular, the capacity to store, track and query provenance in data is becoming a pivotal feature of modern triplestores. We present methods by extending a native RDF store to efficiently handle the storage, tracking, and querying of provenance in RDF data by using the concept of Master Resource Description Framework. We describe a reliable and understandable specification of the way results are derived from the data and how particular pieces of data are combined to answer a query. This project further aims to give a personalized experience for the users by using a user profile which tracks the user interests and produce results relatively to their interests. Subsequently, wepresenttechniquestotailor queries with provenance data. Finally, we show how using Master Resource Description Framework improves the efficiency of search while retrieving data from databases. Keywords— database, linked data,Master RDF, provenance, query, RDF,triplestores I. INTRODUCTION As Database Retrieval process is heavyweightedandTime Consuming, it needs to be addressed by RDF-based approach. Every query representsa graphpatternconsisting of a set of triple patterns representing the sets of distinguished variables, undistinguished variables, and constants. Hence Retrieval based on query search also meaningless. A solution to a graph pattern q ona graphG isa mapping from the variables in q to vertices in Gsuchthatthe substitution of variables would yield a sub graph of G. The substitutions of distinguished variables constitute the answers. In fact, It can be interpreted as a homomorphism (i.e., a structure preserving mapping) from the query graph to the data graph. II. PROBLEM DEFINITION The existing system fails to effectively handle the massive amounts of files. Also the Database retrieval is a heavy wighted process [11]. This in turn resultsinslowprocessing. Cost of querying is also high. These conditionsresulttoother effects like high access latency, not supporting the user run time profiling and also not supportinguserpreference based queries. Above stated points define the problem for our project. These points are taken forward and solved to the possible extent to make a better retrieval system. III. RESOURCE DESCRIPTION FRAMEWORK The Resource Description Framework (RDF) is a general framework for how to describe any Internet resource such as a Web site and its content. An RDF description (such descriptions are often referred to as metadata, or "data about data") can include the authors of the resource, date of creation or updating, the organization of the pages on a site (the sitemap), information that describescontentinterms of audience or content rating, key words forsearchenginedata collection, subject categories, and so forth [1]. The Resource Description Framework will makeitpossiblefor everyoneto share Web site and other descriptions more easily and for software developers to build products that can use the metadata to provide bettersearchenginesanddirectories,to act as intelligent agents, and to give Web users more control of what they're viewing[3]. The RDF is an application of another technology, the ExtensibleMarkupLanguage(XML), and is being developed undertheauspicesoftheWorld Wide Consortium (W3C)[1]. A certain amount of metadata is already provided for Web site resources usingtheHypertext Markup Language (HTML). Forexample,whenwewrotethis page, we added HTML statements containingkey wordsthat describe the content of this definition and that are used by search engines for indexing. This RDF is generated by using an API called Jena API which happens to be an open source framework helping in the generation of RDF files [2]. A. Basics of RDF An Internet resource is defined as any resource with a Uniform ResourceIdentifier (URI).ThisincludestheUniform Resource Locators (URL) that identify entire Web sites as well as specific Web pages[1]. As with today's HTML META tags, the RDF description statements, encased as part of an Extensible Markup Language (XML) section, could be included within a Web page (that is, a Hypertext Markup Language - HTML - file) or could be in separate files. RDF is now a formal W3C Recommendation, meaning that it is ready for general use [1]. Currently, a second W3C recommendation, still at the Proposal stage, proposes a system in which the descriptions related to a particular purpose would constitute a class of such like descriptions (using class here much as it is used in object-oriented programming data modeling and programming). Such classes could fit into a schema or hierarchy of classes, with subclasses of a class able to inherit the descriptions of the entire class [4]. The schema of classes proposal would save having to repeat descriptions since a single reference to the class of which a particular RDF description was a partwould suffice [2]. The scheme or description of the collection of classes could itself be written in RDF language.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 04 | Apr42018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 574 Fig. 1. Diagramatic representation of Resource Description Framework B. Working of RDF RDF is a structure oriented approach that exploits the structure patterns exhibited bytheunderlyingdata captured using a structure index. For capturing the structure of the underlying data, structure index is used, a concept that has been successfully applied in the area of XML- and semi structured data management [3]. It is basically a graph, where vertices represent groups of data elements that are similar in structure. For constructing this index, consider structure patterns that exhibitcertainedgelabelscontaining path.. Further, RDF data partitioning is carried on. To obtain a contiguous storage of data elements that are structurally similar, vertices of the structure index are mapped to tables [12]. The triples with the same property label, triples with subjects that share the same structure are physically grouped. A basic strategy is to match the query against the structure index first to identify groupsofdata thatsatisfythe query structure [10]. Then, via standard data-level processing, data in these relevant groups are retrieved and joined. Instead of performing structure- and data-level operations successively and independent from each other like in this basic strategy, an integrated strategy that aims at an optimal combination of these two types of operations is used. Fig. 2. Working of Resource Description Framework C. Benefits  By providing a consistent framework, RDF will encourage the providing of metadata about Internet resources.  Because RDF will include a standard syntax for describing and querying data, software that exploits metadata will be easier and faster to produce.  The standard syntax and query capability will allow applications to exchange information more easily.  Searchers will get more precise results from searching, based on metadata rather than on indexes derived from full text gathering.  Intelligent software agents will have more precise data to work with. D. Example <?xml version="1.0"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cd="http://www.recshop.fake/cd#"> <rdf:Description rdf:about="http://www.recshop.fake/cd/EmpireBurlesque"> <cd:artist>Bob Dylan</cd:artist> <cd:country>USA</cd:country> <cd:company>Columbia</cd:company> <cd:price>10.90</cd:price> <cd:year>1985</cd:year> </rdf:Description> <rdf:Description rdf:about="http://www.recshop.fake/cd/Hide your heart"> <cd:artist>BonnieTyler</cd:artist> <cd:country>UK</cd:country> <cd:company>CBS Records</cd:company> <cd:price>9.90</cd:price> <cd:year>1988</cd:year> </rdf:Description> . . . </rdf: RDF> IV. MASTER RESOURCE DESCRIPTION FRAMEWORK Master resource description framework extends the concept of native RDF. It aims to combine multiple RDF files and use a single master RDF for the purpose of retrieving contents. These master RDFs can be a combination of any number of RDFs based on their content size [6]. This project aims to improve the efficiency while searching by using
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 04 | Apr42018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 575 master RDF concept. This is done by reducing thetimetaken for the search engine to go and search in each of the RDFs as the content is combined and stored in a Master RDF [7]. The efficiency of which is shown theoretically at the end. A. Architecture Diagram Fig. 3. Architecture diagram V. USER PROFILE User profile consists of a user behavior. Each user may have the difference in preferences.Firstuser needtocreatea profile and add the preference.Whenevertheuserlogins, the proxy will be enabled automatically and runtime profiling will start. Consistent with many previous works in personalized runtime user profiling is failed to achieve. Moreover, our profile isconstructedbasedontheavailability of a public accessible taxonomy. User profile is constructed based on the sample taxonomy repository. VI. RDF FOR USER UPLOADED DATA The RDF is also generated by mining the text contents uploaded by the users in blogs and the contents of the file are analyzed and the Meta contents are manipulated. The Meta contents are the key for search process so that the file can be rendered on demand [4]. Text mining process analyses the text word by word and also picks up the literal meaning behind the group of words that constitute the sentence [8]. The Words are analyzed in WordNet API so that the related terms can be found for use in the Meta content in generation of RDF. VII.MASTER RDF GENERATION Similar data’s are grouped together that relatetothesame resource. The data level process is subjected to structure level processing by indexing the semantic data elements. Multiple RDFs are groupedandstructuredtogethertoforma master RDF data that holds all the semantic information’s of a Server that support reasoning in any formats of query processing[9]. The different resources are interlinked with high degree of relational factors by the predicates in the triples [4]. The query processing is handled directly in the RDF file by iterating the triples forming a discrete relation with the service query and the URI representing thelocation of the resource is returned, as this process is handled in web services in real time servers. Hence the structure-oriented approach to RDF data management where data partitioning and query processing make use of structure patterns generated by the RDF [6]. VIII. QUERYING OVER MASTER RDF WITH PROFILING When a user issues a query on the client, the proxy generates a user profile in runtime in the light of query terms. The output of this step is a generalized user profile satisfying the privacy requirements.Subsequently,thequery and the generalized user profile aresenttogethertothePWS server for personalized search [12]. The search results are personalized with the profile anddeliveredback tothequery proxy. Finally, the proxy either presents the raw results to the user, or reranks them with the complete user profile. As the sensitivity values explicitly indicate the user’s privacy concerns, the most straightforward privacy preserving method is to remove sub-trees rooted at all sensitive-nodes whose sensitivity values are greater than a threshold[5]. Such method is referred to as forbidding. IX. PERFORMANCE MEASURE Assume there are two RDF files with one RDF file containing database content and another being a text file. Let us consider the following: N=time taken to search RDF file 1 M=time taken to search RDF file 2 S=time taken to navigate from RDF file1 to RDF file2 Now using native RDF file to perform search will be: Time complexity=O (N+S+M) Using Master RDF concept for searching will give: Time complexity=O (N+M) From the above measures it is evident that the time taken to perform search will reduce by a factor of S which represents the time taken to navigate between RDF files. X. CONCLUSION Hence we propose a system for retrieval of data by using the concept of Master Resource Description Framework which acts as an index for all the underlying RDF. This reduces the
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 04 | Apr42018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 576 time taken to switch between multipleRDF'sandalsostrives to provide personalized experience to the user which helps them in retrieving the exact data that they want. Thus this system brings about a considerable change in the efficiency of retrieval and improves the performance of the data system. REFERENCES [1] D. Wood, R. Cyganiak and M. Lanthaler, Eds., “RDF 1.1 Concepts and Abstract Syntax,” W3C Recommendation, Feb. 2014. [Online]. Available: http://www.w3.org/TR/rdf11-concepts/ [2] M. Schmachtenberg, C. Bizer, and H. Paulheim, “ Adoption of the linked data best practices in different topical domains,” in The Semantic Web, P. Mika, et al., Eds. Berlin, Germany: Springer, 2014, pp. 245–260. [Online]. Available: http://dx.doi.org/10.1007/978- 3- 319-11964-9_16 [3] G. Grimnes, “BTC2012 stats,” 2012. [Online]. Available: http:// gromgull.net/blog/2012/07/some-basic- btc2012-stats/ [4] P. Groth and W. Beek, “Measuring PROV provenance on the Web of data,” 2016. [Online]. Available: https://nbviewer.jupyter.org/ github/pgroth/prov- wod-analysis/blob/master/ Measuring PROV Provenance WebofData.ipynb [5] M. Wylot, J. Pont, M. Wisniewski, and P. Cudr e- Mauroux, “dipLODocus[RDF]: Short and long-tail RDF analytics for massive webs of data,” in Proc. 10th Int. Conf. Semantic Web, 2011, pp. 778–793. [Online]. Available: http://dl.acm.org/citation.cfm? id=2063016.2063066 [6] M. Wylot and P. Cudr e-Mauroux,“DiploCloud:Efficient and scalable management of RDF data in the cloud,” IEEE Trans. Knowl. Data Eng., vol.28,no.3,pp.659–674, Mar. 2016. [7] M. Wylot, P. Cudre-Mauroux , and P. Groth, “TripleProv: Efficient processing of lineage queries in a native RDF store,” in Proc. 23rd Int. Conf. World Wide Web, 2014, pp. 455–466. [8] M. Wylot, P. Cudr e-Mauroux, and P. Groth, “Executing provenance- enabled queries over Web data,” in Proc. 24th Int. Conf. World Wide Web, 2015, pp. 1275–1285. [14] M. Wylot, P. Cudr e-Mauroux, and P. Groth, “A demonstration of TripleProv: Tracking and querying provenance over Web data,” Proc. VLDB Endowment, vol. 8, no. 12, pp. 1992–1995, 2015. [9] L. Moreau, “The foundations for provenance on the Web,” Found. Trends Web Sci., vol. 2, no. 2/3, pp. 99– 241, Nov. 2010. [Online]. Available: http://eprints.ecs.soton.ac.uk/21691/ [10] J. Cheney, L. Chiticariu, and W.-C. Tan, Provenance in databases: Why, How, and Where, vol. 1, no. 4. Breda, The Netherlands: Now Publishers Inc, 2009. [11] P. Groth, Y. Gil, J. Cheney, and S. Miles, “Requirements for provenance on theWeb,” Int. J. Digit. Curation, vol. 7, no. 1, pp. 39–56, 2012. [12] P. Cudr e-Mauroux, et al., “A demonstrationofSciDB:A scienceoriented DBMS,” Proc. VLDB Endowment, vol. 2, no. 2, pp. 1534– 1537, 2009.