Readings: Difference between revisions
No edit summary |
No edit summary |
||
Line 32: | Line 32: | ||
* Chapter 1 Introduction, section 2.1 Models, and Appendix A Background in Hogan et al. | * Chapter 1 Introduction, section 2.1 Models, and Appendix A Background in Hogan et al. | ||
* [http://www.youtube.com/watch?v=HeUrEh-nqtU Tim Berners-Lee talks about the semantic web] | * [http://www.youtube.com/watch?v=HeUrEh-nqtU Tim Berners-Lee talks about the semantic web] | ||
* [http://rdflib.readthedocs.io/ RDFlib 7. | * [http://rdflib.readthedocs.io/ RDFlib 7.1.3 documentation], the following pages: | ||
** The main page | ** The main page | ||
** Getting started with RDFLib | ** Getting started with RDFLib | ||
Line 79: | Line 79: | ||
* [https://issemantic.net/rdf-visualizer RDF Visualizer] for drawing RDF graphs | * [https://issemantic.net/rdf-visualizer RDF Visualizer] for drawing RDF graphs | ||
* [https://www.w3.org/TR/rdf11-concepts/ W3C's RDF 1.1 Concepts and Abstract Syntax] | * [https://www.w3.org/TR/rdf11-concepts/ W3C's RDF 1.1 Concepts and Abstract Syntax] | ||
* An overview page of some other [https://www.w3.org/2018/09/rdf-data-viz/ RDF Data Visualization tools] | |||
* Pages 25-28, 92-100, 125-128, and 164-167 in Blumauer & Nagy (suggested) | * Pages 25-28, 92-100, 125-128, and 164-167 in Blumauer & Nagy (suggested) | ||
--> | --> | ||
Line 93: | Line 93: | ||
* Section 2.2 Queries in Hogan et al. | * Section 2.2 Queries in Hogan et al. | ||
* [https://graphdb.ontotext.com/documentation/10.8/sparql.html The SPARQL query language — GraphDB 10.8 documentation] | * [https://graphdb.ontotext.com/documentation/10.8/sparql.html The SPARQL query language — GraphDB 10.8 documentation] | ||
* [https://rdflib.readthedocs.io/ rdflib 7.1.3] materials: | |||
* [https://rdflib.readthedocs.io/ rdflib 7. | |||
** [https://rdflib.readthedocs.io/en/stable/intro_to_sparql.html Querying with SPARQL] | ** [https://rdflib.readthedocs.io/en/stable/intro_to_sparql.html Querying with SPARQL] | ||
* The slides from the lecture (available under [https://mitt.uib.no/courses/51914/files/folder/Slides Files/Slides in http://mitt.uib.no]). | * The slides from the lecture (available under [https://mitt.uib.no/courses/51914/files/folder/Slides Files/Slides in http://mitt.uib.no]). | ||
Line 106: | Line 105: | ||
* [https://en.wikibooks.org/wiki/SPARQL/Expressions_and_Functions SPARQL Expressions and Functions] | * [https://en.wikibooks.org/wiki/SPARQL/Expressions_and_Functions SPARQL Expressions and Functions] | ||
<!-- * The [[:File:kg4news-dump-20230130.txt | Knowledge Graphs for the News]] example used in the lecture. (Remember to save with the correct ''.ttl'' extension.) --> | <!-- * The [[:File:kg4news-dump-20230130.txt | Knowledge Graphs for the News]] example used in the lecture. (Remember to save with the correct ''.ttl'' extension.) --> | ||
==Lecture 3: Creating KGs== | |||
Themes: | |||
* Extracting KGs from text | |||
* Extracting from marked-up sources | |||
* Extracting from SQL databases and JSON | |||
Mandatory readings: | |||
* Chapter 6 Creation and Enrichment, sections 6.1-6.4, in Hogan et al. | |||
Useful materials: | |||
* [https://www.dbpedia-spotlight.org/ DBpedia Spotlight] | |||
* [https://graphdb.ontotext.com/documentation/10.0/virtualization.html Virtualization, GraphDB 10.0 documentation] | |||
* [https://json-ld.org/ JSON for Linking Data] | |||
<!-- | <!-- |
Revision as of 21:38, 9 February 2025
Textbooks
Main course book (the whole book is mandatory reading):
- Hogan, A. et al. (2021). Knowledge Graphs. Springer. Synthesis Lectures on Data, Semantics, and Knowledge 22, 1–237, DOI: 10.2200/S01125ED1V01Y202109DSK022, Springer. https://kgbook.org/
Supplementary books (not mandatory):
- Dean Allemang, James Hendler & Fabien Gandon (2020). Semantic Web for the Working Ontologist, Effective Modeling for Linked Data, RDFS and OWL (Third Edition). ISBN: 9781450376143, PDF ISBN: 9781450376150, Hardcover ISBN: 9781450376174, DOI: 10.1145/3382097.
- Andreas Blumauer and Helmut Nagy (2020). The Knowledge Graph Cookbook - Recipes that Work. mono/monochrom. ISBN-10: 3902796707, ISBN-13: 978-3902796707.
Other materials
In addition, the materials listed below for each lecture are either mandatory or suggested reading. More materials will be added to each lecture in the coming weeks.
The labs, lectures and lectures notes are also part of the curriculum.
Make sure you download the electronic resources to your own computer in good time before the exam. This is your own responsibility. That way you are safe if a site becomes unavailable or somehow damaged the last few days before the exam.
Note: to download some of the papers, you may need to be inside UiB's network. Either use a computer directly on the UiB network or connect to your UiB account through VPN.
Lectures (in progress)
Below are the mandatory and suggested readings for each lecture. All the textbook chapters in Hogan et al. ("Knowledge Graphs") are mandatory, whereas the chapters in Allemang, Hendler & Gandon ("Semantic Web") are suggested.
Lecture 1: Introduction to KGs
Themes:
- Introduction to Knowledge Graphs
- Organisation of the course
Mandatory readings:
- Chapter 1 Introduction, section 2.1 Models, and Appendix A Background in Hogan et al.
- Tim Berners-Lee talks about the semantic web
- RDFlib 7.1.3 documentation, the following pages:
- The main page
- Getting started with RDFLib
- Loading and saving RDF
- Creating RDF triples
- Navigating Graphs
- Utilities and convenience functions
- RDF terms in rdflib
- Namespaces and Bindings
- The slides from the lecture (available under Files/Slides in http://mitt.uib.no).
Useful materials:
- Chapters 1-2 in Allemang, Hendler & Gandon (3rd edition)
- Important knowledge graphs (which we will look more at later):
- Wikidata (https://www.wikidata.org/)
Lecture 2: Querying and updating KGs (SPARQL)
Themes:
- SPARQL queries
- SPARQL Update
- Programming SPARQL and SPARQL Update in Python
Mandatory readings (tentative):
- Section 2.2 Queries in Hogan et al.
- The SPARQL query language — GraphDB 10.8 documentation
- rdflib 7.1.3 materials:
- The slides from the lecture (available under Files/Slides in http://mitt.uib.no).
Useful materials:
- Chapter 6 in Allemang, Hendler & Gandon (3rd edition)
- SPARQL 1.1 Query Language
- SPARQL 1.1 Update Language
- SPARQL 1.1 Cheat Sheet
- SPARQL Expressions and Functions
Lecture 3: Creating KGs
Themes:
- Extracting KGs from text
- Extracting from marked-up sources
- Extracting from SQL databases and JSON
Mandatory readings:
- Chapter 6 Creation and Enrichment, sections 6.1-6.4, in Hogan et al.
Useful materials: