SlideShare a Scribd company logo
From Learning Standards to Smart
Learning Environments: A view of the
challenges of technology enhanced
learning
Miguel Rodríguez Artacho
Universidad Nacional de Educación a Distancia (UNED, Spain)
miguel@lsi.uned.es Twitter: @martacho
Manila, 14 de Octubre de 2017
Objective: Reshape education
What do we NOT want?
Non effective
Non motivating
Rigid
Poor assessment
Inefficient
…etc.
Why reshape education?
• New competences
• Knowledge needs are changing
• Life long learning
• New interactions and ways to learn
• New technologies
• …
Jean-Marc Côté
Traditional education
• Prussian model since the XIX
century
• Few elements: Teacher, student
and educational material
• Rigid schemas: enrolment,
schedule, assessment
Education “ecosystem”
• Degree
• Academic year
• Subject
• Classroom
• Lecture
• Lecture notes
• Handouts
• Exam
This model is effective but…
• Group students by age
• Regular school periods and
calendar
• Ideas and content structured
in matters
• Strict ethics: discipline
• Competences in reading,
writing and arithmetic
pre-TEL education
Teacher
Educational
Material
Student
Educative innovations
• Interactive software environments
• Virtual and remote laboratories
• Animations and simulations
• Exercises platforms
• Mobile applications
• eBooks
• Social networks
Adapting to changes
http://future.mit.edu/final-report
LMS-based Learning
Teacher
Educative Material
Student/Learner
LMS-based learning
• First integrated technology
enhanced learning
• Industry of e-learning
• E-learning standards
• Virtual mobility (e-portfolio)
• Quality assurance models
LMS-based learning
• Communities
• Tracking
• Authoring
• Learning Objects
• Assessment
• Standards
LMS-based authoring
• Focus on reusable resources
• Label resources with metadata
tags
• Use of e-learning standards
• Authoring tools
http://www.digicult.info/downloads/digicult_thematicissue4_lres.pdf
Evolution of e-learning standards
Accesibilidad
Evaluación
Actividades/Contenido
Gestión
IMS Accesibility guidelines
IMS Addition to LIP
IMS Metadata extensions
IMS QTI
IMS QTI results
IMS Content Packaging
ADL SCORM 2004
IMS Learning Design
IMS Simple Sequencing
ADL SCORM 1.3
ISO SC36/WG2 Collab. Learning
Inf. estudiante
LIP
IMS ePortfolio
iCOPER PALO
European Learner Mobility (ELM)
IMS Enterprise
IMS DRM
IMS DR
Metadata
IEEE LOM
IMS Metadata
Dublin Core
CanCore
AEN/SC36 LOM Perfil de aplicación
2000
2010
• From package to open content
• From local content to semantic
search for suitable content
• OER + Linked data
New e-learning standards
xAPI statements
I did THIS
ePub3 Interactions
Source: http://www.slideshare.net/JohnBCosta/adb-brief-for-edupub-2014
Activity example
<john> <launched> <cool book>
<john> <read> <page 1> ( d: "PT45S" ) { p: ["chapter 1"], g: ["cool book", "cool class"] }
<john> <read> <page 2> ( d: "PT15S" ) { p: ["chapter 1"], g: ["cool book", "cool class"] }
<john> <read> <page 3> ( d: "PT55S" ) { p: ["chapter 1"], g: ["cool book", "cool class"] }
<john> <read> <page 4> ( d: "PT45S" ) { p: ["chapter 1"], g: ["cool book", "cool class"] }
<john> <watched> <video 1> ( d: "PT3M" ) { p: ["page 4"], g: ["chapter 1", "cool book", "cool
class"] }
<john> <paused> <video 1> { p: ["page 4"], g: ["chapter 1", "cool book", "cool class"] }
<john> <resumed> <video 1> { p: ["page 4"], g: ["chapter 1", "cool book", "cool class"] }
<john> <watch> <video 1> ( d: "PT2M" ) { p: ["page 4"], g: ["chapter 1", "cool book", "cool class"]
}
<john> <completed> <video 1> ( d: "PT5M" ) { p: ["page 4"], g: ["chapter 1", "cool book", "cool
class"] }
<john> <read> <page 5> ( d: "PT45S" ) { p: ["chapter 1"], g: ["cool book", "cool class"] }
Authoring issues
• E-learning Standards are complex
• Complex authoring tools
• 2 examples:
• Instructional ontologies and Educational Modelling Languages
• Inferring new relationships in educational content
22
Example #1: Semantic Web & education
SOURCE: W3c Consortium (2002)
Dublin Core
• Semantic framework
• Interoperability of resources
• Simple model
• Widely used in the WWW
and other industries
24
RDF
Resource Description Framework
• Representing information about web resources
• Provides a “meaning” to resources
• Suitable for software processing
• Described using XML
Dublin Core and RDF
25
26
Ej. RDF
http://www.example.org/index.html tiene un creador cuyo
valor es John Smith
ex:index.html dc:creator “John Smith,#4545534"
creator
http://www.example.org/ind
ex.html John Smith
http://www.example.org/index.html has a creator
named John Smith
<?xml version="1.0"?>
<rdf:RDF xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:exterms="http://www.example.org/terms/">
<rdf:Description rdf:about="http://www.example.org/index.html">
<dc:creator rdf:resource="http://www.example.org/staffid/4545534"/>
</rdf:Description>
</rdf:RDF>
27
<?xml version="1.0"?>
<rdf:RDF xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:exterms="http://www.example.org/terms/">
<rdf:Description rdf:about="http://www.example.org/index.html">
<dc:creator rdf:resource="http://www.example.org/staffid/4545534"/>
</rdf:Description>
</rdf:RDF>
RDF
http://www.example.org/index.html has a creator
named John Smith
28
A semantic link in the WWW
29
Ontologies for education
An ontology is an
explicit
conceptualization of
a domain knowledge
30
Semantic authoring
Cognitive Design
Model
Learning Design
Model
Conceptualization level
Ontologies
Instructional
templates
Instantiation level
LT specification
based content
Instances
31
SW-based authoring
…
Here you can find more
<relation Name="Illustrates"
Domain="Conceptual"
Subject="invariant"
Category="Example">examples
</relation>
of the concept invariant.
…
Semantic authoring
33
Example #2: Semantic inference of
educational material
sun_java:'java/concepts/class.html'[
rdf:type->doc:Document;
dc:subject->doc:OO_Class].
doc:OO_Class[
rdf:type->doc:Concept;
doc:isPrerequisiteFor->doc:OO_Inheritance;
doc:subConceptOf->doc:Classes_and_objects].
doc:ClassesIntroduction[
rdf:type->doc:ConceptRole;
doc:isPlayedBy->doc:OO_Class;
doc:isPlayedIn->sun_java:'java/concepts/class.html';
doc:hasType->doc:Introduction].
doc:Introduction[
rdf:type->doc:ConceptRoleType;
doc:subConceptRoleOf->doc:Cover].
Semantic inference
FORALL D,E weaker_example(D,E) <-
studyMaterial(D) AND example(E)
AND
EXISTS C (D[dc:subject->C] AND E[dc:subject->C]).
Weak example
• E and D are semantically labelled resources for education.
• E is an example (weak) for D if there is a C
Source: Nicola Hence et al. (2004) “Reasoning and Ontologies for Personalized E-Learning
in the Semantic Web” in Journal of Educational Technology and Society
Teacher
Educational
material
Student
Profesor
Material
Educativo
Estudiante
Teacher
Educational
Material
Student
Teacher
Educational
Material
Student
Reshaping education: post-LMS era
New frontiers in education
• How to break down barriers
• Nothing from the past is useful? What can we keep?
• What are the new models
• New reference frameworks
• New ecosystem for education
MOOCs
Can’t see the woods for the trees
NON relevant questions:
¿business model?
¿Why only 2-7% finish the course?
¿Why are free?
…
MOOCs are not a panacea
MOOCs
• Massive Open Online Courses
• First success model for distance
education
• Worldwide adopted in many
educational institutions
• More adapted to post-industrial
needs
Example: New schemas for new times
• Content of the book: from
cascade to agile software
development
• Book production: from
traditional publisher to DIY
• Teaching model: from traditional
class to MOOC and SPOC
Source: “Refactorizando la Educación” (2015) Carlos D. Kloos
Software development models
Book production
• Traditional publisher
• Publisher printing
• Traditional marketing and
distribution
• Slow cycles and not agile re-print
• Expensive
• Not adapted to demand
• DIY model: Do it Yourself
• LaTeX + GitHub
• Print on demand
• Print and electronic editions
• Faster cycle
• Adapted to demand
Enriched teaching resources: MOOC
http://www.saasbook.info/courses
Awesome feedback!
New learning interactions
• Formal vs. Informal learning  including Higher Education
• Modularization of content  https://micromasters.mit.edu
• New industries and new jobs  mismatch between educational
programs and current jobs
 IKEA, GOOGLE training programs
• Do It Yourself model
• Flexibility
• Based on Competences
• Student driven
Autonomous learning
• Peer to peer education
• Non centralized environments
• Knowledge generated in
microsocial interactions
• Social networks as educational
tools
Social learning
• Not in the traditional ITS model
• Coacher, not teacher
• Emotive computing
• Reputation
• Context
 Smart Learning Environments
Reshaping AI in Education
• Not restricted to formal learning
• Autonomous and adaptive
learning  just-in-time
• More than a VLE: learning
guidance, hints, supportive tools
• Personal factors into account
• Multiple channels: IoT, ubiquitous
computing devices, wearable
computing
Smart learning environments
• Context to provide relevant
information
• Presentation of information,
service. Tagging of context to
information
• Student achievements
• Real world: IoT and wearables
SLE: Full context awareness
• Tailor instruction to individual
needs
• Collect data from disparate
sources (physical, online,..)
• Inference of learning
requirements
SLE: Big Data and Learning Analytics
• Emotive computing
• Dynamic adaptivity
• Autonomous pedagogical
decission
• Learning support across contexts
• Personal factors into account
• Recommends learning tools and
strategies
SLE: Autonomous decision making
Pedagogical innovations
• Knowledge generated from
micro-social interactions
• Change in assessment practices
• Learning in ubiquitous
environments: virtual and
physical integration
• Real-time intervention in the
learning process
Technological innovation
• Flipped classroom: combining
models
• MOOCs: Open, free access,
flexible, peer-to-peer
• Game-Based learning:
engagement, richer interactions
• Augmented and virtual reality
• Educational robots
• Gesture-Based learning
— ”Everything needs
to change, so
everything can stay
the same.”
Giuseppe Tomasi di
Lampedusa
“The Leopard”
From Learning Standards to Smart
Learning Environments: A view of the
challenges of technology enhanced
learning
Miguel Rodríguez Artacho
Universidad Nacional de Educación a Distancia (UNED, Spain)
miguel@lsi.uned.es Twitter: @martacho
Manila, 14 de Octubre de 2017
Thank you!

More Related Content

Similar to From Learning Standards to Smart Learning Environments: A view of the challenges of technology enhanced learning

wordpress as ePortfolio for academic designers
wordpress as ePortfolio for academic designerswordpress as ePortfolio for academic designers
wordpress as ePortfolio for academic designersSam Collett
 
Digital Humanities Research
Digital Humanities ResearchDigital Humanities Research
Digital Humanities Research
elli.m
 
Jupyter for Education: Beyond Gutenberg and Erasmus
Jupyter for Education: Beyond Gutenberg and ErasmusJupyter for Education: Beyond Gutenberg and Erasmus
Jupyter for Education: Beyond Gutenberg and Erasmus
Paco Nathan
 
Websci 2018
Websci 2018Websci 2018
Websci 2018
Christian Bokhove
 
Singapore ssd why_change_2012
Singapore ssd why_change_2012Singapore ssd why_change_2012
Singapore ssd why_change_2012
EdTechTeacher.org
 
Stephanie williams-internet-based projects
Stephanie williams-internet-based projectsStephanie williams-internet-based projects
Stephanie williams-internet-based projects
e3944813
 
Policy input open_online_education
Policy input open_online_educationPolicy input open_online_education
Policy input open_online_education
TU Delft, Faculty of Technology, Policy and Management
 
Eportfolio for Beginners by Gail Lovely
Eportfolio for Beginners by Gail LovelyEportfolio for Beginners by Gail Lovely
Eportfolio for Beginners by Gail Lovely
Gail Lovely
 
Five D2L Tools to Increase Student Engagement and Instructor Presence
Five D2L Tools to Increase Student Engagement and Instructor PresenceFive D2L Tools to Increase Student Engagement and Instructor Presence
Five D2L Tools to Increase Student Engagement and Instructor Presence
D2L Barry
 
Hybrid Courses & Curriculum
Hybrid Courses & CurriculumHybrid Courses & Curriculum
Hybrid Courses & Curriculum
Christopher Rice
 
Schoolcraft college presentation s davis
Schoolcraft college presentation s davisSchoolcraft college presentation s davis
Schoolcraft college presentation s davis
Scott Davis
 
Outcomes from JISC Anytime Learning Literacies Environment (ALLE) project
Outcomes from JISC Anytime Learning Literacies Environment (ALLE) projectOutcomes from JISC Anytime Learning Literacies Environment (ALLE) project
Outcomes from JISC Anytime Learning Literacies Environment (ALLE) project
jisc-elearning
 
Iczm project blended_education 13.09.2016
Iczm project blended_education 13.09.2016Iczm project blended_education 13.09.2016
Iczm project blended_education 13.09.2016
TU Delft, Faculty of Technology, Policy and Management
 
Embracing AI In Assessment
Embracing AI In AssessmentEmbracing AI In Assessment
Embracing AI In Assessment
Charles Darwin University
 
ICT supporting PBL - Phases in project work
ICT supporting PBL - Phases in project workICT supporting PBL - Phases in project work
ICT supporting PBL - Phases in project work
Thomas Ryberg
 
Google: Beyond Search -- Google Apps and More
Google: Beyond Search -- Google Apps and MoreGoogle: Beyond Search -- Google Apps and More
Google: Beyond Search -- Google Apps and More
Mr.Ateach
 
Csla Library 2.0 Nov2008v2web
Csla Library 2.0 Nov2008v2webCsla Library 2.0 Nov2008v2web
Csla Library 2.0 Nov2008v2web
Rob Darrow
 
Beginning ePortfolios K-8 by Gail Lovely
Beginning ePortfolios K-8 by Gail LovelyBeginning ePortfolios K-8 by Gail Lovely
Beginning ePortfolios K-8 by Gail LovelyGail Lovely
 
Workplace Simulated Courses - Course Technology Computing Conference
Workplace Simulated Courses - Course Technology Computing ConferenceWorkplace Simulated Courses - Course Technology Computing Conference
Workplace Simulated Courses - Course Technology Computing Conference
Cengage Learning
 

Similar to From Learning Standards to Smart Learning Environments: A view of the challenges of technology enhanced learning (20)

wordpress as ePortfolio for academic designers
wordpress as ePortfolio for academic designerswordpress as ePortfolio for academic designers
wordpress as ePortfolio for academic designers
 
Digital Humanities Research
Digital Humanities ResearchDigital Humanities Research
Digital Humanities Research
 
Jupyter for Education: Beyond Gutenberg and Erasmus
Jupyter for Education: Beyond Gutenberg and ErasmusJupyter for Education: Beyond Gutenberg and Erasmus
Jupyter for Education: Beyond Gutenberg and Erasmus
 
Websci 2018
Websci 2018Websci 2018
Websci 2018
 
Singapore ssd why_change_2012
Singapore ssd why_change_2012Singapore ssd why_change_2012
Singapore ssd why_change_2012
 
Stephanie williams-internet-based projects
Stephanie williams-internet-based projectsStephanie williams-internet-based projects
Stephanie williams-internet-based projects
 
Policy input open_online_education
Policy input open_online_educationPolicy input open_online_education
Policy input open_online_education
 
Eportfolio for Beginners by Gail Lovely
Eportfolio for Beginners by Gail LovelyEportfolio for Beginners by Gail Lovely
Eportfolio for Beginners by Gail Lovely
 
Five D2L Tools to Increase Student Engagement and Instructor Presence
Five D2L Tools to Increase Student Engagement and Instructor PresenceFive D2L Tools to Increase Student Engagement and Instructor Presence
Five D2L Tools to Increase Student Engagement and Instructor Presence
 
Hybrid Courses & Curriculum
Hybrid Courses & CurriculumHybrid Courses & Curriculum
Hybrid Courses & Curriculum
 
Schoolcraft college presentation s davis
Schoolcraft college presentation s davisSchoolcraft college presentation s davis
Schoolcraft college presentation s davis
 
Outcomes from JISC Anytime Learning Literacies Environment (ALLE) project
Outcomes from JISC Anytime Learning Literacies Environment (ALLE) projectOutcomes from JISC Anytime Learning Literacies Environment (ALLE) project
Outcomes from JISC Anytime Learning Literacies Environment (ALLE) project
 
Iczm project blended_education 13.09.2016
Iczm project blended_education 13.09.2016Iczm project blended_education 13.09.2016
Iczm project blended_education 13.09.2016
 
Embracing AI In Assessment
Embracing AI In AssessmentEmbracing AI In Assessment
Embracing AI In Assessment
 
ICT supporting PBL - Phases in project work
ICT supporting PBL - Phases in project workICT supporting PBL - Phases in project work
ICT supporting PBL - Phases in project work
 
Google: Beyond Search -- Google Apps and More
Google: Beyond Search -- Google Apps and MoreGoogle: Beyond Search -- Google Apps and More
Google: Beyond Search -- Google Apps and More
 
Prof development revisited long beach
Prof development revisited   long beachProf development revisited   long beach
Prof development revisited long beach
 
Csla Library 2.0 Nov2008v2web
Csla Library 2.0 Nov2008v2webCsla Library 2.0 Nov2008v2web
Csla Library 2.0 Nov2008v2web
 
Beginning ePortfolios K-8 by Gail Lovely
Beginning ePortfolios K-8 by Gail LovelyBeginning ePortfolios K-8 by Gail Lovely
Beginning ePortfolios K-8 by Gail Lovely
 
Workplace Simulated Courses - Course Technology Computing Conference
Workplace Simulated Courses - Course Technology Computing ConferenceWorkplace Simulated Courses - Course Technology Computing Conference
Workplace Simulated Courses - Course Technology Computing Conference
 

More from Miguel R. Artacho

Retos Actuales de la Formación en Tecnologías de la Información
Retos Actuales de la Formación en Tecnologías de la InformaciónRetos Actuales de la Formación en Tecnologías de la Información
Retos Actuales de la Formación en Tecnologías de la Información
Miguel R. Artacho
 
El reto de la educación híbrida
El reto de la educación híbridaEl reto de la educación híbrida
El reto de la educación híbrida
Miguel R. Artacho
 
Standardization of Online Laboratories for Education: IEEE-SA STD 1876/2019
Standardization of Online Laboratories for Education:  IEEE-SA STD 1876/2019Standardization of Online Laboratories for Education:  IEEE-SA STD 1876/2019
Standardization of Online Laboratories for Education: IEEE-SA STD 1876/2019
Miguel R. Artacho
 
Tecnología Educativa con un toque humano -- IX Jornada eMadrid 2019 v4.0
Tecnología Educativa con un toque humano -- IX Jornada eMadrid 2019 v4.0Tecnología Educativa con un toque humano -- IX Jornada eMadrid 2019 v4.0
Tecnología Educativa con un toque humano -- IX Jornada eMadrid 2019 v4.0
Miguel R. Artacho
 
CIBERCOOPERANTE -- Charla sobre uso adecuado de las TIC
CIBERCOOPERANTE -- Charla sobre uso adecuado de las TICCIBERCOOPERANTE -- Charla sobre uso adecuado de las TIC
CIBERCOOPERANTE -- Charla sobre uso adecuado de las TIC
Miguel R. Artacho
 
Defensa de los estados democráticos en el Ciberespacio: La formación como cap...
Defensa de los estados democráticos en el Ciberespacio: La formación como cap...Defensa de los estados democráticos en el Ciberespacio: La formación como cap...
Defensa de los estados democráticos en el Ciberespacio: La formación como cap...
Miguel R. Artacho
 
El futuro de la educación
El futuro de la educaciónEl futuro de la educación
El futuro de la educación
Miguel R. Artacho
 
Research groups and teaching experiences at Computer Science Faculty (UNED)
Research groups and teaching experiences at Computer Science Faculty (UNED)Research groups and teaching experiences at Computer Science Faculty (UNED)
Research groups and teaching experiences at Computer Science Faculty (UNED)
Miguel R. Artacho
 
Work in Progress on the Standardization of Online Laboratories for Education
Work in Progress on the Standardization of Online Laboratories for EducationWork in Progress on the Standardization of Online Laboratories for Education
Work in Progress on the Standardization of Online Laboratories for Education
Miguel R. Artacho
 
IEEE EDUCON 2015 reputation mooc
 IEEE EDUCON  2015 reputation mooc IEEE EDUCON  2015 reputation mooc
IEEE EDUCON 2015 reputation mooc
Miguel R. Artacho
 
An adaptive Multi-Agent based Architecture for Engineering Education
An adaptive Multi-Agent based Architecture for Engineering EducationAn adaptive Multi-Agent based Architecture for Engineering Education
An adaptive Multi-Agent based Architecture for Engineering EducationMiguel R. Artacho
 
A cluster-based analysis to diagnose students’ learning achievements
A cluster-based analysis to diagnose students’ learning achievementsA cluster-based analysis to diagnose students’ learning achievements
A cluster-based analysis to diagnose students’ learning achievementsMiguel R. Artacho
 
Web semántica y visiones de la web 3.0
Web semántica y visiones de la web 3.0 Web semántica y visiones de la web 3.0
Web semántica y visiones de la web 3.0 Miguel R. Artacho
 
Workshop Aspect Vigo Dic 2009
Workshop Aspect Vigo    Dic 2009Workshop Aspect Vigo    Dic 2009
Workshop Aspect Vigo Dic 2009
Miguel R. Artacho
 
Innovación Institucional Educativa
Innovación Institucional EducativaInnovación Institucional Educativa
Innovación Institucional Educativa
Miguel R. Artacho
 
LOs Modelization Miguel CBUC June 2004
LOs Modelization    Miguel CBUC June 2004LOs Modelization    Miguel CBUC June 2004
LOs Modelization Miguel CBUC June 2004
Miguel R. Artacho
 
IEEE FIE 2008 Saratoga Paper 1197
IEEE FIE 2008 Saratoga  Paper 1197IEEE FIE 2008 Saratoga  Paper 1197
IEEE FIE 2008 Saratoga Paper 1197
Miguel R. Artacho
 
Open Global Learning Infrastructure: Authors perspective
Open Global Learning Infrastructure: Authors perspectiveOpen Global Learning Infrastructure: Authors perspective
Open Global Learning Infrastructure: Authors perspectiveMiguel R. Artacho
 

More from Miguel R. Artacho (19)

Retos Actuales de la Formación en Tecnologías de la Información
Retos Actuales de la Formación en Tecnologías de la InformaciónRetos Actuales de la Formación en Tecnologías de la Información
Retos Actuales de la Formación en Tecnologías de la Información
 
El reto de la educación híbrida
El reto de la educación híbridaEl reto de la educación híbrida
El reto de la educación híbrida
 
Standardization of Online Laboratories for Education: IEEE-SA STD 1876/2019
Standardization of Online Laboratories for Education:  IEEE-SA STD 1876/2019Standardization of Online Laboratories for Education:  IEEE-SA STD 1876/2019
Standardization of Online Laboratories for Education: IEEE-SA STD 1876/2019
 
Tecnología Educativa con un toque humano -- IX Jornada eMadrid 2019 v4.0
Tecnología Educativa con un toque humano -- IX Jornada eMadrid 2019 v4.0Tecnología Educativa con un toque humano -- IX Jornada eMadrid 2019 v4.0
Tecnología Educativa con un toque humano -- IX Jornada eMadrid 2019 v4.0
 
CIBERCOOPERANTE -- Charla sobre uso adecuado de las TIC
CIBERCOOPERANTE -- Charla sobre uso adecuado de las TICCIBERCOOPERANTE -- Charla sobre uso adecuado de las TIC
CIBERCOOPERANTE -- Charla sobre uso adecuado de las TIC
 
Defensa de los estados democráticos en el Ciberespacio: La formación como cap...
Defensa de los estados democráticos en el Ciberespacio: La formación como cap...Defensa de los estados democráticos en el Ciberespacio: La formación como cap...
Defensa de los estados democráticos en el Ciberespacio: La formación como cap...
 
El futuro de la educación
El futuro de la educaciónEl futuro de la educación
El futuro de la educación
 
Research groups and teaching experiences at Computer Science Faculty (UNED)
Research groups and teaching experiences at Computer Science Faculty (UNED)Research groups and teaching experiences at Computer Science Faculty (UNED)
Research groups and teaching experiences at Computer Science Faculty (UNED)
 
Work in Progress on the Standardization of Online Laboratories for Education
Work in Progress on the Standardization of Online Laboratories for EducationWork in Progress on the Standardization of Online Laboratories for Education
Work in Progress on the Standardization of Online Laboratories for Education
 
IEEE EDUCON 2015 reputation mooc
 IEEE EDUCON  2015 reputation mooc IEEE EDUCON  2015 reputation mooc
IEEE EDUCON 2015 reputation mooc
 
Estándares en e-learning
Estándares en e-learningEstándares en e-learning
Estándares en e-learning
 
An adaptive Multi-Agent based Architecture for Engineering Education
An adaptive Multi-Agent based Architecture for Engineering EducationAn adaptive Multi-Agent based Architecture for Engineering Education
An adaptive Multi-Agent based Architecture for Engineering Education
 
A cluster-based analysis to diagnose students’ learning achievements
A cluster-based analysis to diagnose students’ learning achievementsA cluster-based analysis to diagnose students’ learning achievements
A cluster-based analysis to diagnose students’ learning achievements
 
Web semántica y visiones de la web 3.0
Web semántica y visiones de la web 3.0 Web semántica y visiones de la web 3.0
Web semántica y visiones de la web 3.0
 
Workshop Aspect Vigo Dic 2009
Workshop Aspect Vigo    Dic 2009Workshop Aspect Vigo    Dic 2009
Workshop Aspect Vigo Dic 2009
 
Innovación Institucional Educativa
Innovación Institucional EducativaInnovación Institucional Educativa
Innovación Institucional Educativa
 
LOs Modelization Miguel CBUC June 2004
LOs Modelization    Miguel CBUC June 2004LOs Modelization    Miguel CBUC June 2004
LOs Modelization Miguel CBUC June 2004
 
IEEE FIE 2008 Saratoga Paper 1197
IEEE FIE 2008 Saratoga  Paper 1197IEEE FIE 2008 Saratoga  Paper 1197
IEEE FIE 2008 Saratoga Paper 1197
 
Open Global Learning Infrastructure: Authors perspective
Open Global Learning Infrastructure: Authors perspectiveOpen Global Learning Infrastructure: Authors perspective
Open Global Learning Infrastructure: Authors perspective
 

Recently uploaded

Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
Excellence Foundation for South Sudan
 
How to Break the cycle of negative Thoughts
How to Break the cycle of negative ThoughtsHow to Break the cycle of negative Thoughts
How to Break the cycle of negative Thoughts
Col Mukteshwar Prasad
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
AzmatAli747758
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
EduSkills OECD
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
Anna Sz.
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
Sectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfSectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdf
Vivekanand Anglo Vedic Academy
 

Recently uploaded (20)

Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
 
How to Break the cycle of negative Thoughts
How to Break the cycle of negative ThoughtsHow to Break the cycle of negative Thoughts
How to Break the cycle of negative Thoughts
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
Sectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfSectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdf
 

From Learning Standards to Smart Learning Environments: A view of the challenges of technology enhanced learning

  • 1. From Learning Standards to Smart Learning Environments: A view of the challenges of technology enhanced learning Miguel Rodríguez Artacho Universidad Nacional de Educación a Distancia (UNED, Spain) miguel@lsi.uned.es Twitter: @martacho Manila, 14 de Octubre de 2017
  • 3. What do we NOT want? Non effective Non motivating Rigid Poor assessment Inefficient …etc.
  • 4. Why reshape education? • New competences • Knowledge needs are changing • Life long learning • New interactions and ways to learn • New technologies • … Jean-Marc Côté
  • 5. Traditional education • Prussian model since the XIX century • Few elements: Teacher, student and educational material • Rigid schemas: enrolment, schedule, assessment
  • 6. Education “ecosystem” • Degree • Academic year • Subject • Classroom • Lecture • Lecture notes • Handouts • Exam
  • 7. This model is effective but… • Group students by age • Regular school periods and calendar • Ideas and content structured in matters • Strict ethics: discipline • Competences in reading, writing and arithmetic
  • 9. Educative innovations • Interactive software environments • Virtual and remote laboratories • Animations and simulations • Exercises platforms • Mobile applications • eBooks • Social networks
  • 12. LMS-based learning • First integrated technology enhanced learning • Industry of e-learning • E-learning standards • Virtual mobility (e-portfolio) • Quality assurance models
  • 13. LMS-based learning • Communities • Tracking • Authoring • Learning Objects • Assessment • Standards
  • 14. LMS-based authoring • Focus on reusable resources • Label resources with metadata tags • Use of e-learning standards • Authoring tools
  • 16. Evolution of e-learning standards Accesibilidad Evaluación Actividades/Contenido Gestión IMS Accesibility guidelines IMS Addition to LIP IMS Metadata extensions IMS QTI IMS QTI results IMS Content Packaging ADL SCORM 2004 IMS Learning Design IMS Simple Sequencing ADL SCORM 1.3 ISO SC36/WG2 Collab. Learning Inf. estudiante LIP IMS ePortfolio iCOPER PALO European Learner Mobility (ELM) IMS Enterprise IMS DRM IMS DR Metadata IEEE LOM IMS Metadata Dublin Core CanCore AEN/SC36 LOM Perfil de aplicación 2000 2010
  • 17. • From package to open content • From local content to semantic search for suitable content • OER + Linked data New e-learning standards
  • 20. Activity example <john> <launched> <cool book> <john> <read> <page 1> ( d: "PT45S" ) { p: ["chapter 1"], g: ["cool book", "cool class"] } <john> <read> <page 2> ( d: "PT15S" ) { p: ["chapter 1"], g: ["cool book", "cool class"] } <john> <read> <page 3> ( d: "PT55S" ) { p: ["chapter 1"], g: ["cool book", "cool class"] } <john> <read> <page 4> ( d: "PT45S" ) { p: ["chapter 1"], g: ["cool book", "cool class"] } <john> <watched> <video 1> ( d: "PT3M" ) { p: ["page 4"], g: ["chapter 1", "cool book", "cool class"] } <john> <paused> <video 1> { p: ["page 4"], g: ["chapter 1", "cool book", "cool class"] } <john> <resumed> <video 1> { p: ["page 4"], g: ["chapter 1", "cool book", "cool class"] } <john> <watch> <video 1> ( d: "PT2M" ) { p: ["page 4"], g: ["chapter 1", "cool book", "cool class"] } <john> <completed> <video 1> ( d: "PT5M" ) { p: ["page 4"], g: ["chapter 1", "cool book", "cool class"] } <john> <read> <page 5> ( d: "PT45S" ) { p: ["chapter 1"], g: ["cool book", "cool class"] }
  • 21. Authoring issues • E-learning Standards are complex • Complex authoring tools • 2 examples: • Instructional ontologies and Educational Modelling Languages • Inferring new relationships in educational content
  • 22. 22 Example #1: Semantic Web & education SOURCE: W3c Consortium (2002)
  • 23. Dublin Core • Semantic framework • Interoperability of resources • Simple model • Widely used in the WWW and other industries
  • 24. 24 RDF Resource Description Framework • Representing information about web resources • Provides a “meaning” to resources • Suitable for software processing • Described using XML
  • 25. Dublin Core and RDF 25
  • 26. 26 Ej. RDF http://www.example.org/index.html tiene un creador cuyo valor es John Smith ex:index.html dc:creator “John Smith,#4545534" creator http://www.example.org/ind ex.html John Smith http://www.example.org/index.html has a creator named John Smith
  • 27. <?xml version="1.0"?> <rdf:RDF xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns# xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:exterms="http://www.example.org/terms/"> <rdf:Description rdf:about="http://www.example.org/index.html"> <dc:creator rdf:resource="http://www.example.org/staffid/4545534"/> </rdf:Description> </rdf:RDF> 27 <?xml version="1.0"?> <rdf:RDF xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns# xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:exterms="http://www.example.org/terms/"> <rdf:Description rdf:about="http://www.example.org/index.html"> <dc:creator rdf:resource="http://www.example.org/staffid/4545534"/> </rdf:Description> </rdf:RDF> RDF http://www.example.org/index.html has a creator named John Smith
  • 28. 28 A semantic link in the WWW
  • 29. 29 Ontologies for education An ontology is an explicit conceptualization of a domain knowledge
  • 30. 30 Semantic authoring Cognitive Design Model Learning Design Model Conceptualization level Ontologies Instructional templates Instantiation level LT specification based content Instances
  • 31. 31 SW-based authoring … Here you can find more <relation Name="Illustrates" Domain="Conceptual" Subject="invariant" Category="Example">examples </relation> of the concept invariant. …
  • 33. 33 Example #2: Semantic inference of educational material sun_java:'java/concepts/class.html'[ rdf:type->doc:Document; dc:subject->doc:OO_Class]. doc:OO_Class[ rdf:type->doc:Concept; doc:isPrerequisiteFor->doc:OO_Inheritance; doc:subConceptOf->doc:Classes_and_objects]. doc:ClassesIntroduction[ rdf:type->doc:ConceptRole; doc:isPlayedBy->doc:OO_Class; doc:isPlayedIn->sun_java:'java/concepts/class.html'; doc:hasType->doc:Introduction]. doc:Introduction[ rdf:type->doc:ConceptRoleType; doc:subConceptRoleOf->doc:Cover].
  • 34. Semantic inference FORALL D,E weaker_example(D,E) <- studyMaterial(D) AND example(E) AND EXISTS C (D[dc:subject->C] AND E[dc:subject->C]). Weak example • E and D are semantically labelled resources for education. • E is an example (weak) for D if there is a C Source: Nicola Hence et al. (2004) “Reasoning and Ontologies for Personalized E-Learning in the Semantic Web” in Journal of Educational Technology and Society
  • 37. New frontiers in education • How to break down barriers • Nothing from the past is useful? What can we keep? • What are the new models • New reference frameworks • New ecosystem for education
  • 38. MOOCs Can’t see the woods for the trees NON relevant questions: ¿business model? ¿Why only 2-7% finish the course? ¿Why are free? … MOOCs are not a panacea
  • 39. MOOCs • Massive Open Online Courses • First success model for distance education • Worldwide adopted in many educational institutions • More adapted to post-industrial needs
  • 40. Example: New schemas for new times • Content of the book: from cascade to agile software development • Book production: from traditional publisher to DIY • Teaching model: from traditional class to MOOC and SPOC Source: “Refactorizando la Educación” (2015) Carlos D. Kloos
  • 42. Book production • Traditional publisher • Publisher printing • Traditional marketing and distribution • Slow cycles and not agile re-print • Expensive • Not adapted to demand • DIY model: Do it Yourself • LaTeX + GitHub • Print on demand • Print and electronic editions • Faster cycle • Adapted to demand
  • 43. Enriched teaching resources: MOOC http://www.saasbook.info/courses Awesome feedback!
  • 44. New learning interactions • Formal vs. Informal learning  including Higher Education • Modularization of content  https://micromasters.mit.edu • New industries and new jobs  mismatch between educational programs and current jobs  IKEA, GOOGLE training programs
  • 45. • Do It Yourself model • Flexibility • Based on Competences • Student driven Autonomous learning
  • 46. • Peer to peer education • Non centralized environments • Knowledge generated in microsocial interactions • Social networks as educational tools Social learning
  • 47. • Not in the traditional ITS model • Coacher, not teacher • Emotive computing • Reputation • Context  Smart Learning Environments Reshaping AI in Education
  • 48. • Not restricted to formal learning • Autonomous and adaptive learning  just-in-time • More than a VLE: learning guidance, hints, supportive tools • Personal factors into account • Multiple channels: IoT, ubiquitous computing devices, wearable computing Smart learning environments
  • 49. • Context to provide relevant information • Presentation of information, service. Tagging of context to information • Student achievements • Real world: IoT and wearables SLE: Full context awareness
  • 50. • Tailor instruction to individual needs • Collect data from disparate sources (physical, online,..) • Inference of learning requirements SLE: Big Data and Learning Analytics
  • 51. • Emotive computing • Dynamic adaptivity • Autonomous pedagogical decission • Learning support across contexts • Personal factors into account • Recommends learning tools and strategies SLE: Autonomous decision making
  • 52.
  • 53. Pedagogical innovations • Knowledge generated from micro-social interactions • Change in assessment practices • Learning in ubiquitous environments: virtual and physical integration • Real-time intervention in the learning process
  • 54. Technological innovation • Flipped classroom: combining models • MOOCs: Open, free access, flexible, peer-to-peer • Game-Based learning: engagement, richer interactions • Augmented and virtual reality • Educational robots • Gesture-Based learning
  • 55. — ”Everything needs to change, so everything can stay the same.” Giuseppe Tomasi di Lampedusa “The Leopard”
  • 56. From Learning Standards to Smart Learning Environments: A view of the challenges of technology enhanced learning Miguel Rodríguez Artacho Universidad Nacional de Educación a Distancia (UNED, Spain) miguel@lsi.uned.es Twitter: @martacho Manila, 14 de Octubre de 2017 Thank you!