Leveraging Recommendations for Knowledge Curation

Total Page:16

File Type:pdf, Size:1020Kb

Leveraging Recommendations for Knowledge Curation Dissertation The SnoopyConcept: Leveraging Recommendations for Knowledge Curation Wolfgang Gassler submitted to the Faculty of Mathematics, Computer Science and Physics of the University of Innsbruck in partial fulfillment of the requirements for the degree of \Doktor der technischen Wissenschaften" Advisor: Univ.-Prof. Dr. G¨unther Specht Innsbruck, August 11, 2017 Abstract In recent years, online knowledge curation on the internet has been lifted to a new level|online mass-collaboration. Knowledge bases such as Wikipedia and Wikidata are curated by huge communities and produce a vast amount of knowledge. Therefore, the prevailing challenge is to maintain a homogeneous structure in those knowledge bases to ensure efficient search capabilities, allow automated reasoning, and provide semantically linkable knowledge for the Linked Open Data cloud. In this thesis we propose the SnoopyConcept which leverages recommender systems to support the user to homogenize knowledge already during the insertion process. The recommendations furthermore aim at increasing the quality and quantity of stored knowledge in collaborative information systems. In addition, we implement the universal SnoopyConcept in several domains and systems to evaluate and assess the recommender system based approach. Acknowledgements Eva, Sarah, and Robert, thanks for 10 incredible years; we shared almost everything. We enjoyed the good moments, and handled the bad. Robert, you were not only my flat mate, you also challenged me every day, by sharing your deep technical knowledge. Thanks for all the fun weekends in the office working on world-shaking algorithms and software. And thanks for being such a good friend all the time. Sarah, you introduced me to the beautiful world of spontaneity, taught me how to be happy without being in control of everything, and pushed me out of my comfort zone to make bold steps. I never would have been at this point without you; thank you a lot for everything. Eva, you have accompanied me through the world of academia for more than 15 years. We've worked on the \Weltfrieden", survived rainy days, and have been riding the waves. Thanks for listening, supporting, and coaching me everywhere and anytime, and of course, being my best friend. Thanks to all the DBIS members: Niko, Doris, Rainer, Gabi, Sylvia, Peter, Michael, Matthias, and Lukas. Special thanks goes to: Michi, Martin, Seppi, Skifahrlehrer Schorsch, Hansi, and Dominic for all the fun we had together. Thanks to my supporting friends: Herbert, Ing¨a,Stefanie, Jakob, |Zugi|, and Niki who never got tired of nudging me about my thesis | your relentless persistence paid off. I also want to thank my advisor G¨unther Specht for giving me the opportunity of writing this thesis, all the resources, and his support the whole time, even after I left DBIS after eight instructive years. A special \thank you" goes to my whole family, especially my parents who have never forced me to do anything and have always supported me, no matter how ridiculous my idea was. Thanks to all the amazing members and students at the Institute of Computer Science Innsbruck who taught me a lot, even outside the world of science. This work was only possible due to the huge amount of available Open Source tools. Only Open Source tools were used to build and evaluate the SnoopyConcept and write all related publications and this thesis. Thanks a lot to all the Open Source contributors. This work was partially funded by the Austrian Research Promotion Agency (FFG) and the Nachwuchsf¨orderungof the University of Innsbruck. Eidesstattliche Erkl¨arung Ich erkl¨arehiermit an Eides statt durch meine eigenh¨andigeUnterschrift, dass ich die vorliegende Arbeit selbst¨andigverfasst und keine anderen als die angegebenen Quellen und Hilfsmittel verwendet habe. Alle Stellen, die w¨ortlich oder inhaltlich den angegebenen Quellen entnommen wurden, sind als solche kenntlich gemacht. Die vorliegende Arbeit wurde bisher in gleicher oder ¨ahnlicher Form noch nicht als Magister-/Master-/Diplomarbeit/Dissertation eingereicht. Datum Wolfgang Gassler The beautiful thing about learning is nobody can take it away from you. B.B. King, 1997 Contents AbstractI Acknowledgements III 1 Introduction1 1.1 Aims and Research Questions . .3 1.2 Contributions and Published Work . .3 1.3 Thesis Outline . .7 2 Background & Related Work9 2.1 Information Representation & Structure . .9 2.1.1 Strictly Structured Information Systems . 10 2.1.2 Unstructured Information Systems|Wikis . 10 2.1.3 Semi-structured Data . 11 2.2 Wiki Systems and Knowledge Curation . 12 2.2.1 Wikipedia and its Structural Limitations . 13 2.2.2 Wiki Enhancements . 14 2.2.3 Semantics, Wikidata & Knowledge Bases . 16 2.3 Recommender Systems . 20 2.3.1 Introduction to Recommender Systems . 21 2.3.2 Classification . 22 2.3.3 Collaborative Filtering . 22 2.3.4 Content-based Recommender Systems . 26 2.3.5 Knowledge-based Recommender Systems . 27 2.3.6 Context-aware Recommender Systems . 28 2.3.7 Hybrid Recommender Systems . 29 2.3.8 Summary . 30 Contents 2.4 Recommender Systems in Information Systems . 30 2.4.1 Synonyms and Search Capabilities . 31 2.4.2 Guided Refinement and Enrichment . 33 2.4.3 Guidance during the Insertion . 37 2.5 Database Models . 39 2.5.1 Relational Database Systems . 39 2.5.2 NoSQL: Document-oriented Stores . 40 2.5.3 NoSQL: Graph Stores . 42 2.6 Summary . 44 3 The SnoopyConcept 45 3.1 Key Idea: Incorporate the User . 45 3.2 Data Model . 49 3.3 Recommendations . 50 3.3.1 Recommending Structure . 50 3.3.2 Avoiding Synonyms by Recommendations . 52 3.3.3 Semantic Refinement and Value Recommendations . 53 3.3.4 Validation and Recommendations of Data Types . 54 3.3.5 Ranking . 54 3.4 Recommendation Algorithm . 55 3.4.1 Basic Recommendation Algorithm . 56 3.4.2 Ranking Algorithms . 61 3.4.3 Context-Sensitive Optimization . 63 3.4.4 Refinement Recommendations . 65 3.5 Personalizing the SnoopyConcept . 67 3.5.1 User Modeling . 67 3.5.2 Algorithm Extension by User Modeling . 68 3.6 Tackling the Cold-Start Problem . 71 3.7 Summary . 76 4 SnoopyConcept Storage Models and Recommendation Implemen- tation 77 4.1 Relational Database Systems . 78 4.1.1 RDF Storage Models . 78 4.1.2 RDF Storage Index Structures . 80 4.1.3 SnoopyConcept Relational Storage Model . 82 4.1.4 Recommendation Computation . 84 4.1.5 Rule Based Recommendation . 85 4.2 NoSQL: Document-oriented Stores . 88 4.2.1 Storage Model . 88 4.2.2 Recommendation computation . 89 4.2.3 Distribution and Sharding . 91 4.3 NoSQL: Graph Stores . 93 4.3.1 Storage Model . 94 X Contents 4.3.2 Graph-based Rule Generation . 95 4.3.3 Graph-based Recommendation Algorithm . 96 4.4 Storage Model Evaluation . 98 4.5 Storage Models Summary . 102 5 SnoopyConcept Showcases 105 5.1 First Reference Implementation: SnoopyDB . 105 5.2 SnoopyTagging . 106 5.2.1 Structured Tags . 107 5.2.2 Recommendations based on the SnoopyConcept . 107 5.3 hash5 . 109 5.3.1 Main Concepts . 109 5.3.2 Recommendations based on the SnoopyConcept . 111 5.4 Wikidata . 113 5.4.1 Wikidata Property Suggestor . 114 5.4.2 Incorporating the SnoopyConcept Algorithm . 115 5.5 Summary . 116 6 Evaluation 117 6.1 Recommendation Algorithms . 117 6.1.1 Offline Evaluation . 118 6.1.2 Wikidata Property Suggestor Evaluation . 129 6.1.3 Online Evaluation/User Experiment . 134 6.2 User Modeling Evaluation . 137 6.3 Evaluation Summary . 140 7 Conclusion 141 Bibliography 145 XI CHAPTER 1 Introduction Scientia potentia est 1 has emphasized the importance of knowledge for cen- turies. Especially since the beginning of the information age [37], the economy has been based on information computerization and thus, the access to knowl- edge has become crucial. Information systems or knowledge bases are used to store knowledge and provide users access to knowledge. In the past, infor- mation systems were solely used by specialists and usually were maintained by a small group of people. This has drastically changed with the rise of the internet and the web 2.0 movement which has lifted curation of knowledge to a new level|online mass-collaboration. In mass-collaborative information system, such as Wikipedia2, thousands of people with different backgrounds collaborate to curate knowledge. Those platforms usually do not restrict the user to use a predefined structure to store and structure information. The shortcoming of this structure-less paradigm is its limited search capability. Consider a complex query such as \Which Austrian cities have more than 10.000 inhabitants and have a female mayor who has a doctoral degree?". It is not possible to answer such a query through full-text search which is provided by most wiki-systems. Weikum et al. [171] 1Knowledge is power, https://en.wikipedia.org/w/index.php?title=Scientia_ potentia_est&oldid=784909874 (revision 10 June 2017 ) 2http://www.wikipedia.org, accessed 2017-07-17 Chapter 1 Introduction observed that modern information systems have to be able to support both structured and unstructured data to combine the advantages of both worlds and to be able to answer such questions. One possible solution is the usage of semi-structured information systems (cf. Section 2.1.3) which allows for defining a structure but do not require a predefined schema. For example tagging systems, fact based knowledge bases, document-oriented databases or XML files provide the possibility to store any arbitrary data in a structured way without adhering to a predefined schema. The flexibility of the previously described schemaless semi-structured storage in combination with collaborative data curation leads to a massive problem. Every single user has her own view of structuring knowledge and information and uses her own terminology. Furnas et al.
Recommended publications
  • Building a Visual Editor for Wikipedia
    Building a Visual Editor for Wikipedia Trevor Parscal and Roan Kattouw Wikimania D.C. 2012 Trevor Parscal Roan Kattouw Rob Moen Lead Designer and Engineer Data Model Engineer User Interface Engineer Wikimedia Wikimedia Wikimedia Inez Korczynski Christian Williams James Forrester Edit Surface Engineer Edit Surface Engineer Product Analyst Wikia Wikia Wikimedia The People Wikimania D.C. 2012 Parsoid Team Gabriel Wicke Subbu Sastry Lead Parser Engineer Parser Engineer Wikimedia Wikimedia The People Wikimania D.C. 2012 The Complexity Problem Wikimania D.C. 2012 Active Editors 20k 0 2001 2007 Today Growth Stagnation The Complexity Problem Wikimania D.C. 2012 just messing around Testing testing 123... The Complexity Problem Wikimania D.C. 2012 The Review Problem Wikimania D.C. 2012 Balancing the ecosystem Difficulty Editing Reviewing The Review Problem Wikimania D.C. 2012 Balancing the ecosystem Difficulty Editing Reviewing The Review Problem Wikimania D.C. 2012 Balancing the ecosystem Difficulty Editing Reviewing The Review Problem Wikimania D.C. 2012 Balancing the ecosystem Difficulty Editing Reviewing The Review Problem Wikimania D.C. 2012 Wikitext enthusiasts CC-BY-SA-3.0, http://commons.wikimedia.org/wiki/File:Usfa-heston.gif The Expert Problem Wikimania D.C. 2012 Exit strategy 100% Preference for Wikitext Capabilities of visual tools 0% The Expert Problem Wikimania D.C. 2012 To what extent? CC-BY-SA-3.0, http://commons.wikimedia.org/wiki/File:TriMet_MAX_Green_Line_Train_on_Portland_Transit_Mall.jpg The Expert Problem Wikimania D.C. 2012 To what extent? CC-BY-SA-3.0, http://commons.wikimedia.org/wiki/File:TriMet_MAX_Green_Line_Train_on_Portland_Transit_Mall.jpgCC-BY-SA-3.0, http://commons.wikimedia.org/wiki/File:TriMet_1990_Gillig_bus_carrying_bike.jpg The Expert Problem Wikimania D.C.
    [Show full text]
  • Collaborative Integration, Publishing and Analysis of Distributed Scholarly Metadata
    Collaborative Integration, Publishing and Analysis of Distributed Scholarly Metadata Dissertation zur Erlangung des Doktorgrades (Dr. rer. nat.) der Mathematisch-Naturwissenschaftlichen Fakultät der Rheinischen Friedrich-Wilhelms-Universität Bonn vorgelegt von Sahar Vahdati aus dem Tabriz, Iran Bonn 2019 Angefertigt mit Genehmigung der Mathematisch-Naturwissenschaftlichen Fakultät der Rheinischen Friedrich-Wilhelms-Universität Bonn 1. Gutachter: Prof. Dr. Sören Auer 2. Gutachter: Prof. Dr. Rainer Manthey Tag der Promotion: 17.01.2019 Erscheinungsjahr: 2019 Abstract Research is becoming increasingly digital, interdisciplinary, and data-driven and affects different en- vironments in addition to academia, such as industry, and government. Research output representation, publication, mining, analysis, and visualization are taken to a new level, driven by the increased use of Web standards and digital scholarly communication initiatives. The number of scientific publications produced by new players and the increasing digital availability of scholarly artifacts, and associated metadata are other drivers of the substantial growth in scholarly communication. The heterogeneity of scholarly artifacts and their metadata spread over different Web data sources poses a major challenge for researchers with regard to search, retrieval and exploration. For example, it has become difficult to keep track of relevant scientific results, to stay up-to-date with new scientific events and running projects, as well as to find potential future collaborators. Thus, assisting researchers with a broader integration, management, and analysis of scholarly metadata can lead to new opportunities in research and to new ways of conducting research. The data integration problem has been extensively addressed by communities in the Database, Artificial Intelligence and Semantic Web fields. However, a share of the interoperability issues are domain specific and new challenges with regard to schema, structure, or domain, arise in the context of scholarly metadata integration.
    [Show full text]
  • Working-With-Mediawiki-Yaron-Koren.Pdf
    Working with MediaWiki Yaron Koren 2 Working with MediaWiki by Yaron Koren Published by WikiWorks Press. Copyright ©2012 by Yaron Koren, except where otherwise noted. Chapter 17, “Semantic Forms”, includes significant content from the Semantic Forms homepage (https://www. mediawiki.org/wiki/Extension:Semantic_Forms), available under the Creative Commons BY-SA 3.0 license. All rights reserved. Library of Congress Control Number: 2012952489 ISBN: 978-0615720302 First edition, second printing: 2014 Ordering information for this book can be found at: http://workingwithmediawiki.com All printing of this book is handled by CreateSpace (https://createspace.com), a subsidiary of Amazon.com. Cover design by Grace Cheong (http://gracecheong.com). Contents 1 About MediaWiki 1 History of MediaWiki . 1 Community and support . 3 Available hosts . 4 2 Setting up MediaWiki 7 The MediaWiki environment . 7 Download . 7 Installing . 8 Setting the logo . 8 Changing the URL structure . 9 Updating MediaWiki . 9 3 Editing in MediaWiki 11 Tabs........................................................... 11 Creating and editing pages . 12 Page history . 14 Page diffs . 15 Undoing . 16 Blocking and rollbacks . 17 Deleting revisions . 17 Moving pages . 18 Deleting pages . 19 Edit conflicts . 20 4 MediaWiki syntax 21 Wikitext . 21 Interwiki links . 26 Including HTML . 26 Templates . 27 3 4 Contents Parser and tag functions . 30 Variables . 33 Behavior switches . 33 5 Content organization 35 Categories . 35 Namespaces . 38 Redirects . 41 Subpages and super-pages . 42 Special pages . 43 6 Communication 45 Talk pages . 45 LiquidThreads . 47 Echo & Flow . 48 Handling reader comments . 48 Chat........................................................... 49 Emailing users . 49 7 Images and files 51 Uploading . 51 Displaying images . 55 Image galleries .
    [Show full text]
  • Editing Wikipedia: a Guide to Improving Content on the Online Encyclopedia
    wikipedia globe vector [no layers] Editing Wikipedia: A guide to improving content on the online encyclopedia Wikimedia Foundation 1 Imagine a world in which every single human wikipedia globebeing vector [no layers] can freely share in the sum of all knowledge. That’s our commitment. This is the vision for Wikipedia and the other Wikimedia projects, which volunteers from around the world have been building since 2001. Bringing together the sum of all human knowledge requires the knowledge of many humans — including yours! What you can learn Shortcuts This guide will walk you through Want to see up-to-date statistics about how to contribute to Wikipedia, so Wikipedia? Type WP:STATS into the the knowledge you have can be freely search bar as pictured here. shared with others. You will find: • What Wikipedia is and how it works • How to navigate Wikipedia The text WP:STATS is what’s known • How you can contribute to on Wikipedia as a shortcut. You can Wikipedia and why you should type shortcuts like this into the search • Important rules that keep Wikipedia bar to pull up specific pages. reliable In this brochure, we designate shortcuts • How to edit Wikipedia with the as | shortcut WP:STATS . VisualEditor and using wiki markup • A step-by-step guide to adding content • Etiquette for interacting with other contributors 2 What is Wikipedia? Wikipedia — the free encyclopedia that anyone can edit — is one of the largest collaborative projects in history. With millions of articles and in hundreds of languages, Wikipedia is read by hundreds of millions of people on a regular basis.
    [Show full text]
  • Wikimedia Free Videos Download
    wikimedia free videos download Celebra los 20 años de Wikipedia y las personas que lo hacen posible → In this time of uncertainty, our enduring commitment is to provide reliable and neutral information for the world. The nonprofit Wikimedia Foundation provides the essential infrastructure for free knowledge. We host Wikipedia, the free online encyclopedia, created, edited, and verified by volunteers around the world, as well as many other vital community projects. All of which is made possible thanks to donations from individuals like you. We welcome anyone who shares our vision to join us in collecting and sharing knowledge that fully represents human diversity. (中文 (繁体中文) · Français (France) · Русский (Россия) · Español (España) · Deutsch (Deutschland · (اﻟﻌﺮﺑﯿﺔ (اﻟﻌﺎﻟﻢ · English 1 Wikimedia projects belong to everyone. You made it. It is yours to use. For free. That means you can use it, adapt it, or share what you find on Wikimedia sites. Just do not write your own bio, or copy/paste it into your homework. 2 We respect your data and privacy. We do not sell your email address or any of your personal information to third parties. More information about our privacy practices are available at the Wikimedia Foundation privacy policy, donor privacy policy, and data retention guidelines. 3 People like you keep Wikipedia accurate. Readers verify the facts. Articles are collaboratively created and edited by a community of volunteers using reliable sources, so no single person or company owns a Wikipedia article. The Wikimedia Foundation does not write or edit, but you and everyone you know can help. 4 Not all wikis are Wikimedia.
    [Show full text]
  • Wikipedia @ 20
    Wikipedia @ 20 Wikipedia @ 20 Stories of an Incomplete Revolution Edited by Joseph Reagle and Jackie Koerner The MIT Press Cambridge, Massachusetts London, England © 2020 Massachusetts Institute of Technology This work is subject to a Creative Commons CC BY- NC 4.0 license. Subject to such license, all rights are reserved. The open access edition of this book was made possible by generous funding from Knowledge Unlatched, Northeastern University Communication Studies Department, and Wikimedia Foundation. This book was set in Stone Serif and Stone Sans by Westchester Publishing Ser vices. Library of Congress Cataloging-in-Publication Data Names: Reagle, Joseph, editor. | Koerner, Jackie, editor. Title: Wikipedia @ 20 : stories of an incomplete revolution / edited by Joseph M. Reagle and Jackie Koerner. Other titles: Wikipedia at 20 Description: Cambridge, Massachusetts : The MIT Press, [2020] | Includes bibliographical references and index. Identifiers: LCCN 2020000804 | ISBN 9780262538176 (paperback) Subjects: LCSH: Wikipedia--History. Classification: LCC AE100 .W54 2020 | DDC 030--dc23 LC record available at https://lccn.loc.gov/2020000804 Contents Preface ix Introduction: Connections 1 Joseph Reagle and Jackie Koerner I Hindsight 1 The Many (Reported) Deaths of Wikipedia 9 Joseph Reagle 2 From Anarchy to Wikiality, Glaring Bias to Good Cop: Press Coverage of Wikipedia’s First Two Decades 21 Omer Benjakob and Stephen Harrison 3 From Utopia to Practice and Back 43 Yochai Benkler 4 An Encyclopedia with Breaking News 55 Brian Keegan 5 Paid with Interest: COI Editing and Its Discontents 71 William Beutler II Connection 6 Wikipedia and Libraries 89 Phoebe Ayers 7 Three Links: Be Bold, Assume Good Faith, and There Are No Firm Rules 107 Rebecca Thorndike- Breeze, Cecelia A.
    [Show full text]
  • Guide 4: Navigating the Wikipedia Interface
    Editing interfaces Guide 4: There are two different editing interfaces – Navigating wikitext and the visual editor. Each has its advantages and disadvantages and it is easy the Wikipedia to shift between them. Interface New users who are not familiar with coding are likely to find the visual editor easier to use, particularly when adding Wikipedia interfaces can appear citations and references. complicated at first, but don’t worry, you • Wikitext editor will get the hang of it quickly. This is the standard Wikipedia draft page Wikipedia provides a step-by-step tutorial and editing interface. It requires you to and there is a large amount of additional manually insert formatting commands, such material available to guide you through. as the heading hierarchy, formatted lists and tables, using wikitext. This guide provides a condensed overview, with links to further detailed information. • Visual editor Further reading and links This alternative editor interface is a ’visual‘ or : online rich-text editor that allows you to write • Wikipedia: Tutorial an article as it will appear on Wikipedia. https://en.wikipedia.org/wiki/Wikipedia:Tutorial • Wikipedia: Cheatsheet 1. Using wikitext https://en.wikipedia.org/wiki/Help:Cheatsheet Wikitext (also known as wiki markup or • Visual Editor: User Guide wikicode) is the syntax and keywords used https://www.mediawiki.org/wiki/ to format a page. Help:VisualEditor/User_guide The Wikipedia cheatsheet explains how to • Wikipedia Article Wizard access this, outlines the commands used, https://en.wikipedia.org/wiki/ how these will appear in the final page, and Wikipedia:Article_wizard how to save and edit. You can preview the formatting, citations • Wikipedia: Inline citation/examples and inserted content of your draft article https://en.wikipedia.org/wiki/ by clicking ‘show preview’ at the bottom of Wikipedia:Inline_citation/examples the draft page.
    [Show full text]
  • A Taxonomy of Knowledge Gaps for Wikimedia Projects (Second Draft)
    A Taxonomy of Knowledge Gaps for Wikimedia Projects (Second Draft) MIRIAM REDI, Wikimedia Foundation MARTIN GERLACH, Wikimedia Foundation ISAAC JOHNSON, Wikimedia Foundation JONATHAN MORGAN, Wikimedia Foundation LEILA ZIA, Wikimedia Foundation arXiv:2008.12314v2 [cs.CY] 29 Jan 2021 2 Miriam Redi, Martin Gerlach, Isaac Johnson, Jonathan Morgan, and Leila Zia EXECUTIVE SUMMARY In January 2019, prompted by the Wikimedia Movement’s 2030 strategic direction [108], the Research team at the Wikimedia Foundation1 identified the need to develop a knowledge gaps index—a composite index to support the decision makers across the Wikimedia movement by providing: a framework to encourage structured and targeted brainstorming discussions; data on the state of the knowledge gaps across the Wikimedia projects that can inform decision making and assist with measuring the long term impact of large scale initiatives in the Movement. After its first release in July 2020, the Research team has developed the second complete draft of a taxonomy of knowledge gaps for the Wikimedia projects, as the first step towards building the knowledge gap index. We studied more than 250 references by scholars, researchers, practi- tioners, community members and affiliates—exposing evidence of knowledge gaps in readership, contributorship, and content of Wikimedia projects. We elaborated the findings and compiled the taxonomy of knowledge gaps in this paper, where we describe, group and classify knowledge gaps into a structured framework. The taxonomy that you will learn more about in the rest of this work will serve as a basis to operationalize and quantify knowledge equity, one of the two 2030 strategic directions, through the knowledge gaps index.
    [Show full text]
  • Using NLP Techniques to Enhance Content Discoverability and Reusability for Adaptive Systems
    Using NLP Techniques to Enhance Content Discoverability and Reusability for Adaptive Systems A thesis submitted to the University of Dublin, Trinity College in fulfilment of the requirements of the degree of Doctor of Philosophy Mostafa Bayomi Knowledge and Data Engineering Group (KDEG) School of Computer Science and Statistics Trinity College, Dublin Ireland Supervised by Prof. Séamus Lawless 2019 Declaration I declare that this thesis has not been submitted as an exercise for a degree at this or any other university and it is entirely my own work. I agree to deposit this thesis in the University’s open access institutional repository or allow the library to do so on my behalf, subject to Irish Copyright Legislation and Trin- ity College Library conditions of use and acknowledgement. Signature ___________________________ Date ___________________ Mostafa Bayomi ii Permission to lend or copy I, the undersigned, agree that the Trinity College Library may lend or copy this thesis upon request. Signature ___________________________ Date ___________________ Mostafa Bayomi iii Dedication To my mother’s soul iv Acknowledgements First and foremost, all thanks and praise are due to God, who has granted me this great success in my PhD, and has bestowed upon me all the necessary strength, health, wits, patience, and perseverance to complete it. I would like to express my gratitude to numerous people who have helped me to complete my work over the last number of years. I would like to express my utmost gratitude to my supervisor Prof. Séamus Lawless for all his guidance, patience, feedback, encourage- ment, and for his great support personally and professionally throughout my PhD journey.
    [Show full text]
  • User Engagement on Wikipedia: a Review of Studies of Readers and Editors
    Wikipedia, a Social Pedia: Research Challenges and Opportunities: Papers from the 2015 ICWSM Workshop User Engagement on Wikipedia: A Review of Studies of Readers and Editors Marc Miquel Ribé Universitat Pompeu Fabra [email protected] Abstract on Wikipedia. Their results help in explaining Is it an encyclopedia or a social network? Without consider- how engagement occurs on both the reader and editor ing both aspects it would not be possible to understand how sides. Yet, there are some attributes presenting room for a worldwide army of editors created the largest online improvement detected almost five years ago; overall usa- knowledge repository. Wikipedia has a consistent set of bility and the design of particular communication channels rules and it responds to many of the User Engagement Framework attributes, and this is why it works. In this pa- could be revised in order to mitigate frustration. per, we identify these confirmed attributes as well as those The duality between the two groups of users, readers and presenting problems. We explain that although having a editors, has acted similarly to a feedback loop system; new strong editor base Wikipedia is finding it challenging to content availability helped to popularize the encyclopedia maintain this base or increase its size. In order to understand and improved the position for searchers, which in turn in- this, scholars have analyzed Wikipedia using current metrics like user session and activity. We conclude there ex- creased its use and its editing base in order to create new ist opportunities to analyze engagement in new aspects in articles. Suh et al.
    [Show full text]
  • Librarians As Wikipedians: from Library History to “Librarianship and Human Rights”
    University of South Florida Scholar Commons School of Information Faculty Publications School of Information Summer 2014 Librarians as Wikipedians: From Library History to “Librarianship and Human Rights” Authors: Kathleen de la Peña McCook Wikipedia, the free encyclopedia built collaboratively using wiki software, is the most visited reference site on the web. Only 270 librarians identify as Wikipedians of 21,431,799 Wikipedians with named accounts. This needs to change. Understanding Wikipedia is essential to teaching information literacy and editing Wikipedia is essential to foster successful information-seeking behavior. Librarians who become skilled Wikipedians will maintain the centrality of librarianship to knowledge management in the 21st century—especially through active participation in crowdsourcing. Crowdsourcing is the online participation model that makes use of the collective intelligence of online communities for specific purposes in this case creating and editing articles for Wikipedia. Follow this and additional works at: http://scholarcommons.usf.edu/si_facpub Part of the Library and Information Science Commons Scholar Commons Citation McCook, Kathleen de la Peña, "Librarians as Wikipedians: From Library History to “Librarianship and Human Rights”" (2014). School of Information Faculty Publications. 316. http://scholarcommons.usf.edu/si_facpub/316 This Article is brought to you for free and open access by the School of Information at Scholar Commons. It has been accepted for inclusion in School of Information Faculty Publications by an authorized administrator of Scholar Commons. For more information, please contact [email protected]. Kathleen de la Peña McCook Librarians as Wikipedians From Library History to “Librarianship and Human Rights” Wikipedia: Need for Librarians as Contributors Wikipedia, the free encyclopedia built collaboratively using wiki software, is the most visited reference site on the web.1 Only 270 librarians identify as Wikipedians2 of 21,431,799 Wikipedians with named accounts.3 This needs to change.
    [Show full text]
  • Free Workshop to Create Your Own Open Data Site
    Third-quarter newsletter for the No Images? Click here Denver Regional Data Consortium. The data consortium consists of Denver Regional Council of Governments members and regional partners with an interest in geospatial data and collaboration. The data consortium newsletter improves communication among local geographic information systems professionals and features updates from all levels of government as they relate to data and geospatial initiatives in our region. This newsletter is published quarterly. Free workshop to create your own open data site Article submitted by Ashley Summers, GISP, PMP, information systems manager at DRCOG. Ashley can be reached at 303- 480-6746 or [email protected]. DRCOG and Esri are partnering to provide a free workshop in August to help local governments create an open data site. This hands-on, technical session will tell you everything you need to know about getting your GIS data online, using software that you probably already own. The workshop will be held at DRCOG’s offices at 1001 17th Street on Aug. 8 from 1 p.m. to 4 p.m. Some advance work is required to make the most of your time during the session and space is limited. To secure your spot and receive pre- workshop instructions, please RSVP. Wondering what an Esri open data site looks like? Check out these excellent examples that your colleagues created: https://data-auroraco.opendata.arcgis.com/ https://gis-bouldercounty.opendata.arcgis.com/ https://open-centennial.opendata.arcgis.com/ https://data-c3.opendata.arcgis.com/ https://data-erieco.opendata.arcgis.com/ https://data-jeffersoncounty.opendata.arcgis.com/ https://data-cityofthornton.opendata.arcgis.com/ Go Code winner Carbos creates carbon trading app with public data Article submitted by Margaret-Rose Spyker, GIS and data analyst at Xentity Corporation.
    [Show full text]