Deep Learning for Feature Representation in Natural Language Processing

Total Page:16

File Type:pdf, Size:1020Kb

Deep Learning for Feature Representation in Natural Language Processing SCUOLA DI DOTTORATO UNIVERSITÀ DEGLI STUDI DI MILANO-BICOCCA Dipartimento di / Department of Informatica Sistemistica e Comunicazione Dottorato di Ricerca in / PhD program Computer Science Ciclo / Cycle XXX Deep Learning for Feature Representation in Natural Language Processing Cognome / Surname Nozza Nome / Name Debora Matricola / Registration number 717156 Tutore / Tutor: Prof. Giuseppe Vizzari Cotutore / Co-tutor: Dr. Elisabetta Fersini Supervisor: Prof. Enza Messina Coordinatore / Coordinator: Prof. Stefania Bandini ANNO ACCADEMICO / ACADEMIC YEAR 2016/2017 To my parents and grandparents Abstract The huge amount of textual user-generated content on the Web has incredibly grown in the last decade, creating new relevant opportunities for different real-world applications and domains. To overcome the difficulties of dealing with this large volume of unstructured data, the research field of Natural Language Processing has provided efficient solutions developing computational models able to understand and interpret human natural language without any (or almost any) human intervention. This field has gained in further computational efficiency and performance from the advent of the recent Machine Learning research lines concerned with Deep Learn- ing. In particular, this thesis focuses on a specific class of Deep Learning models devoted to learning high-level and meaningful representations of input data in unsupervised settings, by computing multiple non-linear transformations of increasing complexity and abstraction. In- deed, learning expressive representations from the data is a crucial step in Natural Language Processing, because it involves the transformation from discrete symbols (e.g. characters) to a machine-readable representation as real-valued vectors, which should encode semantic and syntactic meanings of the language units. The first research direction of this thesis is aimed at giving evidence that enhancing Natural Lan- guage Processing models with representations obtained by unsupervised Deep Learning mod- els can significantly improve the computational abilities of making sense of large volume of user-generated text. In particular, this thesis addresses tasks that were considered crucial for understanding what the text is talking about, by extracting and disambiguating the named enti- ties (Named Entity Recognition and Linking), and which opinion the user is expressing, dealing also with irony (Sentiment Analysis and Irony Detection). For each task, this thesis proposes a novel Natural Language Processing model enhanced by the data representation obtained by Deep Learning. As second research direction, this thesis investigates the development of a novel Deep Learning model for learning a meaningful textual representation taking into account the relational struc- ture underlying user-generated content. The inferred representation comprises both textual and relational information. Once the data representation is obtained, it could be exploited by off-the- shelf Machine Learning algorithms in order to perform different Natural Language Processing tasks. As conclusion, the experimental investigations reveal that models able to incorporate high-level i features, obtained by Deep Learning, show significant performance and improved generalization abilities. Further improvements can be also achieved by models able to take into account the relational information in addition to the textual content. Publications Journal D. Nozza, E. Fersini, E. Messina (2018). “CAGE: Constrained deep Attributed Graph Embed- dings”. Information Sciences (Submitted). E. Fersini, P. Manchanda, E. Messina, D. Nozza, M. Palmonari (2018). “LearningToAdapt with Word Embeddings: Domain Adaptation of Named Entity Recognition Systems”. Information Processing and Management (Submitted). Conferences F. Bianchi, M. Palmonari and D. Nozza (2018). “Towards Encoding Time in Text-Based Entity Embeddings”. Proceedings of the 17th International Semantic Web Conference. (To appear) E. Fersini, P. Manchanda, E. Messina, D. Nozza, M. Palmonari (2018). “Adapting Named Entity Types to New Ontologies in a Microblogging Environment”. Proceedings of the 31st International Conference on Industrial, Engineering & Other Applications of Applied Intelligent Systems. D. Nozza, F. Ristagno, M. Palmonari, E. Fersini, P. Manchanda, E. Messina (2017). “TWINE: A real-time system for TWeet analysis via INformation Extraction”. In Proceedings of the Software Demonstrations at the 15th Conference of the European Chapter of the Association for Computational Linguistics (pp. 25-28). Association for Computational Linguistics. iii Contents iv D. Nozza, E. Fersini, E. Messina (2017). “A Multi-View Sentiment Corpus”. In Proceedings of the 15th Conference of the European Chapter of the Association for Computational Linguistics: Volume 1, Long Papers (Vol. 1, pp. 273-280). Association for Computational Linguistics. P. Manchanda, E. Fersini, D. Nozza, E. Messina, M. Palmonari (2017). “Towards Adaptation of Named Entity Classification”. In Proceedings of the 32nd ACM Symposium on Applied Com- puting (pp. 155-157). ACM. F. M. Cecchini, E. Fersini, P. Manchanda, E. Messina, D. Nozza, M. Palmonari, C. Sas (2016). “UNIMIB@NEEL-IT: Named Entity Recognition and Linking of Italian Tweets”. In Proceed- ings of the 3rd Italian Conference on Computational Linguistics. CEUR-WS. D. Nozza, E. Fersini, E. Messina (2016). “Unsupervised Irony Detection: A Probabilistic Model with Word Embeddings”. In Proceedings of the 8th International Joint Conference on Knowl- edge Discovery, Knowledge Engineering and Knowledge Management (pp. 68-76). SciTePress. (Best Paper Award) D. Nozza, E. Fersini, E. Messina (2016). “Deep Learning and Ensemble Methods for Domain Adaptation”. In Proceedings of the 28th IEEE International Conference on Tools with Artificial Intelligence (pp. 184-189). IEEE. D. Nozza, D. Maccagnola, V. Guigue, E. Messina and P. Gallinari (2014). “A latent represen- tation model for sentiment analysis in heterogeneous social networks”. In Proceedings of the 12th International Conference on Software Engineering and Formal Methods (pp. 201-213). Springer International Publishing. Contents Abstract i Publications iii Contents iv List of Figures viii List of Tablesx 1 Introduction1 1.1 Thesis contribution and organization.......................3 2 Natural Language Processing4 2.1 Challenges.....................................5 2.2 Language Feature Representation.........................8 2.2.1 Term Presence and Frequency......................8 2.2.2 Words and n-grams............................9 2.2.3 Complex Linguistic Descriptors.....................9 2.2.4 Distributional features.......................... 10 3 Deep Learning Background 12 3.1 Challenges motivating Deep Learning...................... 14 3.2 Artificial Neural Networks............................ 16 3.3 Neural Network Architectures.......................... 17 3.3.1 Single-Layer Feedforward Network................... 17 3.3.2 Multi-Layer Feedforward Network.................... 18 3.3.3 Recurrent Neural Network........................ 19 3.4 Activation Functions............................... 20 3.5 Learning method................................. 21 3.5.1 Objective functions............................ 22 3.5.1.1 Loss functions......................... 23 3.5.1.2 Regularization......................... 24 3.5.2 Training algorithm............................ 25 3.5.3 Optimization algorithms......................... 26 3.5.3.1 Gradient descent........................ 26 3.5.3.2 Stochastic gradient descent.................. 27 3.5.3.3 Stochastic gradient descent with Momentum......... 27 v Contents vi 3.5.3.4 Stochastic gradient descent with Nesterov Momentum.... 28 3.5.3.5 AdaGrad............................ 30 3.5.3.6 RMSProp........................... 31 3.5.3.7 Adam............................. 31 3.5.3.8 Adadelta............................ 33 4 Deep Learning Architectures for Textual Feature Representation 34 4.1 Neural Networks Language Model........................ 36 4.1.1 Neural Probabilistic Language Model.................. 38 4.1.2 Collobert and Weston........................... 41 4.1.3 Word2vec................................. 41 4.2 Auto-encoder................................... 43 4.2.1 Stacked Auto-encoder.......................... 45 4.2.2 Regularized Auto-encoder........................ 46 4.2.3 Sparse Auto-encoder........................... 46 4.2.3.1 k-sparse Auto-encoder..................... 47 4.2.4 Denoising Auto-encoder......................... 47 4.2.4.1 Marginalized Stacked Denoising Auto-encoder........ 48 4.2.5 k-Competitive Auto-encoder....................... 49 5 Deep Learning Representation for Making Sense of User-Generated Content 51 5.1 Named Entity Recognition and Classification.................. 54 5.1.1 Word Embeddings Representation for Learning to Adapt Entity Classi- fication.................................. 57 5.1.1.1 Adaptation Model: Learning to Adapt with Word Embeddings 59 5.1.1.2 Experimental Settings..................... 61 5.1.1.3 Experimental Results..................... 66 5.1.1.4 Related Works......................... 73 5.2 Named Entity Linking.............................. 74 5.2.1 Word Embeddings for Named Entity Linking.............. 75 5.2.1.1 Representation and Linking model.............. 77 5.2.1.2 Experimental Settings..................... 78 5.2.1.3 Experimental Results..................... 80 5.2.1.4 Related Works......................... 85 5.3 Sentiment Analysis...............................
Recommended publications
  • The Complete Guide to Social Media from the Social Media Guys
    The Complete Guide to Social Media From The Social Media Guys PDF generated using the open source mwlib toolkit. See http://code.pediapress.com/ for more information. PDF generated at: Mon, 08 Nov 2010 19:01:07 UTC Contents Articles Social media 1 Social web 6 Social media measurement 8 Social media marketing 9 Social media optimization 11 Social network service 12 Digg 24 Facebook 33 LinkedIn 48 MySpace 52 Newsvine 70 Reddit 74 StumbleUpon 80 Twitter 84 YouTube 98 XING 112 References Article Sources and Contributors 115 Image Sources, Licenses and Contributors 123 Article Licenses License 125 Social media 1 Social media Social media are media for social interaction, using highly accessible and scalable publishing techniques. Social media uses web-based technologies to turn communication into interactive dialogues. Andreas Kaplan and Michael Haenlein define social media as "a group of Internet-based applications that build on the ideological and technological foundations of Web 2.0, which allows the creation and exchange of user-generated content."[1] Businesses also refer to social media as consumer-generated media (CGM). Social media utilization is believed to be a driving force in defining the current time period as the Attention Age. A common thread running through all definitions of social media is a blending of technology and social interaction for the co-creation of value. Distinction from industrial media People gain information, education, news, etc., by electronic media and print media. Social media are distinct from industrial or traditional media, such as newspapers, television, and film. They are relatively inexpensive and accessible to enable anyone (even private individuals) to publish or access information, compared to industrial media, which generally require significant resources to publish information.
    [Show full text]
  • E-Learning 3.0 = E-Learning 2.0 + Web 3.0?
    IADIS International Conference on Cognition and Exploratory Learning in Digital Age (CELDA 2012) E-LEARNING 3.0 = E-LEARNING 2.0 + WEB 3.0? Fehmida Hussain Middlesex University, Dubai ABSTRACT Web 3.0, termed as the semantic web or the web of data is the transformed version of Web 2.0 with technologies and functionalities such as intelligent collaborative filtering, cloud computing, big data, linked data, openness, interoperability and smart mobility. If Web 2.0 is about social networking and mass collaboration between the creator and user, then the Web 3.0 is referring to intelligent applications using natural language processing, machine-based learning and reasoning. From the perspective of advancements in e-Learning, the Web 2.0 technologies have transformed the classroom and converted a passive learner into an active participant in the learning process. This paper posits that the way both previous generations of e-Learning (1.0 and 2.0) have emerged with the prevalent technologies in their kin Web versions (1.0 and 2.0, respectively), it can be argued that e-Learning 3.0 will provide all earlier generations’ capabilities enhanced with the Web 3.0 technologies. Furthermore, in this paper, reviewing all the theories of learning and examining closely the theory of connectivism (considered to be the theory of learning for the digital age), it is argued that since most of the technologies that are to be a part of e-Learning 3.0 are addressed by these principles, a call for a new learning theory for e-Learning 3.0 is not justified.
    [Show full text]
  • Social Tagging in the Life Sciences: Characterizing a New Metadata Resource for Bioinformatics Benjamin M Good*1, Josephttennis2 and Mark D Wilkinson1
    BMC Bioinformatics BioMed Central Research article Open Access Social tagging in the life sciences: characterizing a new metadata resource for bioinformatics Benjamin M Good*1, JosephTTennis2 and Mark D Wilkinson1 Address: 1Heart + Lung Institute at St. Paul's Hospital, University of British Columbia, Vancouver, Canada and 2Information School, University of Washington, Seattle, USA Email: Benjamin M Good* - [email protected]; Joseph T Tennis - [email protected]; Mark D Wilkinson - [email protected] * Corresponding author Published: 25 September 2009 Received: 11 March 2009 Accepted: 25 September 2009 BMC Bioinformatics 2009, 10:313 doi:10.1186/1471-2105-10-313 This article is available from: http://www.biomedcentral.com/1471-2105/10/313 © 2009 Good et al; licensee BioMed Central Ltd. This is an Open Access article distributed under the terms of the Creative Commons Attribution License (http://creativecommons.org/licenses/by/2.0), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited. Abstract Background: Academic social tagging systems, such as Connotea and CiteULike, provide researchers with a means to organize personal collections of online references with keywords (tags) and to share these collections with others. One of the side-effects of the operation of these systems is the generation of large, publicly accessible metadata repositories describing the resources in the collections. In light of the well-known expansion of information in the life sciences and the need for metadata to enhance its value, these repositories present a potentially valuable new resource for application developers. Here we characterize the current contents of two scientifically relevant metadata repositories created through social tagging.
    [Show full text]
  • The Social Semantic Web
    The Social Semantic Web Bearbeitet von John Breslin, Alexandre Passant, Stefan Decker 1. Auflage 2009. Buch. IX, 300 S. Hardcover ISBN 978 3 642 01171 9 Format (B x L): 15,5 x 23,5 cm Gewicht: 1360 g Weitere Fachgebiete > EDV, Informatik > Informatik > Natürliche Sprachen & Maschinelle Übersetzung schnell und portofrei erhältlich bei Die Online-Fachbuchhandlung beck-shop.de ist spezialisiert auf Fachbücher, insbesondere Recht, Steuern und Wirtschaft. Im Sortiment finden Sie alle Medien (Bücher, Zeitschriften, CDs, eBooks, etc.) aller Verlage. Ergänzt wird das Programm durch Services wie Neuerscheinungsdienst oder Zusammenstellungen von Büchern zu Sonderpreisen. Der Shop führt mehr als 8 Millionen Produkte. 2 Motivation for applying Semantic Web technologies to the Social Web Many will have become familiar with popular Social Web applications such as blogging, social networks and wikis, and will be aware that we are heading towards an interconnected information space (through the blogosphere, in- ter-wiki links, mashups, etc.). At the same time, these applications are experi- encing boundaries in terms of information integration, dissemination, reuse, portability, searchability, automation and more demanding tasks like query- ing. The Semantic Web is increasingly aiming at these applications areas - quite a number of Semantic Web approaches have appeared in recent years to overcome the boundaries in these application areas, e.g. semantic wikis (Semantic MediaWiki), knowledge networking (Twine), embedded microcon- tent detection and reuse (Operator, Headup, Semantic Radar), social graph and data portability APIs (from Google and Facebook), etc. In an effort to consolidate and combine knowledge about existing efforts, we aim to educate readers about Social Web application areas and new avenues open to com- mercial exploitation in the Semantic Web.
    [Show full text]
  • Semantic Web Beyond Science Fiction
    Semantic Web Beyond Science Fiction Author Dr. Usha Thakur, ATS Technical Research HCL Technologies, Chennai Semantic Web: Beyond Science Fiction © 2009, HCL Technologies Ltd. August, 2009 Semantic Web: Beyond Science Fiction 2 Contents Introduction .................................................................................................................................................. 4 Purpose ......................................................................................................................................................... 4 Do We Need Semantic Web? ........................................................................................................................ 5 Challenges and Responses ............................................................................................................................ 8 Key Initiatives ............................................................................................................................................ 8 Do We Have Any Takers? ............................................................................................................................ 13 Current Initiatives ................................................................................................................................... 14 Semantic Web in Health Sciences/Care and Life Sciences ...................................................................... 17 The Point Is…. .............................................................................................................................................
    [Show full text]
  • The Social Semantic Web John G
    The Social Semantic Web John G. Breslin · Alexandre Passant · Stefan Decker The Social Semantic Web 123 John G. Breslin Alexandre Passant Electrical and Electronic Engineering Digital Enterprise Research School of Engineering and Informatics Institute (DERI) National University of Ireland, Galway National University of Ireland, Galway Nuns Island IDA Business Park Galway Lower Dangan Ireland Galway [email protected] Ireland [email protected] Stefan Decker Digital Enterprise Research Institute (DERI) National University of Ireland, Galway IDA Business Park Lower Dangan Galway Ireland [email protected] ISBN 978-3-642-01171-9 e-ISBN 978-3-642-01172-6 DOI 10.1007/978-3-642-01172-6 Springer Heidelberg Dordrecht London New York Library of Congress Control Number: 2009936149 ACM Computing Classification (1998): H.3.5, H.4.3, I.2, K.4 c Springer-Verlag Berlin Heidelberg 2009 This work is subject to copyright. All rights are reserved, whether the whole or part of the material is concerned, specifically the rights of translation, reprinting, reuse of illustrations, recitation, broadcasting, reproduction on microfilm or in any other way, and storage in data banks. Duplication of this publication or parts thereof is permitted only under the provisions of the German Copyright Law of September 9, 1965, in its current version, and permission for use must always be obtained from Springer. Violations are liable to prosecution under the German Copyright Law. The use of general descriptive names, registered names, trademarks, etc. in this publication does not imply, even in the absence of a specific statement, that such names are exempt from the relevant protective laws and regulations and therefore free for general use.
    [Show full text]
  • The Semantic Web: Lighter, Faster, Easier
    The Semantic Web (ca. 2001) (Berners-Lee, Hendler, Lassila; 2001) Semantic Web ca. 2009 • Semantic Web finding success even in tough market – Lots of small companies in the market: Altova… Zepheira (eg. C&P, Franz, Intellidimension, Intellisophic, Ontology Works, Siderean, SandPiper, SiberLogic, TopQuadrant …) – Web 3.0 new buzzword: Garlik, Twine, Freebase, Bintro, Siri, Talis, … – Semantic Search taking off - Powerset bought by Microsoft for over $100,000,000, hakia, bing, … • Bigger players buying in – 2009 announcements at SemTech (June): Google, New York Times, Oracle, IBM, Yahoo, MS Live Labs, Siri, … – 2008: Gartner identifies Corporate Semantic Web as one of three "High impact" Web technologies – Tool market forming: AllegroGraph, TopBraid, Pellet2, … • Government projects in and across agencies – Recent open data announcements by UK and US – Projects/demos in EU, Japan, Korea, China, India… – SKOS update in govt (and private) libraries • Several "verticals" heavily using Semantic Web technologies – Health Care and Life Sciences • Interest Group at W3C – Financial services – Human Resources – Sciences other than Life Science • Virtual observatory, Geo ontology, … • Many open source tools available – Kowari, RDFLib, Jena, Sesame, Protégé, SWOOP, Pellet, … Different terms being used in different ways Linked Data: Mashup the data… Then build your app on top Dbpedia mobile HealthFinland Semaplorer Builds over RDF DBs • The Profile Manager enables you to store information about users and services. It is a Resource Description Framework (RDF) data store and is general nature, so you can store any information that is required by your system. … There are two main benefits offered by a profile store that has been created by using RDF. The first is that RDF enables you to store data in a flexible schema so you can store additional types of information that you might have been unaware of when you originally designed the schema.
    [Show full text]
  • Web Squared: Web 2.0 Five Years On
    Special Report Web Squared: Web 2.0 Five Years On By Tim O’Reilly and John Battelle CO-PRODUCED BY Contents Web Squared: Web 2.0 Five Years On .......................................................................................... 1 Redefining Collective Intelligence: New Sensory Input ................................................................................................ 2 How the Web Learns: Explicit vs. Implicit Meaning ................................................................................... 4 Web Meets World: The “Information Shadow” and the “Internet of Things” ................................................................................... 4 The Rise of Real Time: A Collective Mind ................................................................................................... 9 In Conclusion: The Stuff That Matters .................................................................. 10 About the Authors ............................................................................................... 13 Disclosure: Via our venture investing arm, O’Reilly AlphaTech Ventures, O’Reilly is an investor in three of the companies mentioned in this article: Wesabe, AMEE, and bit.ly ©2009 O’Reilly Media, Inc. O’Reilly logo is a registered trademark of O’Reilly Media, Inc. All other trademarks are the property of their respective owners. 90369 web2summit.com Web Squared: Web 2.0 Five Years On ive years ago, we launched a conference based system are increasingly data subsystems: location, on a simple idea, and that
    [Show full text]
  • The Social Semantic Web
    John G. Breslin • Alexandre Passant • Stefan Decker The Social Semantic Web 4y Springer Contents 1 Introduction to the book .....1 1.1 Overview 1 1.2 Aims of the book, and who will benefit from it? 3 1.3 Structure of the book 4 1.3.1 Motivation for applying Semantic Web technologies to the Social Web », 5 1.3.2 Introduction to the Social Web (Web 2.0, social media, social software) . 5 1.3.3 Adding semantics to the Web ,6 1.3.4 Discussions 6 1.3.5 Knowledge and information sharing .6 1.3.6 Multimedia sharing 7 1.3.7 Social tagging 7 1.3.8 Social sharing of software ..7 1.3.9 Social networks 8 1.3.10 Interlinking online communities . ....8 1.3.11 Social Web applications in enterprise „„...8 1.3.12 Towards the Social Semantic Web 9 2 Motivation for applying Semantic Web technologies to the Social Web 11 2.1 Web 2.0 and the Social Web 11 2.2 Addressing limitations in the Social Web with semantics 13 2.3 The Social Semantic Web: more than the sum of its parts Î 5 2.4 A food chain of applications for the Social Semantic Web 17 2.5 A practical Social Semantic Web • 19 3 Introduction to the Social Web (Web 2.0, social media, social software) w.21 3.1 From the Web to a Social Web 21 3.2 Common technologies and trends 25 3.2.1 RSS..» 25 3.2.2 AJAX»... 27 3.2.3 Mashups 28 3.2.4 Advertising »» , .»»»»» .„.30 3.2.5 The Web on any device ........32 3.2.6 Content delivery» »»».» »».
    [Show full text]
  • Technology Forecast Systems Are Not Designed for This On-The-Fly Creation of • Tom Scott of BBC Earth Talks About His Company’S Meaning
    Technologyforecast A quarterly journal Spring 2009 In this issue 04 20 32 Spinning a data Web Making Semantic Web A CIO’s strategy for connections rethinking “messy BI” Contents Features 04 Spinning a data Web Semantic Web technologies could revolutionize enterprise decision making and information sharing. Here’s why. 20 Making Semantic Web connections Linked Data technology can change the business of enterprise data management. 32 A CIO’s strategy for rethinking “messy BI” Take the initial steps toward your next-generation data architecture. Interviews 16 Traversing the Giant Global Graph Tom Scott of BBC Earth describes how everyone benefits from interoperable data. 28 From folksonomies to ontologies Uche Ogbuji of Zepheira discusses how early adopters are introducing Semantic Web to the enterprise. 40 How the Semantic Web might improve cancer treatment M. D. Anderson’s Lynn Vogel explores new techniques for combining clinical and research data. 46 Semantic technologies at the ecosystem level Frank Chum of Chevron talks about the need for shared ontologies in the oil and gas industry. Departments 02 Message from the editor 52 Acknowledgments 56 Subtext Message from the editor In the middle of a downturn, the nature of industry change becomes more apparent. Take newspapers, for example. After 146 years, the Seattle Post- Intelligencer stopped its presses in March to publish solely on the Web. In Denver, the Rocky Mountain News closed entirely, just weeks short of its 150th anniversary. The Detroit Free Press has come up with an alternative strategy of offering home delivery only three days a week. Newspapers certainly haven’t been immune to change since the advent of the Web, but the current economic downturn clearly has accelerated the pace of that change.
    [Show full text]
  • Case Study: Twine
    > Semantic Web Use Cases and Case Studies Case Study: Twine Jim Wissner and Nova Spivack, Twine, USA April 2009 Introduction Twine helps people track, discover, and share content around topics they are interested in. Twine is built on a semantic applications platform that combines W3C standards for RDF and OWL with natural-language processing, statistical analysis and graph analysis capabilities. Twine is developed by Radar Networks, headquartered in San Francisco. Before developing Twine, Radar Networks had worked on the CALO (Cognitive agent That Learns and Organizes) project, a distributed research program focused on next-generation semantically-aware machine learning applications. The Twine product was initially shown in late 2007 and early 2008 and became publicly available in October 2008. The Problem The problem that Twine seeks to address is that of helping people keep up with their interests in the face of a growing information overload. The information explosion that is currently taking place is increasingly hard to keep up with. There are too many sources of information, too many types of information, and too much change for any individual to cope with. Solutions are needed to help people productively track their interests and discover content around them. Solution Radar Networks has developed a proprietary and highly scalable triple store. Above that they have built a full knowledge-base driven applications platform that also relies on semantics for much of its internal functioning. For example, many application level concepts in the Radar Networks platform are defined ontologically: user accounts, application and data permissions, various types of content objects, social relationships between users, and even user-interface components.
    [Show full text]