SlideShare une entreprise Scribd logo
1  sur  28
Ontology driven Annotation
What is Semantic web?
The Semantic Web vision
”A web of data that can be processed directly and indirectly by
machines”
What do we need?




Annotated documents with   Ontology with metadata about
canonical references to    entities
mentioned entities
Wikipedia Annotation
About Wikipedia
Large knowledge base with 3.9M
article pages in English
Automatic Annotation

     Spotting                 Disambiguation


Heading into the Los
Angeles Lakers' Tuesday
night tilt with the Golden
State Warriors, Kobe
Bryant needed 25 points
to pass Michael Jordan for
the second-most points
scored by a player for a
single NBA franchise. He
got 30. We now have a
definitive answer; finally,
the debate can end.
Existing Wikipedia Annotators


  Wikify
                                   DBPedia Spotlight




                 Wikipedia Miner


       Zemanta
                 Extractiv



                                      Opencalais
    Wikifier
Sample from Wikipedia Miner
Trie based Spotter
Academic and Technical Ontology, Annotators
1212

           Motivating Vision
        Next-Generation Search will be
        Information Extraction + Ontology + Inference
                                                              Object 1




                         …
                         Albert Einstein was a German-born theoretical physicist …
h German Scientists Taught at US Universities?
                                 …
                                                                            Object 3




                                          New Jersey is a state in the Northeastern region
                                          …
                                                   Object 2




            …
            Einstein was a guest lecturer at the Institute for Advanced Study in New Jersey
            …
Academic and Technical
      Ontology
AQL script for Techpedia Project Title

create view ProjectName as
extract
   regex /Project Title/
   with flags 'CASE_INSENSITIVE'
   on D.text as title
from DetaggedDoc D;

create view ProjectTitle as
select RightContextTok(P.title,10) as ProjectTitle
from ProjectName P;

output view ProjectTitle;
AQL script for course prerequisite
create view PrerequisiteWord as
    extract regex /(Prerequisitesns*)(.*)/
    on D.text
    return group 1 as prereqWord and
    group 2 as prereq
from DetaggedDoc D;

create view prereq as
extract
    P.prereq as match,
    regex /n/ on P.prereq as boundary
from PrerequisiteWord P;

create view CoursePrerequisite as
extract split using P.boundary
retain left split point on P.match
as CoursePrerequisite
from prereq P
limit 1;

output view CoursePrerequisite;
AQL script for Professor Name
create view ProfessorName as
(select CombineSpans(F.fname, L.lname) as Pname
from FirstName F, LastName L
where FollowsTok(F.fname, L.lname,0,0)
consolidate on F.fname using 'ContainedWithin'
order by GetText(F.fname)
limit 1)
union all
(select CombineSpans(F.Nameinitial, L.lname) as Pname
from FNameInitial F, LastName L
where FollowsTok(F.Nameinitial, L.lname,0,0)
consolidate on F.Nameinitial using 'ContainedWithin'
order by GetText(F.Nameinitial)
limit 1);


                                                        16
Input Page
Output view for Project Title
Output View ProjectTitle:
    [Document.text[17-73]: ' :   DESIGN & ANALYSIS OF PRESSURE
VES...'(1 fields)]
    ProjectTitle: :    DESIGN & ANALYSIS OF PRESSURE VESSEL
   College :    U

    [Document.text[276-349]: ' :    Design and Analysis of
Electrical...'(1 fields)]
    ProjectTitle: :    Design and Analysis of Electrical Overhead
Traveling Crane
   College

    [Document.text[566-623]: ' :    Blungers: For Slip and Glaze
Prep...'(1 fields)]
    ProjectTitle: :    Blungers: For Slip and Glaze Preparation
   College :

    [Document.text[833-880]: ' :    DESIGN OF STEAM CONDENSERn
   Col...'(1 fields)]
    ProjectTitle: :    DESIGN OF STEAM CONDENSER
Output view for College Name
Output View CollegeName:
    [Document.text[68-113]: ' : U.V.PATEL COLLEGE OF
ENGINEERING...'(1 fields)]
    CollegeName: :     U.V.PATEL COLLEGE OF ENGINEERING
   Guide

    [Document.text[349-394]: ' :    U.V.PATEL COLLEGE OF
ENGINEERING...'(1 fields)]
    CollegeName: :     U.V.PATEL COLLEGE OF ENGINEERING
   Guide

    [Document.text[621-666]: ' :    U.V.PATEL COLLEGE OF
ENGINEERING...'(1 fields)]
    CollegeName: :     U.V.PATEL COLLEGE OF ENGINEERING
   Guide

    [Document.text[873-918]: ' :    U.V.PATEL COLLEGE OF
ENGINEERING...'(1 fields)]
    CollegeName: :     U.V.PATEL COLLEGE OF ENGINEERING
Output view for Guide Name
Output View GuideName:
    [Document.text[116-150]: '   MR. Bhavesh Pateln      Team
Members'(1 fields)]
    Guide:   MR. Bhavesh Patel
   Team Members

   [Document.text[397-418]: '   Mr. Bhavesh P. Patel'(1 fields)]
   Guide:   Mr. Bhavesh P. Patel

   [Document.text[669-680]: '    PROF. V.B.'(1 fields)]
   Guide:   PROF. V.B.

   [Document.text[921-941]: '    A.R. ISRANIn   Team'(1 fields)]
   Guide:   A.R. ISRANI
Output view for Team Members
Output View TeamMembers:
    [Document.text[153-219]: '   Jimit Vyas & Mahavir Solankin
Abs...'(1 fields)]
    members: Jimit Vyas & Mahavir Solanki
   Abstract :   The significance read

    [Document.text[437-471]: '   Vishal A. Patel,Bhavik H. Khamar,'(1
fields)]
    members: Vishal A. Patel,Bhavik H. Khamar,

    [Document.text[704-758]: '   PATEL JAYRAM ,PATEL KETUL ,PATEL
TUS...'(1 fields)]
    members: PATEL JAYRAM ,PATEL KETUL ,PATEL TUSHAR
   Abstract :

    [Document.text[952-1007]: ' HARSHAD PATEL,NITIN NAHAR,SANDEEP
PA...'(1 fields)]
    members: HARSHAD PATEL,NITIN NAHAR,SANDEEP PARMAR
Input CSE Course Page
Output view for Course Details
    CourseId: CS 717
    CourseName: Statistical Relational Learning
    CoursePrerequisite: N/A
    CourseHomepage: Not Available
    CourseContent:
* What is Relational Learning? Need for RL.* Discussion on the
three elements of relational models: (a) logic for representing
types, relations and complexdependencies between them, (b)
uncertainty, and (c) learning and inferencing* Basics of 0-
order and First order logic - includes types of clauses, syntax
and semantics, ....
    CourseReferences: 1.011 Inductive Logic Programming:
Techniques and Applications, N. Lavrac and S. Dzeroski. Ellis
    ProfessorName: G.Ramakrishnan
Thank You
What is annotation?
       Short description of page/document
       Explicit v/s Implicit
       Metadata and not content
       Type of Annotation
       Concise description
       Abbreviation
       Opinion
       Web URL annotation like wiki links


earch” by Dmitriev, Pavel A. and Eiron, Nadav and Fontoura, Marcus and Shekita, Eugene In Proceedings of the 15th internatio
Flow of annotations in search




“Using Annotations in Enterprise Search” by Dmitriev, Pavel A. and Eiron, Nadav and Fontoura, Marcus and
    Shekita, Eugene In Proceedings of the 15th international conference on World Wide Web 2006
Definition of Ontology


‘A formal, explicit specification of a shared conceptualization’
                        Gruber (1993)

  must be machine
   understandable       not private to some individual,
                           but accepted by a group


an abstract model of some phenomenon in the world formed by identifying th
            types of concepts and
         constraints must be clearly
                   defined




                                                                      27
                                                                      27
Processes to create a Domain
Ontology
Ontology acquisition
Automatic extraction of ontological knowledge from base vocabulary
  and domain specific text sources

Merging into one ontology
Refinement and Extension
Evaluation and Assessment




                                                                     28
                                                                     28

Contenu connexe

En vedette (8)

Annotation Ontology (AO)
Annotation Ontology (AO)Annotation Ontology (AO)
Annotation Ontology (AO)
 
Dlf 2011UDFR-a-semantic-registry-for-format-representation-information-v1
Dlf 2011UDFR-a-semantic-registry-for-format-representation-information-v1Dlf 2011UDFR-a-semantic-registry-for-format-representation-information-v1
Dlf 2011UDFR-a-semantic-registry-for-format-representation-information-v1
 
Semantics is not a luxury
Semantics is not a luxurySemantics is not a luxury
Semantics is not a luxury
 
Personal Brand
Personal BrandPersonal Brand
Personal Brand
 
Ontology-based concept mapping in Plant Sciences
Ontology-based concept mapping in Plant SciencesOntology-based concept mapping in Plant Sciences
Ontology-based concept mapping in Plant Sciences
 
Personal Brand
Personal BrandPersonal Brand
Personal Brand
 
Light Intro to the Gene Ontology
Light Intro to the Gene OntologyLight Intro to the Gene Ontology
Light Intro to the Gene Ontology
 
Bird House
Bird HouseBird House
Bird House
 

Similaire à Ontology driven Annotation

The Computer Science Ontology: A Large-Scale Taxonomy of Research Areas
The Computer Science Ontology:  A Large-Scale Taxonomy of Research AreasThe Computer Science Ontology:  A Large-Scale Taxonomy of Research Areas
The Computer Science Ontology: A Large-Scale Taxonomy of Research Areas
Angelo Salatino
 
The Computer Science Ontology: A Large-Scale Taxonomy of Research Areas
The Computer Science Ontology: A Large-Scale Taxonomy of Research AreasThe Computer Science Ontology: A Large-Scale Taxonomy of Research Areas
The Computer Science Ontology: A Large-Scale Taxonomy of Research Areas
Angelo Salatino
 
2_presFriday_ontologydevelopment
2_presFriday_ontologydevelopment2_presFriday_ontologydevelopment
2_presFriday_ontologydevelopment
Pieter Pauwels
 
download
downloaddownload
download
butest
 
download
downloaddownload
download
butest
 
Dr31564567
Dr31564567Dr31564567
Dr31564567
IJMER
 
The Structure of Computer Science Knowledge Network
The Structure of Computer Science Knowledge NetworkThe Structure of Computer Science Knowledge Network
The Structure of Computer Science Knowledge Network
Pham Cuong
 

Similaire à Ontology driven Annotation (20)

The Computer Science Ontology: A Large-Scale Taxonomy of Research Areas
The Computer Science Ontology:  A Large-Scale Taxonomy of Research AreasThe Computer Science Ontology:  A Large-Scale Taxonomy of Research Areas
The Computer Science Ontology: A Large-Scale Taxonomy of Research Areas
 
The Computer Science Ontology: A Large-Scale Taxonomy of Research Areas
The Computer Science Ontology: A Large-Scale Taxonomy of Research AreasThe Computer Science Ontology: A Large-Scale Taxonomy of Research Areas
The Computer Science Ontology: A Large-Scale Taxonomy of Research Areas
 
Exploring Content with Wikipedia
Exploring Content with WikipediaExploring Content with Wikipedia
Exploring Content with Wikipedia
 
Pablo Mendes' Defense: Adaptive Semantic Annotation of Entity and Concept Men...
Pablo Mendes' Defense: Adaptive Semantic Annotation of Entity and Concept Men...Pablo Mendes' Defense: Adaptive Semantic Annotation of Entity and Concept Men...
Pablo Mendes' Defense: Adaptive Semantic Annotation of Entity and Concept Men...
 
Semantic Web, Ontology, and Ontology Learning: Introduction
Semantic Web, Ontology, and Ontology Learning: IntroductionSemantic Web, Ontology, and Ontology Learning: Introduction
Semantic Web, Ontology, and Ontology Learning: Introduction
 
E profiles 1
E profiles 1E profiles 1
E profiles 1
 
Semantic Transforms Using Collaborative Knowledge Bases
Semantic Transforms Using Collaborative Knowledge BasesSemantic Transforms Using Collaborative Knowledge Bases
Semantic Transforms Using Collaborative Knowledge Bases
 
The Rise of Approximate Ontology Reasoning: Is It Mainstream Yet? --- Revisit...
The Rise of Approximate Ontology Reasoning: Is It Mainstream Yet? --- Revisit...The Rise of Approximate Ontology Reasoning: Is It Mainstream Yet? --- Revisit...
The Rise of Approximate Ontology Reasoning: Is It Mainstream Yet? --- Revisit...
 
HyperTED - Searching and browsing through fragments of TED Talks
HyperTED - Searching and browsing through fragments of TED TalksHyperTED - Searching and browsing through fragments of TED Talks
HyperTED - Searching and browsing through fragments of TED Talks
 
Applying machine learning techniques to big data in the scholarly domain
Applying machine learning techniques to big data in the scholarly domainApplying machine learning techniques to big data in the scholarly domain
Applying machine learning techniques to big data in the scholarly domain
 
2_presFriday_ontologydevelopment
2_presFriday_ontologydevelopment2_presFriday_ontologydevelopment
2_presFriday_ontologydevelopment
 
download
downloaddownload
download
 
download
downloaddownload
download
 
Dr31564567
Dr31564567Dr31564567
Dr31564567
 
Applying NLP (natural language processing) to the patent genre
Applying NLP (natural language processing) to the patent genreApplying NLP (natural language processing) to the patent genre
Applying NLP (natural language processing) to the patent genre
 
Meow Hagedorn
Meow HagedornMeow Hagedorn
Meow Hagedorn
 
Materials design using knowledge from millions of journal articles via natura...
Materials design using knowledge from millions of journal articles via natura...Materials design using knowledge from millions of journal articles via natura...
Materials design using knowledge from millions of journal articles via natura...
 
Linked Open Data Visualization
Linked Open Data VisualizationLinked Open Data Visualization
Linked Open Data Visualization
 
The Structure of Computer Science Knowledge Network
The Structure of Computer Science Knowledge NetworkThe Structure of Computer Science Knowledge Network
The Structure of Computer Science Knowledge Network
 
Integrating a Domain Ontology Development Environment and an Ontology Search ...
Integrating a Domain Ontology Development Environment and an Ontology Search ...Integrating a Domain Ontology Development Environment and an Ontology Search ...
Integrating a Domain Ontology Development Environment and an Ontology Search ...
 

Plus de Ashish Kulkarni

Plus de Ashish Kulkarni (6)

Decision tables
Decision tablesDecision tables
Decision tables
 
Learning to Link with Wikipedia
Learning to Link with WikipediaLearning to Link with Wikipedia
Learning to Link with Wikipedia
 
Big data
Big dataBig data
Big data
 
Query recommendation papers
Query recommendation papersQuery recommendation papers
Query recommendation papers
 
Quiz
QuizQuiz
Quiz
 
Debs2011 ARCADE
Debs2011 ARCADEDebs2011 ARCADE
Debs2011 ARCADE
 

Dernier

Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Victor Rentea
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Dernier (20)

EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 

Ontology driven Annotation

  • 3. The Semantic Web vision ”A web of data that can be processed directly and indirectly by machines”
  • 4. What do we need? Annotated documents with Ontology with metadata about canonical references to entities mentioned entities
  • 6. About Wikipedia Large knowledge base with 3.9M article pages in English
  • 7. Automatic Annotation Spotting Disambiguation Heading into the Los Angeles Lakers' Tuesday night tilt with the Golden State Warriors, Kobe Bryant needed 25 points to pass Michael Jordan for the second-most points scored by a player for a single NBA franchise. He got 30. We now have a definitive answer; finally, the debate can end.
  • 8. Existing Wikipedia Annotators Wikify DBPedia Spotlight Wikipedia Miner Zemanta Extractiv Opencalais Wikifier
  • 11. Academic and Technical Ontology, Annotators
  • 12. 1212 Motivating Vision Next-Generation Search will be Information Extraction + Ontology + Inference Object 1 … Albert Einstein was a German-born theoretical physicist … h German Scientists Taught at US Universities? … Object 3 New Jersey is a state in the Northeastern region … Object 2 … Einstein was a guest lecturer at the Institute for Advanced Study in New Jersey …
  • 14. AQL script for Techpedia Project Title create view ProjectName as extract regex /Project Title/ with flags 'CASE_INSENSITIVE' on D.text as title from DetaggedDoc D; create view ProjectTitle as select RightContextTok(P.title,10) as ProjectTitle from ProjectName P; output view ProjectTitle;
  • 15. AQL script for course prerequisite create view PrerequisiteWord as extract regex /(Prerequisitesns*)(.*)/ on D.text return group 1 as prereqWord and group 2 as prereq from DetaggedDoc D; create view prereq as extract P.prereq as match, regex /n/ on P.prereq as boundary from PrerequisiteWord P; create view CoursePrerequisite as extract split using P.boundary retain left split point on P.match as CoursePrerequisite from prereq P limit 1; output view CoursePrerequisite;
  • 16. AQL script for Professor Name create view ProfessorName as (select CombineSpans(F.fname, L.lname) as Pname from FirstName F, LastName L where FollowsTok(F.fname, L.lname,0,0) consolidate on F.fname using 'ContainedWithin' order by GetText(F.fname) limit 1) union all (select CombineSpans(F.Nameinitial, L.lname) as Pname from FNameInitial F, LastName L where FollowsTok(F.Nameinitial, L.lname,0,0) consolidate on F.Nameinitial using 'ContainedWithin' order by GetText(F.Nameinitial) limit 1); 16
  • 18. Output view for Project Title Output View ProjectTitle: [Document.text[17-73]: ' : DESIGN & ANALYSIS OF PRESSURE VES...'(1 fields)] ProjectTitle: : DESIGN & ANALYSIS OF PRESSURE VESSEL College : U [Document.text[276-349]: ' : Design and Analysis of Electrical...'(1 fields)] ProjectTitle: : Design and Analysis of Electrical Overhead Traveling Crane College [Document.text[566-623]: ' : Blungers: For Slip and Glaze Prep...'(1 fields)] ProjectTitle: : Blungers: For Slip and Glaze Preparation College : [Document.text[833-880]: ' : DESIGN OF STEAM CONDENSERn Col...'(1 fields)] ProjectTitle: : DESIGN OF STEAM CONDENSER
  • 19. Output view for College Name Output View CollegeName: [Document.text[68-113]: ' : U.V.PATEL COLLEGE OF ENGINEERING...'(1 fields)] CollegeName: : U.V.PATEL COLLEGE OF ENGINEERING Guide [Document.text[349-394]: ' : U.V.PATEL COLLEGE OF ENGINEERING...'(1 fields)] CollegeName: : U.V.PATEL COLLEGE OF ENGINEERING Guide [Document.text[621-666]: ' : U.V.PATEL COLLEGE OF ENGINEERING...'(1 fields)] CollegeName: : U.V.PATEL COLLEGE OF ENGINEERING Guide [Document.text[873-918]: ' : U.V.PATEL COLLEGE OF ENGINEERING...'(1 fields)] CollegeName: : U.V.PATEL COLLEGE OF ENGINEERING
  • 20. Output view for Guide Name Output View GuideName: [Document.text[116-150]: ' MR. Bhavesh Pateln Team Members'(1 fields)] Guide: MR. Bhavesh Patel Team Members [Document.text[397-418]: ' Mr. Bhavesh P. Patel'(1 fields)] Guide: Mr. Bhavesh P. Patel [Document.text[669-680]: ' PROF. V.B.'(1 fields)] Guide: PROF. V.B. [Document.text[921-941]: ' A.R. ISRANIn Team'(1 fields)] Guide: A.R. ISRANI
  • 21. Output view for Team Members Output View TeamMembers: [Document.text[153-219]: ' Jimit Vyas & Mahavir Solankin Abs...'(1 fields)] members: Jimit Vyas & Mahavir Solanki Abstract : The significance read [Document.text[437-471]: ' Vishal A. Patel,Bhavik H. Khamar,'(1 fields)] members: Vishal A. Patel,Bhavik H. Khamar, [Document.text[704-758]: ' PATEL JAYRAM ,PATEL KETUL ,PATEL TUS...'(1 fields)] members: PATEL JAYRAM ,PATEL KETUL ,PATEL TUSHAR Abstract : [Document.text[952-1007]: ' HARSHAD PATEL,NITIN NAHAR,SANDEEP PA...'(1 fields)] members: HARSHAD PATEL,NITIN NAHAR,SANDEEP PARMAR
  • 23. Output view for Course Details CourseId: CS 717 CourseName: Statistical Relational Learning CoursePrerequisite: N/A CourseHomepage: Not Available CourseContent: * What is Relational Learning? Need for RL.* Discussion on the three elements of relational models: (a) logic for representing types, relations and complexdependencies between them, (b) uncertainty, and (c) learning and inferencing* Basics of 0- order and First order logic - includes types of clauses, syntax and semantics, .... CourseReferences: 1.011 Inductive Logic Programming: Techniques and Applications, N. Lavrac and S. Dzeroski. Ellis ProfessorName: G.Ramakrishnan
  • 25. What is annotation? Short description of page/document Explicit v/s Implicit Metadata and not content Type of Annotation Concise description Abbreviation Opinion Web URL annotation like wiki links earch” by Dmitriev, Pavel A. and Eiron, Nadav and Fontoura, Marcus and Shekita, Eugene In Proceedings of the 15th internatio
  • 26. Flow of annotations in search “Using Annotations in Enterprise Search” by Dmitriev, Pavel A. and Eiron, Nadav and Fontoura, Marcus and Shekita, Eugene In Proceedings of the 15th international conference on World Wide Web 2006
  • 27. Definition of Ontology ‘A formal, explicit specification of a shared conceptualization’ Gruber (1993) must be machine understandable not private to some individual, but accepted by a group an abstract model of some phenomenon in the world formed by identifying th types of concepts and constraints must be clearly defined 27 27
  • 28. Processes to create a Domain Ontology Ontology acquisition Automatic extraction of ontological knowledge from base vocabulary and domain specific text sources Merging into one ontology Refinement and Extension Evaluation and Assessment 28 28

Notes de l'éditeur

  1. Ontologies today are available in many different forms: as artifacts of a tedious knowledge-engineering process, as information that was extracted automatically from informal electronic sources, or as simple “light-weight” ontologies