UKP-UBC Entity Linking at TAC-KBP

Total Page:16

File Type:pdf, Size:1020Kb

UKP-UBC Entity Linking at TAC-KBP UKP-UBC Entity Linking at TAC-KBP Nicolai Erbsy, Eneko Agirrez, Aitor Soroaz, Ander Barrenaz, Ugaitz Etxebarriaz, Iryna Gurevychy, Torsten Zeschy yUbiquitous Knowledge Processing Lab (UKP-TUDA) Department of Computer Science, Technische Universitat¨ Darmstadt http://www.ukp.tu-darmstadt.de zIXA NLP Group University of the Basque Country, Donostia, Basque Country http://ixa.si.ehu.es Abstract focus on the entity linking task which assigns an en- tity from a knowledge base to a marked mention in This paper describes our system for the en- a text. tity linking task at TAC KBP 2012. We de- Our approach is solely based on the given mention veloped a supervised system using dictionary- (no further approaches for extending the mention are based, similarity-based, and graph-based fea- tures. As a global feature, we apply Per- used) and ranking the candidate entities. This en- sonalized PageRank with Wikipedia to weight ables the system to be used for rather general prob- the list of entity candidates. We use two lems like word sense disambiguation (Agirre and Wikipedia versions with different timestamps Edmonds, 2006; Navigli, 2009). to enrich the knowledge base and develop This paper is structured as follows: Section 2 pro- an algorithm for mapping between the two vides an overview of the notation used throughout Wikipedia versions. We observed a large drop this paper. In Section 3, we describe the system ar- in system performance when moving from training data to test data. Our error analysis chitecture and classify the features used in Section 4. showed that the guidelines for mention anno- We present the official results and our error analysis tation were not followed by annotators. An ad- in Section 5 and conclude with a description of fu- ditional mention detection component should ture work (Section 6) and a summary (Section 7). improve performance to the expected level. 2 Notation 1 Introduction Each document d contains exactly one mention m Entity linking is the task of linking a surface string with a context c. For each mention m, there exists in a text (e.g. Washington) to the correctly disam- a set of entities E, which are entity candidates for biguated representation of the entity in some knowl- m. Each feature has a scoring function s(m; e) that edge base (e.g. either George Washington or Wash- computes the probability for each mention-entity ington, D.C. depending on what Washington was re- pair (m; e) that m refers to e. For features that con- ferring to in this context). Entity linking is an im- sider the context the scoring function s(m; e; c) also portant task with applications in several domains in- takes the context into account. cluding information retrieval, text structuring, and machine translation. The Knowledge Base Popu- 3 System architecture 1 lation workshop of the Text Analysis Conference Figure 1 shows the architecture of the system. provides a framework for comparing different ap- The system is designed using modular components proaches to entity linking in a controlled setting. We based on the UIMA framework (Ferrucci and Lally, 1http://www.nist.gov/tac/2012/KBP/index. 2004) augmented with the functionality provided by html uimaFIT (Ogren and Bethard, 2009). constructed from a more recent Wikipedia (i.e. 5th Preprocessing of April 2011) provides a fair number of mention- entity pairs, but may contain entities that have been renamed, merged, split, or deleted since the KB- version in 2008. The Google dictionary provides Candidate generation statistical information for basically any mention, but is sometimes noisy. Candidate expansion When the target query Ranking feature string is not found in the dictionary, the following extraction heuristics are applied in turn to the mention: 1. remove parentheses and text in between Candidate ranking 2. remove leading ”the” from mention In one run that accessed external resources queried online, we also use the Did You Mean (DYM) API in Wikipedia. First, we check if the dic- KB mapping tionary lookup returns any entity candidates. If not, we try DYM. If DYM fails to return any candidates, it is applied after each of the above heuristic again. Figure 1: System architecture That is, if the first heuristic fails, then we try DYM for the mention without parenthesis, and so on. Preprocessing Preprocessing components were Ranking feature extraction For each mention- 2 taken from the open source project DKPro Core . entity pair (m; e), each of the features computes a We used tokenization, POS-tagging, lemmatization, scoring function s(m; e) or s(m; e; c) if the context chunking, and named entity recognition. is considered. Details of these features are described Candidate generation We reduce the whole set in Section 4. of entities E to those that have previously been Candidate ranking In order to rank entity candi- used as a target for the corresponding mention m. dates, several options are available: For this purpose we use two types of dictionaries: • the score of a single feature One is extracted from existing links in Wikipedia (Chang et al., 2010), redirects, and category infor- • a linear combination of many or all features mation. The other is extracted from Google search • logs (Spitkovsky and Chang, 2012) and incorpo- a supervised component that learns a model rates additional information like source language. A We submitted several runs for different feature com- Wikipedia dictionary is specific for one Wikipedia binations. The supervised combinations were gener- timestamp while information in the Google dictio- ated with Rank SVM (Tsochantaridis, 2006). nary is collected over a 2-year period. KB mapping Due to constant revisions of The system uses several dictionaries of those two Wikipedia articles, not all articles can be mapped to types in parallel to overcome the disadvantages of older versions using their title. Hence, we follow a each dictionary. A dictionary constructed using a three-step process: First, we try to map an article by Wikipedia version close to the KB timestamp (i.e. its title. Second, we search for a redirect from the 12th of March 2008) covers all entities in the KB corresponding Wikipedia version with the same title but contains fewer mention-entity pairs, due to the and map it to its target. Third, heuristics as previ- smaller size of Wikipedia in 2008. A dictionary ously described for candidate expansion are used to 2code.google.com/p/dkpro-core-asl/ and map entities.If none of these methods return a KB code.google.com/p/dkpro-core-gpl/ entry, NIL (Not in KB) is returned. 4 Classification of features George Washington George Washington (February 22, 1732 – In this section, we give a brief overview of the fea- December 14, 1799), was one of the Founding Fathers of the United States, serving as the commander-in-chief of the Continental Army during ture we used in our entity linking system. We divide the American Revolutionary War and later as the new republic's first President. He also presided over into three types of features: (i) features solely con- the convention that drafted the Constitution. sidering the mention, (ii) features taking the context into account, and (iii) another contextual feature do- ing a global disambiguation. Washington D.C. John Adams 4.1 Mention ...Named in honor of George Washington, the ...Adams' revolutionary credentials secured City of Washington was founded in 1791 to him two terms as George Washington's vice These features take the mention and a list of entity serve as the new national capital. ... president and his own election in 1796. ... candidates as input. Figure 2: Building description text for George Washing- Dictionary-based. This feature computes a score ton using text from its article and articles that refer to that for any tuple (m; e) derived from the frequency of page. a dictionary including target statistics for each men- tion. Two different types of dictionaries from dis- tinct sources are used: Similarity3 and apply Levenshtein and Jaro-Winkler distance. • Wikipedia (Chang et al., 2010). A Wikipedia- based dictionary that lists all mentions with a 4.2 Context frequency distribution of their target. It is gen- erated by adding all categories, redirects, and A common approach in Word Sense Disambigua- all links in all Wikipedia articles of one lan- tion is to use the context of the mention to iden- guage version. Statistical data slightly differs tify the correct sense. For instance, in the Lesk al- depending on the time stamp of the Wikipedia gorithm (Lesk, 1986) words in the context of the version. Probability may change over time mention are compared to words in the description since Wikipedia article are under constant re- of each entity given by its Wikipedia article. We vision, e.g. they are added, split, merged, or use a similar approach, also used by Han and Sun removed. Hence, different Wikipedia version (2011), where context words are weighted using the may return different frequency distributions. In frequency in the description, smoothed by their n- our system we use two previously mentioned gram frequency (Jelinek and Mercer, 1980). That Wikipedia versions, one from 2008 and one way, high-frequent words have a lower influence from 2011. than uncommon words, similar to tf.idf weighting (Salton and Buckley, 1988). We use the Google Web • Google (Spitkovsky and Chang, 2012). This re- 1T corpus (T. Brants and Franz, 2006) for frequency source collects information from Google search counts. logs and therefore is able to provide statis- tics from a large crowd of users. It also As an alternative to the use of the description includes information about Wikipedia inter- in the corresponding Wikipedia article, we extract language links, and types (e.g.
Recommended publications
  • Knowledge Graphs
    KNOWLEDGE GRAPHS Lecture 1: Introduction and Motivation Markus Krotzsch¨ Knowledge-Based Systems TU Dresden, 16th Oct 2018 Introduction and Organisation Markus Krötzsch, 16th Oct 2018 Knowledge Graphs slide 2 of 25 Course Tutors Markus Krötzsch Maximilian Marx Lectures Exercises Markus Krötzsch, 16th Oct 2018 Knowledge Graphs slide 3 of 25 Organisation Lectures Tuesday, DS 3 (11:10–12:40), APB E005 Exercise Sessions (starting 23 October) Tuesday, DS 5 (14:50–16:20), APB E005 Web Page https://iccl.inf.tu-dresden.de/web/Knowledge_Graphs_(WS2018/19) Lecture Notes Slides of current and past lectures will be online. Modules INF-B-510, INF-B-520, INF-BAS6, INF-E-3, INF-PM-FOR, INF-VERT6, MCL-KR, MCL-TCSL – anything else? Markus Krötzsch, 16th Oct 2018 Knowledge Graphs slide 4 of 25 Goals and Prerequisites Goals • Introduce basic notions of graph-based knowledge representation(s) • Study important graph data management approaches (RDF, Property Graph) and query languages • Learn about relevant methods, tools, and datasets • Discuss aspects of modelling and quality assurance (Non-)Prerequisites • No particular prior courses needed • Basic programming skills are assumed; practical experience beyond basic courses will be helpful • Interesting optional synergies: databases, machine learning, social networks, graph theory Markus Krötzsch, 16th Oct 2018 Knowledge Graphs slide 5 of 25 Motivation Markus Krötzsch, 16th Oct 2018 Knowledge Graphs slide 6 of 25 The Hype (c) 2018 Gartner, Inc. All rights reserved. Markus Krötzsch, 16th Oct 2018 Knowledge Graphs slide 7 of 25 Knowledge Graphs Everywhere All company logos subject to copyrights. All rights reserved. Markus Krötzsch, 16th Oct 2018 Knowledge Graphs slide 8 of 25 The original “Knowledge Graph” (Google, 2012): (c) Google.
    [Show full text]
  • Google Dictionary: a Critical Review
    3 Issues and Trends in Learning Technologies Volume 8, Number 1, May 2020 Google Dictionary: A Critical Review Musa Nushi Afshin Moradi Shahid Beheshti University Shahid Beheshti University Abstract In an increasingly digital world, online educational resources, apps, and other technologies can serve as incredibly effective tools to facilitate both teaching and learning. One such online tool is the Google Dictionary. This dictionary, an online service of Google, is probably one of the simplest dictionaries for English learners. The definitions usually use simple words and therefore are easy to understand. In addition to the definitions, examples, pictures, and usage notes, there is a separate pronunciation entry with interesting characteristics. This newly added entry provides users with the pronunciation of a word in two different accents, visemes, slow playback, and an option that lets Google collect feedback about the accuracy and helpfulness of the pronunciation recordings from users. This review paper offers a descriptive account of the entry, along with critical evaluation including its strong points and limitations. The review concludes with some suggestions to improve the educational quality of the pronunciation entry.. Keywords: Google Dictionary, pronunciation, second language, technology Website Details Publisher: Google Product Type: Web-based service Language(s): Multilingual Level: Any Media Format: WebP and WebM Operating Systems: Any Hardware Requirements: Internet Connection Supplementary Software: None Introduction The Internet has revolutionized the way we go about living our lives. There is hardly an area, at least in the Western world, that has not been touched by the Internet revolution (Esterle, Ranck & Schmitt, 2005; Selwyn, 2014). The affordances provided by the Internet are enormous, ranging from checking whether one’s plant needs water to booking a hotel in a resort island off the coast of Montenegro, in the Adriatic Sea.
    [Show full text]
  • Methods in User Data Searches Simplified Approach to Web Searches Chandana Mallapragada Missouri University of Science and Technology, [email protected]
    Association for Information Systems AIS Electronic Library (AISeL) MWAIS 2017 Proceedings Midwest (MWAIS) 6-2017 Methods in User Data Searches Simplified Approach to Web Searches Chandana Mallapragada Missouri University of Science and Technology, [email protected] Daniel Feissle Missouri University of Science and Technology, [email protected] Sonia Kapoor Missouri University of Science and Technology, [email protected] Tylor Brom Missouri University of Science and Technology, [email protected] Follow this and additional works at: http://aisel.aisnet.org/mwais2017 Recommended Citation Mallapragada, Chandana; Feissle, Daniel; Kapoor, Sonia; and Brom, Tylor, "Methods in User Data Searches Simplified Approach to Web Searches" (2017). MWAIS 2017 Proceedings. 4. http://aisel.aisnet.org/mwais2017/4 This material is brought to you by the Midwest (MWAIS) at AIS Electronic Library (AISeL). It has been accepted for inclusion in MWAIS 2017 Proceedings by an authorized administrator of AIS Electronic Library (AISeL). For more information, please contact [email protected]. Mallapragada et al. Methods in User Web Searches Methods in User Data Searches Simplified Approach to Web Searches Chandana Mallapragada Daniel Feissle Missouri University of Science and Technology Missouri University of Science and Technology [email protected] [email protected] Sonia Kapoor Tylor Brom Missouri University of Science and Technology Missouri University of Science and Technology [email protected] [email protected] Nathan Twyman Missouri University of Science and Technology [email protected] ABSTRACT The purpose of this study is to provide a solution for the unpleasant experience caused when the user wants to learn an unfamiliar word while reading online. We propose to build a cross-browser built-in dictionary extension called Word Detector.
    [Show full text]
  • Plan Quick Class: Chrome Extensions Resources
    PLAN QUICK CLASS: CHROME EXTENSIONS RESOURCES PRIVACY & AD BLOCKERS AdBlock blocks YouTube, Facebook and ads everywhere else on the web. AdBlock works automatically. Choose to continue seeing unobtrusive ads, whitelist your favorite sites, or block all ads by default. https://chrome.google.com/webstore/detail/adblock/gighmmpiobklfepjocnamgkkbiglidom Privacy Badger automatically learns to block invisible trackers. Instead of keeping lists of what to block, Privacy Badger learns by watching which domains appear to be tracking you as you browse the Web. https://chrome.google.com/webstore/detail/privacy-badger/pkehgijcmpdhfbdbbnkijodmdjhbjlgp Ghostery is a powerful privacy extension. Block ads, stop trackers and speed up websites. https://chrome.google.com/webstore/detail/ghostery-%E2%80%93-privacy-ad- blo/mlomiejdfkolichcflejclcbmpeaniij PRODUCTIVITY Full Page Screenshot captures entire websites and custom areas. https://chrome.google.com/webstore/detail/full-page- screenshot/glgomjpomoahpeekneidkinhcfjnnhmb Google Scholar Button adds a browser button for easy access to Google Scholar from any web page. Click the Scholar button to find full text on the web or in your university library. Select the title of the paper on the page you're reading, and click the Scholar button to find it. https://chrome.google.com/webstore/detail/google-scholar- button/ldipcbpaocekfooobnbcddclnhejkcpn Google Translate: Highlight or right-click on a section of text and click on Translate icon next to it to translate it to your language. Or, to translate the entire page you're visiting, click the translate icon on the browser toolbar. https://chrome.google.com/webstore/detail/google-translate/aapbdbdomjkkjkaonfhkkikfgjllcleb Grammarly will make sure your messages, documents, and social media posts are clear, mistake-free, and impactful.
    [Show full text]
  • Using Google Chrome Extensions and Apps
    Using Google Chrome Extensions and Apps February 16 th, 2017 by Shannon Proulx NLSEC Technology Coordinator 1 Objectives .Learn the difference between a Google Extension and Google App .Learn how to log into the Chrome web browser and how this differs from logging into your school email or Google Drive .Learn how to download an extension from the Chrome Store .Learn about several useful chrome extensions available .Learn how to unlink your Google account from the Chrome browser 2 What is an extension? .Extension are tools in the Chrome browser that add functionality to the web experience .They can be a simple function like highlighting text on the webpage with one click or more advanced like text read out loud .They are found to the right on the Chrome browser toolbar 3 Difference between an extension and app .Apps are links to websites .Found in the upper left hand corner of browser – colored boxes .Speech Recognition are typically Apps as they direct to a different website 4 Logging into gmail vs Chrome browser .Linking your Google Account to the Chrome browser is different than logging into your gmail or Google Drive .Here is have logged into my school google account .This is different than signing into Chrome browser 5 Log into Chrome browser .Settings (3 dots in upper right corner) .Sign In .Enter your school Google account .Select “link data” 6 Linking Google Account to Chrome browser (con’t) .Message appears: .When correctly linked to the Chrome browser, will look like this in settings: 7 Download an extension from Chrome Web Store .
    [Show full text]
  • Measuring Personalization of Web Search
    1 Measuring Personalization of Web Search ANIKÓ HANNÁK, Northeastern University PIOTR SAPIEŻYŃSKI, Technical University of Denmark ARASH MOLAVI KAKHKI, Northeastern University DAVID LAZER, ALAN MISLOVE, and CHRISTO WILSON, Northeastern University Web search is an integral part of our daily lives. Recently, there has been a trend of personalization in Web search, where dierent users receive dierent results for the same search query. The increasing level of personalization is leading to concerns about Filter Bubble eects, where certain users are simply unable to access information that the search engines’ algorithm decides is irrelevant. Despite these concerns, there has been little quantication of the extent of personalization in Web search today, or the user attributes that cause it. In light of this situation, we make three contributions. First, we develop a methodology for measuring personalization in Web search results. While conceptually simple, there are numerous details that our methodology must handle in order to accurately attribute dierences in search results to personalization. Second, we apply our methodology to 200 users on Google Web Search and 100 users on Bing. We nd that, on average, 11.7% of results show dierences due to personalization on Google, while 15.8% of results are personalized on Bing, but that this varies widely by search query and by result ranking. Third, we investigate the user features used to personalize on Google Web Search and Bing. Surprisingly, we only nd measurable personalization as a result of searching with a logged in account and the IP address of the searching user. Our results are a rst step towards understanding the extent and eects of personalization on Web search engines today.
    [Show full text]
  • Knowledge Graphs Lecture 6 - Advanced Knowledge Graph Applications 6.1 the Graph in Knowledge Graphs
    This file is licensed under the Creative Commons Attribution-NonCommercial 3.0 (CC BY-NC 3.0) Knowledge Graphs Lecture 6 - Advanced Knowledge Graph Applications 6.1 The Graph in Knowledge Graphs Prof. Dr. Harald Sack & Dr. Mehwish Alam FIZ Karlsruhe - Leibniz Institute for Information Infrastructure AIFB - Karlsruhe Institute of Technology Autumn 2020 Knowledge Graphs 2020 , Prof. Dr. Harald Sack & Dr. Mehwish Alam, FIZ Karlsruhe - Leibniz Institute for Information Infrastructure & Karlsruhe Institute of Technology Knowledge Graphs Lecture 6: Advanced Knowledge Graph Applications 6.1 The Graph in Knowledge Graphs 6.2 Knowledge Graph Embeddings 6.3 Knowledge Graph Completion 6.4 Knowledge Graph Mappings and Alignment 6.5 Semantic Search 6.6 Exploratory Search and Recommender Systems Knowledge Graphs 2020 , Prof. Dr. Harald Sack & Dr. Mehwish Alam, FIZ Karlsruhe - Leibniz Institute for Information Infrastructure & Karlsruhe Institute of Technology 6. Advanced Knowledge Graph Applications / 6.1 The Graph in Knowledge Graphs Knowledge Graph Recap ● A Graph consisting of concepts, classes, properties, relationships, and entity descriptions ● Based on formal knowledge representations (RDF(S), OWL) ● Data can be open (e.g. DBpedia, WikiData), private (e.g. supply chain data), or closed (e.g. product models) ● Data can be original, derived, or aggregated ● We distinguish ○ instance data (ground truth), ○ schema data (vocabularies, ontologies) ○ metadata (e.g. provenance, versioning, licensing) ● Taxonomies are used to categorize entities ● Links exist between internal and external data ● Including mappings to data stored in other systems and databases ● Fully compliant to FAIR Data principles [1] Knowledge Graphs 2020 , Prof. Dr. Harald Sack & Dr. Mehwish Alam, FIZ Karlsruhe - Leibniz Institute for Information Infrastructure & Karlsruhe Institute of Technology 6.
    [Show full text]
  • An Invitation to CALL
    LINGUISTICS DEPARTMENT - STANFORD UNIVERSITY An Invitation to CALL Foundations of Computer-Assisted Language Learning Home | Unit 1 | Unit 2 | Unit 3| Unit 4| Unit 5| Unit 6 | Unit 7 | Unit 8 | Supplement Click here for PDF An Invitation to CALL Unit 5: Environments, Tools, Materials, and Activities OVERVIEW This unit looks at four dimensions of CALL: the environments in which it is used, the digital tools, the materials available (especially on the Web), and the types of activities. Many of the points here have already been touched on in previous units but we revisit them and explore them in greater depth here. This unit is primarily about exploring, so follow up on links that look interesting. ENVIRONMENTS Goal 2, Standard 1 of the TESOL Technologies Standards for Teachers states "Language teachers identify and evaluate technological resources and environments for suitability to their teaching context." Similarly, Goal 1, Standard 2 refers to teachers' knowledge of "a wide range" of technology options and especially their ability to use those options "in a given setting." Indeed, environments determine to a large degree what a teacher or learner can and can't do with technology. This section will discuss different environments for users (both teachers and learners) and how those environments impact the nature of interaction and learning. • Classrooms. The technology available in classrooms is currently in a state of transition across institutions and in many cases within institutions as well. At Stanford where I teach, I might have one course in a room with an electronic white board and another in a room with only a chalk board.
    [Show full text]
  • Googling for Meaning: Statutory Interpretation in the Digital Age Alice A
    THE YALE LAW JOURNAL FORUM F EBRUARY 15, 2016 Googling for Meaning: Statutory Interpretation in the Digital Age Alice A. Wang introduction Dictionary use has become a common practice in modern statutory interpretation at the Supreme Court.1 With the rise of the “new textualism,”2 Justices increasingly rely on dictionaries to shed light on the plain meaning of statutes—that is, the understanding that an ordinary English speaker would draw from the text.3 This trend is not limited to textualists: Justices who favor purposivist analyses of legislative intent cite dictionaries just as often.4 Scholars and practitioners have criticized this development in two main ways.5 The first critique questions the soundness of the interpretive 1. See, e.g., James J. Brudney & Lawrence Baum, Oasis or Mirage: The Supreme Court’s Thirst for Dictionaries in the Rehnquist and Roberts Eras, 55 WM. & MARY L. REV. 483 (2013); John Calhoun, Note, Measuring the Fortress: Explaining Trends in Supreme Court and Circuit Court Dictionary Use, 124 YALE L.J. 484 (2014); Jeffrey L. Kirchmeier & Samuel A. Thumma, Scaling the Lexicon Fortress: The United States Supreme Court’s Use of Dictionaries in the Twenty-First Century, 94 MARQ. L. REV. 77 (2010). 2. The new textualism, most closely associated with Justice Scalia, focuses statutory interpretation on the text of the statute in question and the larger body of surrounding law. Rickie Sonpal, Old Dictionaries and New Textualists, 71 FORDHAM L. REV. 2177, 2192 (2003). 3. Plain meaning can diverge from ordinary meaning when a statute includes a specific definition for a term or when a statute uses a term that has a specialized meaning within a particular field.
    [Show full text]
  • Google Extensions Feb 2018
    Google Extensions, Apps and Add-ons February 2018 Overview of Google Chrome Tools o Google Chrome Extensions (show up to the right on Chrome browser toolbar) o Google Chrome Apps (links to Google products – waffle next to your picture) o Google Chrome Add-ons (extra features inside Google Docs, Sheets or Forms) o Log in to Chrome Browser vs. logging into Drive/Gmail on website Read and Write for Google • Floating toolbar available in Chrome as an extension • Free for teachers, speech only free for students • Features include text to speech, pop-up/picture dictionary, highlighter feature, and a vocabulary list for reading help. Writing supports include word prediction, speech to text, and pdf reader. Web features include removing all ads and pictures. • Download at Chrome webstore. Teacher registration for free subscription: https://www.texthelp.com/en-gb/products/free-for-teachers/ Using Google Drive to convert picture of text to digital text 1) Log into Google Drive 2) Select New – File Upload 3) Browse to the picture of paper sheet (usually a jpeg or PDF) and upload 4) In Google – right click on the jpeg and select “Open with – Google Docs” 5) The image and digital text are now in the document. Google Extensions, Apps and Add-ons ACCESSIBILITY BOOKS READING Click Free Browsing Extension Google Play Books Mercury Reader Extension Hover mouse over and will click Search book, changes in font, Simplifies webpage, no ads background Scroll to Top Extension Skimzee Extension Kindle Cloud Launcher Reduces the number of sentences on Changes
    [Show full text]
  • Google Tools for Reading
    Google Apps for Education - Reading Resources for K-12 While I’ve attempted to categorize these, many cross over multiple categories. Clicking on the links will give a longer description that will include images and sometimes an introductory video. Chrome Apps and Extensions along with Google Drive Add-ons and Apps can provide valuable support for readers. There are also many great reading support w​ ebsites ​that function in the Chrome Browser. Special thanks to my PLN for sharing so many of these valuable resources. Chrome Reading Extensions and Apps Productivity Tools Connected to Reading Readability The official Readability extension for Chrome provides a better way to read online, turning any web page into a comfortable reading view right in your web browser Read Later Fast Save pages to read later -- online or offline, and fast! Avoid too many tabs and make your browsing a blast! Clearly Clearly makes blog posts, articles and web pages clean and easy to read. Save them to Evernote to read anywhere. Read & Write for Google Boost reading and writing confidence. Offer support for Google Docs/web to students with learning difficulties, dyslexia or ELL/ESL. C​ lipped - Summarize Anything Clipped summarizes news articles into bullet points. TLDR TLDR (Too Long Didn't Read) Plugin is a free extension that creates a summary of any web article without leaving the original page. Simple Highlighter Highlights, annotates, translates, full or quick references (eg: wordreference.com, wikipedia), speech, and more. Notable PDF Best PDF Viewer and Annotation for your browser (works with Google Drive) Reading Practice Newsela Newsela is a reading tool that improves students’ literacy using current events.
    [Show full text]
  • Google Tools for Special Needs (Adapted from Eric Curts’ List) ​ ​
    Google Tools for Special Needs (Adapted from Eric Curts’ List) ​ ​ Table of Contents: General websites Chrome/Chromebook features Chrome Web Apps and Extensions Text to speech Speech to text Readability Reading comprehension Navigation Classroom management Communication More apps and extensions Google Docs: Hidden features you may not have noticed on the menu Other tools for PISD G eneral websites Before listing individual tools and resources, below is a list of several general websites that provide lots of information about Google-related accessibility, accommodation, tools, and resources. ● Google Accessibility site - Google’s official site with information on all the accessibility features built into all of their products - http://www.google.com/accessibility/ ​ ● Chrome AT Community - Google+ Community focused on sharing useful Google web apps, extensions, and other resources for assistive technology https://plus.google.com/u/0/communities/104237884077096555634 ● Chrome AT Toolbox (Note: last update was 3/6/15; some suggestions may no longer exist) https://sites.google.com/site/gchromeat/home/v2 ● OTs with Apps https://otswithapps.com/category/google-chrome/ ​ C hrome/Chromebook features The Chromebooks have many accessibility features built in by default, for example: Accessibility: Go to Settings and search Accessibility > Manage accessibility features. Enable many options including ​ ​ ​ ChromeVox (spoken feedback), high contrast mode, or highlight the mouse cursor. Zoom - User can adjust the zoom level of the browser by pressing: ​ ● Ctrl and + to zoom in (or pinch out on touchscreen Chromebooks) ● Ctrl and - to zoom out (or pinch in on touchscreen Chromebooks) ● Ctrl and 0 (zero) to return to the original zoom level Font face and size - Users can set the default font face and default font size for all websites.
    [Show full text]