Learning Mathematics with
|
|
|
- Brett Robinson
- 10 years ago
- Views:
Transcription
1 Deutsches Forschungszentrum für f r Künstliche K Intelligenz Learning Mathematics with Jörg Siekmann German Research Centre for Artificial Intelligence DFKI Universität des Saarlandes
2 e-learning: Systems and Platforms Systems: - Pact-Tutors, - Geometry Tutor, ActiveMath, - ELM-Art.... etc Platforms: - Clix - SAKAI - BLACKBOARD... etc Portals: Nets,... - for example: SaarLearn Net - regional nets, European e-learning Nets, Commercial Companies: - Thompson (USA) - IMC (Scheer), e-tell (Melis), Auralog (France), Giunti Labs (Italy), - Blackboard + WebCT.... etc
3 What is an Intelligent Tutor System? ITS: Cassical Tutor Systems: - precanned solutions Intelligent Features: Adaptive sequencing Interactive problem solving Error diagnosis User Model Personalization of: Content Presentation Dynamically generated suggestions
4 The System
5 Pedagogical Goals: Personalization Contents, exercises Presentation Interaction for individual content in interactive exercises learning tools, reflection tools Natural language dialogs and input editor Diagnosis and feedback motivational support scaffolding
6 Technological Goals Separation of knowledge and functionality Reuse of contents (via standards) Reuse and interoperability of tools and components Semantics for formulae, searchable mathematics content Various output formats and appearances Open web-architecture, modular design, configurability Standard XML-communication Platform-independence open source
7 Interdisciplinary Work AI ITS Computational Linguistics Learning Psychology Web Technology Education Domain knowledge
8 Artificial Intelligence Techniques user modeling presentation planning adaptive user interfaces problem solving systems deduction systems knowledge representation error diagnosis agent-based feedback natural language processing
9 Login :
10 ActiveMath: Start Page created by learner by by author/teacher author/teacher
11 Choice of Book :: Selection of the Scenario
12 Wahl des Buches (in German)
13 Choice of Book :: Chinese
14 Choice of Book : Русский (Russian)
15 Choice of Book :: Français.) ais (and Spanish and...
16 Adaptivity: The Student s Background Mathematics Biology Physics
17 Adaptivity: The Student s Competency Same Content, different Learning Goals Introduction to Calculus Anton Physics University, Master Prep for Examination Eva Mathematics High School, A-level Learning/Understanding
18 Scenario for Anton: Definitions and Exercises
19 Scenario for Eva: Learning in Depth
20 The different Books Web based: Wicky or Google
21 A Book : How good are you? Good mastery Medium mastery Weak mastery
22 Scenario: Unmastered Concepts
23 Scenario: Unmastered Concepts
24 How can this be implemented? Course Generation: MBase MBase OMDoc OMDoc Course Generator Pedagogical Pedagogical Rules Rules User User Model Model
25 Course Generation Course Generator: assembles learning objects according to learner s Goals Capability Context/scenario Using an Operator like: ProvideAdequateExerciseFor(C): if mastery(c)<0.3 then Exercise(easy) if 0.3 mastery(c)<0.7 then Exercise(medium) if 0.7 mastery(c)<1 then Exercise(hard) With instructional ontology: vocabulary at the adequate level of abstraction for defining complex domain independent pedagogical strategies moderate constructivist strategies traditional didactic strategies
26 Course Generation (1) Goal concept 1. Retrieve content from knowledge base Start with goal concept Collect recursively concepts the goal depends on plus additional information (e.g. examples)
27 Course Generation (2) Goal concept 2. Filter concepts According to pedagogical rules According to the user model Defrule PatternExamPrep Allow (definition, exercise) Order (definition, exercise) Defrule ReqAppEx Allow (definition, exercise) Test (user-kb(definition)<0.3) Add ex-for(definition 0.3) ex-for(definition 0.5)
28 Course Generation (3) Goal concept 3. Linearize graph according to mathematical dependency according to pedagogical dependency
29 Knowledge Representation
30 Knowledge Representation Metadata Mathematical dependencies for, theory Pedagogical dependencies prerequisites, against Pedagogical characteristics difficulty, competencies... Domain Data: OMDoc / OpenMath Structures: theory, definition, axiom, example Mathematical semantics
31 Knowledge Representation OpenMath/OMDoc Representation of the semantics of mathematical knowledge - Domain ontology - Structures - Semantics of mathematical objects Metadata characterization and relationships between instructional objects - Semantic handling of formulas: search, copy&paste - Interoperability of mathematical services - Interoperability & intelligent automatic processing at the pedagogical level
32 Definition ε-neighborhood Theorem Proof Example neighborhood-equality for neighborhood-equality for ε-neighborhood Exercise for ε-neighborhood
33 OMDoc Knowledge Representation <definition id="c6s1p4_th2_def_monoid" for="c6s1p4_monoid <metadata> <depends-on> <ref theory="cp1_th3" name="structure" /> </depends-on> <Title xml:lang="en">definition of a monoid</title> </metadata> <CMP xml:lang="en" format="omtext"> A monoid is a <ref xref="cp1_th3_def_structure"> structure </ref> <OMOBJ> <OMS cd="elementary" name="ordered-triple"/> <OMV name="m"/> <OMS cd="cp4_th2" name="times"/> <OMS cd="cp4_th2" name="unit"/> </OMOBJ> in which <OMOBJ> <OMS cd="elementary" name="ordered-pair"/> <OMV name="m"/> <OMS cd="cp4_th2" name="times"/> </OMOBJ> is a semi-group with <ref xref="c6s1p3_th2_def_unit">e</ref> <OMOBJ xmlns=" <OMS cd="cp4_th2" name="unit"/> </OMOBJ>. </CMP> <FMP><OMOBJ>... </OMOBJ></FMP> </definition>
34 Feedback
35 Feedback in Exercises
36 Feedback in Exercises
37 Feedback in Exercises
38 Another Help in an Exercise
39 Interactive Mathematics Interactive Mathematics
40 Interactive Math
41 Interactive Math
42 Interactive Math
43 Interactive Math
44 My Profile my current Knowledge
45 My Profile my current Knowledge
46 IMPLEMENTATION
47 Information Flow in Session Manager xml XSLT html request WebServer http browser Course generator Pedagogical rules CAS Math systems MBase User model profile evaluator history
48 SE: Event Framework Components can publish and subscribe - Event object: Type, timestamp, source, - Loose coupling between components Used for: - Generic component integration - User logging -User modeling - - better scalability: Clients can poll events
49 Example: Mastery Update Event: UserMastery- Change Event: Exercise- Finished User action (http request)
50 Presentation Process for Mathematics
51 Presentation Process Naive approach: Start with table of contents Bring XML-fragments together Apply XSLT transformation Issues Low performance Adaptivity logic defined in XSLT Layout defined in XSLT
52 ActiveMath Presentation Component Idea: 2-stage approach for presentation First stage deals with individual content fragments Second stage combines fragments to user-specific pages, enriched with dynamic data (via templates)
53 Presentation Pipeline: Fetching Collects content from knowledge base The output of this step are XML fragments <definition id="def1"> Definition 1 with a reference to <ref xref="def2">definition 2.</ref> </definition>
54 Presentation Pipeline: Pre-Processing Inserts server-specific information into the XML content <definition id="kb1://def1"> Definition 1 with a reference to <ref xref="kb1://def2">definition 2.</ref> </definition>
55 Presentation Pipeline: Transformation Conversion into the output format by XSLT Output: content fragments <div class="definition" id="kb1://def1"> Definition 1 with a reference to $link.dict("definition 2", "kb1://def2"). </div>
56 Presentation Pipeline: Assembly Joins the fragments to form the requested page <html> <head/><body> This page is generated for $user.name. <!-- begin item --> <div class="definition" id="kb1://def1"> Definition 1 with a reference to $link.dict("definition 2", "kb1://def2"). </div> <!-- end item --> </body></html>
57 Presentation Pipeline: Personalization Adds personalized data to the document This page is generated for $user.name. <!-- begin item --> <div class="definition" id="kb1://def1"> Definition 1 with a reference to <a onclick="openindictionary( kb1://def2 )"> <img src="green.jpg"/> Definition 2 </a>. </div> <!-- end item -->
58 Advantages of this Approach Multi-formats HTML, XHTML+MathML, PDF, SVG, slides Caching real performance much higher Incremental rendering perceived performance much higher High flexibility Separation of concerns (MVC) Eases layout changes
59 More specifically: Presentation of Mathematics Mathematics on the Web is a problem: Mostly just as an image No semantics ActiveMath: HTML, MathML, (SVG) Cross-browser: Internet Explorer, Mozilla Usage of semantics to add invisible information Authorable appearance
60 Math: HMTL
61 Math: XHTML+MathML
62 Math: PDF SVG
63 Mathematical Semantics: Rendering
64 Applications: BRÜCKENKURSE Courses to bridge between School and Further Education at University, Engineering Colleges etc
65 Student Numbers in Engineering Total Number of Students A possible Remedy: Brückenkurse with e-learning Final No: in 1996 there were graduated engineers successful in 2002 there were only approx finalists! Failure Rate: between 43 und 61% (!)
66 Another Application: E-Chalk Integration of ActiveMath into the Classroom
67 E-Chalk: Raul Rojas in Berlin Cooperation with Freie Universität Berlin
68
69 FU Berlin: Formula Recognition
70 Cooperation between Maths Department Saarbrücken and DFKI Prof. F. Schreyer: Computeralgebra and Rendering
71 Cooperation between Maths Department and DFKI Oliver Labs: 3-D Object Definition and Rendering
72
73 ActiveMath in Action Thanks for Listening!
Selbo 2 an Environment for Creating Electronic Content in Software Engineering
BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 9, No 3 Sofia 2009 Selbo 2 an Environment for Creating Electronic Content in Software Engineering Damyan Mitev 1, Stanimir
Semantic EPC: Enhancing Process Modeling Using Ontologies
Institute for Information Systems IWi Institut (IWi) für at the German Research Wirtschaftsinformatik Center for im DFKI Saarbrücken Artificial Intelligence (DFKI), Saarland University Semantic EPC: Enhancing
Building A Very Simple Web Site
Sitecore CMS 6.2 Building A Very Simple Web Site Rev 100601 Sitecore CMS 6. 2 Building A Very Simple Web Site A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Building
The Intelligent Content Framework
The Intelligent Content Framework A practical approach to accelerating the Study Design and Regulatory Documentation Development Processes using a Rules-driven, Structured Content Authoring Solution Framework
An Ontology-based e-learning System for Network Security
An Ontology-based e-learning System for Network Security Yoshihito Takahashi, Tomomi Abiko, Eriko Negishi Sendai National College of Technology [email protected] Goichi Itabashi Graduate School
INSPIRE Dashboard. Technical scenario
INSPIRE Dashboard Technical scenario Technical scenarios #1 : GeoNetwork catalogue (include CSW harvester) + custom dashboard #2 : SOLR + Banana dashboard + CSW harvester #3 : EU GeoPortal +? #4 :? + EEA
MyMobileAPI. mymobileapi.com. Email to SMS - Alternate sending option
MyMobileAPI mymobileapi.com TABLE OF CONTENTS Introduction... 3 Email to SMS Prerequisite... 3 Register... 3 Example of registration... 4 Single SMS - How to Send... 4 Single SMS - Example of Sending...
Bureau for Visual Affairs. content management system. Keep your website up-to-date and relevant with ease
content management system Keep your website up-to-date and relevant with ease 1 Only an up-to-date and well maintained website is perceived as relevant and will generate return visits and involvement.
SOA, case Google. Faculty of technology management 07.12.2009 Information Technology Service Oriented Communications CT30A8901.
Faculty of technology management 07.12.2009 Information Technology Service Oriented Communications CT30A8901 SOA, case Google Written by: Sampo Syrjäläinen, 0337918 Jukka Hilvonen, 0337840 1 Contents 1.
Authoring Guide for Perception Version 3
Authoring Guide for Version 3.1, October 2001 Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise noted.
Actuate Business Intelligence and Reporting Tools (BIRT)
Product Datasheet Actuate Business Intelligence and Reporting Tools (BIRT) Eclipse s BIRT project is a flexible, open source, and 100% pure Java reporting tool for building and publishing reports against
DIABLO VALLEY COLLEGE CATALOG 2014-2015
COMPUTER SCIENCE COMSC The computer science department offers courses in three general areas, each targeted to serve students with specific needs: 1. General education students seeking a computer literacy
WIRIS quizzes web services Getting started with PHP and Java
WIRIS quizzes web services Getting started with PHP and Java Document Release: 1.3 2011 march, Maths for More www.wiris.com Summary This document provides client examples for PHP and Java. Contents WIRIS
AN INTELLIGENT TUTORING SYSTEM FOR LEARNING DESIGN PATTERNS
AN INTELLIGENT TUTORING SYSTEM FOR LEARNING DESIGN PATTERNS ZORAN JEREMIĆ, VLADAN DEVEDŽIĆ, DRAGAN GAŠEVIĆ FON School of Business Administration, University of Belgrade Jove Ilića 154, POB 52, 11000 Belgrade,
Pragmatic Web 4.0. Towards an active and interactive Semantic Media Web. Fachtagung Semantische Technologien 26.-27. September 2013 HU Berlin
Pragmatic Web 4.0 Towards an active and interactive Semantic Media Web Prof. Dr. Adrian Paschke Arbeitsgruppe Corporate Semantic Web (AG-CSW) Institut für Informatik, Freie Universität Berlin [email protected]
System Description: The MathWeb Software Bus for Distributed Mathematical Reasoning
System Description: The MathWeb Software Bus for Distributed Mathematical Reasoning Jürgen Zimmer 1 and Michael Kohlhase 2 1 FB Informatik, Universität des Saarlandes [email protected] 2 School of Computer
dynamic Learning Content Management System
dynamic Learning Content Management System Samuel Schluep, [email protected] Contents 1. Introduciton to Learning Objects 2. The dlcms-project 1. Goals 2. Architecture 3. Implementation 3. Demo E-Learning
MS-55052: SharePoint 2013 End User Level II
MS-55052: SharePoint 2013 End User Level II Description This 3-day Instructor led course Explore several advanced topics of working with SharePoint 2013 sites. Topics include SharePoint Server site definitions
SAP Cloud Identity Service Document Version: 1.0 2014-09-01. SAP Cloud Identity Service
Document Version: 1.0 2014-09-01 Content 1....4 1.1 Release s....4 1.2 Product Overview....8 Product Details.... 9 Supported Browser Versions....10 Supported Languages....12 1.3 Getting Started....13 1.4
design coding monitoring deployment Java Web Framework for the Efficient Development of Enterprise Web Applications
Java Web Framework for the Efficient Development of Enterprise Web Applications Evolution Framework tools 100% reusability Complete Development Kit Evolution Framework enables fast and easy development
Content Management Systems: Drupal Vs Jahia
Content Management Systems: Drupal Vs Jahia Mrudula Talloju Department of Computing and Information Sciences Kansas State University Manhattan, KS 66502. [email protected] Abstract Content Management Systems
Build Your Knowledge!
About this Course This 3-day Instructor led course Explore several advanced topics of working with SharePoint 2013 sites. Topics include SharePoint Server site definitions (Business Intelligence, Document
Studio. Rapid Single-Source Content Development. Author XYLEME STUDIO DATA SHEET
Studio Xyleme delivers content management for learning and development. We transform the way you author, publish, deliver, and analyze learning content to drive business performance. With Xyleme, you have
Quality Assurance Checklists for Evaluating Learning Objects and Online Courses
NHS Shared Learning Quality Assurance Checklists for Evaluating Learning Objects and Online Courses February 2009 Page 1 Note This document provides an outline of the Resource workflow within NHS Shared
technische universiteit eindhoven WIS & Engineering Geert-Jan Houben
WIS & Engineering Geert-Jan Houben Contents Web Information System (WIS) Evolution in Web data WIS Engineering Languages for Web data XML (context only!) RDF XML Querying: XQuery (context only!) RDFS SPARQL
This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications.
20486B: Developing ASP.NET MVC 4 Web Applications Course Overview This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. Course Introduction Course Introduction
Semantic Web Services for e-learning: Engineering and Technology Domain
Web s for e-learning: Engineering and Technology Domain Krupali Shah and Jayant Gadge Abstract E learning has gained its importance over the traditional classroom learning techniques in past few decades.
Senior High Mathematics in Nova Scotia Schools
Senior High Mathematics in Nova Scotia Schools Implementation Schedule for High School Course Mathematics at Work 10 Mathematics 10 Mathematics at Work 11 Mathematics 11 Pre-Calculus 11 Mathematics at
Terms and Definitions for CMS Administrators, Architects, and Developers
Sitecore CMS 6 Glossary Rev. 081028 Sitecore CMS 6 Glossary Terms and Definitions for CMS Administrators, Architects, and Developers Table of Contents Chapter 1 Introduction... 3 1.1 Glossary... 4 Page
Open Data Integration Using SPARQL and SPIN
Open Data Integration Using SPARQL and SPIN A Case Study for the Tourism Domain Antonino Lo Bue, Alberto Machi ICAR-CNR Sezione di Palermo, Italy Research funded by Italian PON SmartCities Dicet-InMoto-Orchestra
MODELLING, AUTHORING AND PUBLISHING THE DOCUMENT ANALYSIS LEARNING OBJECT
MODELLING, AUTHORING AND PUBLISHING THE DOCUMENT ANALYSIS LEARNING OBJECT Alexandre Flament ([email protected]) Emmanuelle Villiot-Leclercq ([email protected]) Laboratoire CLIPS,
SOA Planning Guide. 2015 The Value Enablement Group, LLC. All rights reserved.
SOA Planning Guide 1 Agenda q SOA Introduction q SOA Benefits q SOA Principles q SOA Framework q Governance q Measurement q Tools q Strategic (long term) View 2 Introduction to SOA q Service-oriented architecture
E-Learning at school level: Challenges and Benefits
E-Learning at school level: Challenges and Benefits Joumana Dargham 1, Dana Saeed 1, and Hamid Mcheik 2 1. University of Balamand, Computer science department [email protected], [email protected]
ONTOLOGY BASED FEEDBACK GENERATION IN DESIGN- ORIENTED E-LEARNING SYSTEMS
ONTOLOGY BASED FEEDBACK GENERATION IN DESIGN- ORIENTED E-LEARNING SYSTEMS Harrie Passier and Johan Jeuring Faculty of Computer Science, Open University of the Netherlands Valkenburgerweg 177, 6419 AT Heerlen,
Enterprise Service Bus
We tested: Talend ESB 5.2.1 Enterprise Service Bus Dr. Götz Güttich Talend Enterprise Service Bus 5.2.1 is an open source, modular solution that allows enterprises to integrate existing or new applications
Presente e futuro del Web Semantico
Sistemi di Elaborazione dell informazione II Corso di Laurea Specialistica in Ingegneria Telematica II anno 4 CFU Università Kore Enna A.A. 2009-2010 Alessandro Longheu http://www.diit.unict.it/users/alongheu
Texas High School Math Program Overview
1 Texas High School Math Program Overview Introduction In this tutorial, you ll explore the Pearson Texas High School Math program: Algebra I, Geometry, and Algebra II. You ll review the program components
Administrator s Guide
SEO Toolkit 1.3.0 for Sitecore CMS 6.5 Administrator s Guide Rev: 2011-06-07 SEO Toolkit 1.3.0 for Sitecore CMS 6.5 Administrator s Guide How to use the Search Engine Optimization Toolkit to optimize your
Exploiting User and Process Context for Knowledge Management Systems
Workshop on User Modeling for Context-Aware Applications at the 8th Int. Conf. on User Modeling, July 13-16, 2001, Sonthofen, Germany Exploiting User and Process Context for Knowledge Management Systems
USING OPEN STUDENT MODELS IN DISTANCE LEARNING ENVIRONMENTS TO HELP TEACHERS PROVIDE ADAPTIVE TUTORING
24_MAZZA.qxd 3/26/2003 10:59 Pagina 245 SComS: New Media in Education (2003) 245-251 RICCARDO MAZZA 1 * USING OPEN STUDENT MODELS IN DISTANCE LEARNING ENVIRONMENTS TO HELP TEACHERS PROVIDE ADAPTIVE TUTORING
Kybots, knowledge yielding robots German Rigau IXA group, UPV/EHU http://ixa.si.ehu.es
KYOTO () Intelligent Content and Semantics Knowledge Yielding Ontologies for Transition-Based Organization http://www.kyoto-project.eu/ Kybots, knowledge yielding robots German Rigau IXA group, UPV/EHU
System Administrator Training Guide. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.
System Administrator Training Guide Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.com Contents Contents... 2 Before You Begin... 4 Overview... 4
Creating an Enterprise Reporting Bus with SAP BusinessObjects
September 10-13, 2012 Orlando, Florida Creating an Enterprise Reporting Bus with SAP BusinessObjects Kevin McManus LaunchWorks Session : 0313 Learning Points By consolidating people, process, data and
ONTOLOGY-BASED APPROACH TO DEVELOPMENT OF ADJUSTABLE KNOWLEDGE INTERNET PORTAL FOR SUPPORT OF RESEARCH ACTIVITIY
ONTOLOGY-BASED APPROACH TO DEVELOPMENT OF ADJUSTABLE KNOWLEDGE INTERNET PORTAL FOR SUPPORT OF RESEARCH ACTIVITIY Yu. A. Zagorulko, O. I. Borovikova, S. V. Bulgakov, E. A. Sidorova 1 A.P.Ershov s Institute
Overview Document Framework Version 1.0 December 12, 2005
Document Framework Version 1.0 December 12, 2005 Document History Date Author Version Description October 5, 2005 Carl Yestrau 1.0 First complete version December 12, 2005 Page A Table of Contents 1.0
Emerging Technologies Shaping the Future of Data Warehouses & Business Intelligence
Emerging Technologies Shaping the Future of Data Warehouses & Business Intelligence Service Oriented Architecture SOA and Web Services John O Brien President and Executive Architect Zukeran Technologies
DE-20489B Developing Microsoft SharePoint Server 2013 Advanced Solutions
DE-20489B Developing Microsoft SharePoint Server 2013 Advanced Solutions Summary Duration Vendor Audience 5 Days Microsoft Developer Published Level Technology 21 November 2013 300 Microsoft SharePoint
Management and Web service Management
Management and Web service Management This presentation offers work to OASIS completed by IBM with contribution from CA and Talking Blocks The work details a frame of reference for Management Applications,
WebSphere Business Monitor
WebSphere Business Monitor Dashboards 2010 IBM Corporation This presentation should provide an overview of the dashboard widgets for use with WebSphere Business Monitor. WBPM_Monitor_Dashboards.ppt Page
The Relevance of CS and SE Education: A Survey
The Relevance of CS and SE Education: A Survey Timothy C. Lethbridge Conference on Software Engineering Education and Training Atlanta, Feb. 2 1998 1 Methodology 168 Participants Supported by several companies
Learners will develop skills in planning and managing information to produce an interactive website.
Unit IT9: Website Design Level: 1 Unit type: IT Guided learning: 40 hours Unit in brief Learners will develop skills in planning and managing information to produce an interactive website. Unit introduction
CASSANDRA: Version: 1.1.0 / 1. November 2001
CASSANDRA: An Automated Software Engineering Coach Markus Schacher KnowGravity Inc. Badenerstrasse 808 8048 Zürich Switzerland Phone: ++41-(0)1/434'20'00 Fax: ++41-(0)1/434'20'09 Email: [email protected]
ORACLE BUSINESS INTELLIGENCE WORKSHOP
ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with
Introduction to E-Learning Technologies. Prof. dr. Paul De Bra Dr. ir. Natalia Stash
Introduction to E-Learning Technologies Prof. dr. Paul De Bra Dr. ir. Natalia Stash Presentation Outline What is & Why E-learning? E-learning technologies: where? @ Information Systems Section of Mathematics
Annotea and Semantic Web Supported Collaboration
Annotea and Semantic Web Supported Collaboration Marja-Riitta Koivunen, Ph.D. Annotea project Abstract Like any other technology, the Semantic Web cannot succeed if the applications using it do not serve
ActiveMath - Generation and Reuse of Interactive Exercises using Domain Reasoners and Automated Tutorial Strategies.
ActiveMath - Generation and Reuse of Interactive Exercises using Domain Reasoners and Automated Tutorial Strategies Giorgi Goguadze Dissertation zur Erlangung des Grades Doktor der Ingenieurswissenschaften
What is Brainfuse? FREE Clarendon College
What is Brainfuse? Brainfuse is our online tutoring provider. Brainfuse is available FREE 24 hours a day to all Clarendon College students. Students and Brainfuse tutors communicate in real-time through
SharePoint 2010 End User - Level II
Course Outline Module 1: Overview A simple introduction module. Understand your course, classroom, classmates, facility and instructor. Module 2: Server Site Definitions In this module we will explore
StreamServe Persuasion SP5 Document Broker Plus
StreamServe Persuasion SP5 Document Broker Plus User Guide Rev A StreamServe Persuasion SP5 Document Broker Plus User Guide Rev A 2001-2010 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520
Ontology based Recruitment Process
Ontology based Recruitment Process Malgorzata Mochol Radoslaw Oldakowski Institut für Informatik AG Netzbasierte Informationssysteme Freie Universität Berlin Takustr. 9, 14195 Berlin, Germany [email protected]
Oracle Business Intelligence Publisher: Create Reports and Data Models. Part 1 - Layout Editor
Oracle Business Intelligence Publisher: Create Reports and Data Models Part 1 - Layout Editor Pradeep Kumar Sharma Senior Principal Product Manager, Oracle Business Intelligence Kasturi Shekhar Director,
MILCA - DISTANCE EDUCATION IN COMPUTATIONAL LINGUISTICS
MILCA - DISTANCE EDUCATION IN COMPUTATIONAL LINGUISTICS Aljoscha Burchardt, Stephan Walter, Manfred Pinkal, Department of Computational Linguistics and Phonetics, Saarland University I. Introduction This
Rotorcraft Health Management System (RHMS)
AIAC-11 Eleventh Australian International Aerospace Congress Rotorcraft Health Management System (RHMS) Robab Safa-Bakhsh 1, Dmitry Cherkassky 2 1 The Boeing Company, Phantom Works Philadelphia Center
Live Office. Personal Archive User Guide
Live Office Personal Archive User Guide Document Revision: 14 Feb 2012 Personal Archive User Guide Personal Archive gives you an unlimited mailbox and helps you quickly and easily access your archived
OpenText Information Hub (ihub) 3.1 and 3.1.1
OpenText Information Hub (ihub) 3.1 and 3.1.1 OpenText Information Hub (ihub) 3.1.1 meets the growing demand for analytics-powered applications that deliver data and empower employees and customers to
Building A Very Simple Website
Sitecore CMS 6.5 Building A Very Simple Web Site Rev 110715 Sitecore CMS 6.5 Building A Very Simple Website A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Creating
aloe-project.de White Paper ALOE White Paper - Martin Memmel
aloe-project.de White Paper Contact: Dr. Martin Memmel German Research Center for Artificial Intelligence DFKI GmbH Trippstadter Straße 122 67663 Kaiserslautern fon fax mail web +49-631-20575-1210 +49-631-20575-1030
Composite.Community.Newsletter - User Guide
Composite.Community.Newsletter - User Guide Composite 2015-11-09 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Contents 1 INTRODUCTION... 4 1.1 Who Should Read This
Personal Archive User Guide
Personal Archive User Guide Personal Archive gives you an unlimited mailbox and helps you quickly and easily access your archived email directly from Microsoft Outlook or Lotus Notes. Since Personal Archive
Creating and Implementing Conversational Agents
Creating and Implementing Conversational Agents Kenneth J. Luterbach East Carolina University Abstract First, this paper discusses the use of the Artificial Intelligence Markup Language (AIML) for the
Quality Consistency Flexibility Affordability
Rock Valley College Developmental Mathematics Contact Information Kathleen Almy Rock Valley College, Rockford, IL Associate Professor of Mathematics Email: [email protected] Blog: http://almydoesmath.blogspot.com
Publishing Linked Data Requires More than Just Using a Tool
Publishing Linked Data Requires More than Just Using a Tool G. Atemezing 1, F. Gandon 2, G. Kepeklian 3, F. Scharffe 4, R. Troncy 1, B. Vatant 5, S. Villata 2 1 EURECOM, 2 Inria, 3 Atos Origin, 4 LIRMM,
http://msdn.microsoft.com/en-us/library/4w3ex9c2.aspx
ASP.NET Overview.NET Framework 4 ASP.NET is a unified Web development model that includes the services necessary for you to build enterprise-class Web applications with a minimum of coding. ASP.NET is
PROTOTYPE IMPLEMENTATION OF A DEMAND DRIVEN NETWORK MONITORING ARCHITECTURE
PROTOTYPE IMPLEMENTATION OF A DEMAND DRIVEN NETWORK MONITORING ARCHITECTURE Augusto Ciuffoletti, Yari Marchetti INFN-CNAF (Italy) Antonis Papadogiannakis, Michalis Polychronakis FORTH (Greece) Summary
9. A Didactics Aware Approach to Knowledge Transfer in Web-based Education
9. A Didactics Aware Approach to Knowledge Transfer in Web-based Education Denis Helic, Hermann Maurer, and Nick Scerbakov Institute for Information Systems and Computer Media Graz University of Technology
Oracle Service Bus Examples and Tutorials
March 2011 Contents 1 Oracle Service Bus Examples... 2 2 Introduction to the Oracle Service Bus Tutorials... 5 3 Getting Started with the Oracle Service Bus Tutorials... 12 4 Tutorial 1. Routing a Loan
IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules
IBM Operational Decision Manager Version 8 Release 5 Getting Started with Business Rules Note Before using this information and the product it supports, read the information in Notices on page 43. This
Web services to allow access for all in dotlrn
Web services to allow access for all in dotlrn German Moreno 1, Olga C. Santos 2, Jesus G. Boticario 2, Ramon Fabregat 1 1 Institute of Informatics and Aplications (IIiA), Universidad de Girona, Spain,
Working with Indicee Elements
Working with Indicee Elements How to Embed Indicee in Your Product 2012 Indicee, Inc. All rights reserved. 1 Embed Indicee Elements into your Web Content 3 Single Sign-On (SSO) using SAML 3 Configure an
Internships and graduation jobs Development
Internships and graduation jobs Development We strongly believe in the power of students. Therefore we offer challenging internships and graduation projects to jumpstart your career. Your job not listed?
MarkLogic Server. Reference Application Architecture Guide. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved.
Reference Application Architecture Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents
Self-Service Business Intelligence
Self-Service Business Intelligence BRIDGE THE GAP VISUALIZE DATA, DISCOVER TRENDS, SHARE FINDINGS Solgenia Analysis provides users throughout your organization with flexible tools to create and share meaningful
DATA MANAGEMENT PLAN DELIVERABLE NUMBER RESPONSIBLE AUTHOR. Co- funded by the Horizon 2020 Framework Programme of the European Union
DATA MANAGEMENT PLAN Co- funded by the Horizon 2020 Framework Programme of the European Union DELIVERABLE NUMBER DELIVERABLE TITLE D7.4 Data Management Plan RESPONSIBLE AUTHOR DFKI GRANT AGREEMENT N. PROJECT
Configuring SonicWALL TSA on Citrix and Terminal Services Servers
Configuring on Citrix and Terminal Services Servers Document Scope This solutions document describes how to install, configure, and use the SonicWALL Terminal Services Agent (TSA) on a multi-user server,
Communiqué 4. Standardized Global Content Management. Designed for World s Leading Enterprises. Industry Leading Products & Platform
Communiqué 4 Standardized Communiqué 4 - fully implementing the JCR (JSR 170) Content Repository Standard, managing digital business information, applications and processes through the web. Communiqué
A Personalized Emotional Intelligent Tutoring System. Based on AI Planning
A Personalized Emotional Intelligent Tutoring System Based on AI Planning Dissertation zur Erlangung des Doktorgrades Doktor der Naturwissenschaften (Dr. rer. nat.) der Fakultät für Ingenieurwissenschaften
