SlideShare a Scribd company logo
1 of 32
OpenEssayist: Extractive Summarisation
and Formative Assessment
of Free-Text Essays
Nicolas Van Labeke, Denise Whitelock ,
Debora Field , Stephen Pulman, John Richardson 
 Institute of Educational Technology – The Open University
 Department of Computer Science – University of Oxford
SAFeSEA: Research Questions
• How can an automated system detect passages
on which a human marker would usually give
some feedback ?
• Can existing methods of information extraction,
summarization be adapted to select content for
such feedback ?
• How effectively can these methods deliver
feedback ?
• What effect does these techniques have on essay
improvement? On current essay and in future
ones ? On self-regulation and metacognition ?
Context
• Essays: Open University (UK) postgraduate assignments
– Distance learning, adult learners
– 1500+ words, free-text & open-ended questions
• No “Gold Standard”, wide range of content
– Perfect test ground for extractive techniques
– Impact of lack of (or limited) domain knowledge?
• Bulk of activity (i.e. writing) takes place outside system
– Usage of drafts “varies a lot” among students
– Nature, scope and timing of feedback?
• Limited possibility for “mock” experiments:
• testing & evaluation on “live” material
• Connection with summative (tutor-based) assessment ?
Education Postgraduate Course H810
Accessible online learning: supporting disabled students
TMA1 (Tutor-Marked Assignment) – 1500 words
Write a report explaining the main accessibility challenges for disabled learners
that you work with or support in your own work context(s).
Critically evaluate the influence of the context (e.g. country, institution, perceived
role of online learning within education) on the: (1) identified challenges; (2)
influence of legislation; (3) roles and responsibilities of key individuals; (4) role of
assistive technologies in addressing these challenges.
TMA2 – 3000 words
Critically Evaluate your own learning resource in the following ways:
1. Briefly describe the resource and its accessibility features.
2. Evaluate the accessibility of your resource, identifying its strengths and
weaknesses.
3. Reflect on the processes of creating and evaluating accessible resources.
Context
• Essays: Open University (UK) postgraduate assignments
– Distance learning, adult learners
– 1500+ words, free-text & open-ended questions
• No “Gold Standard”, wide range of content
– Perfect test ground for extractive techniques
– Impact of lack of (or limited) domain knowledge?
• Bulk of activity (i.e. writing) takes place outside system
– Usage of drafts “varies a lot” among students
– Nature, scope and timing of feedback?
• Limited possibility for “mock” experiments:
• testing & evaluation on “live” material
• Connection with summative (tutor-based) assessment ?
openEssayist
localhost:8065
phaeros.open.ac.uk:80
openEssayist
PHP, Epiphany
[Symfony2]
User
openEssayist
RESTful API
PHP, Epiphany
User
User
pyEA
RESTful API
Python, Flask
localhost:8064
AfterTheDeadline
Spell/Grammar
checker
Java
User
localhost:9998
Apache Tika
Text Extractor
Java
Orchestrator
(Open)
Learner Model
pyEssayAnalyser
Python, NLTK
Extractive Summarisation
• Hypothesis
– quality and position of key phrases and key sentences
within an essay (i.e., relative to the position of its
structural components) give idea of how complete and
well-structured the essay
– provide a basis for building suitable models of feedback
• Experimenting with two simpler summarisation
strategies
– key phrase extraction : identifying individual words or
short phrases are the most suggestive of the content of a
discourse
– extractive summarisation: identifying whole key
sentences.
• Rapid implementation and testing
Summarisation Processes
1. NL pre-processing of text
2. unsupervised recognition of structural
elements
3. unsupervised extraction of key
words/phrases
4. unsupervised extraction of key sentences.
Pre-processing
• Using NLTK (Python-base Natural Language
Processing Toolkit)
– tokenisers,
– lemmatiser,
– part-of-speech tagger,
– List(s) of stop words.
• Experimenting different approaches to define
suitable stop word list(s)
– domain-independent list?
– Generated from appropriate reference materials
(using TF-IDF, for example)?
Essay Structure
• Restructure text as paragraphs/sentences
• Automatic Identification of each paragraph’s structural role
– Summary, Introduction, conclusion, body, references, …
– Regardless of presence of content-specific headings
– No clues from formatting markup (plain text submission)
• Decision trees developed through manual experimentation
– corpus of 135 student essays submitted in previous years for the
same module that the evaluation will be carried out on.
• Still need formal evaluation but output good enough for
first rounds of OpenEssayist testing, and continually
improving
Key words, lemmas and phrases
• Unsupervised extractive summarisation using graph-based ranking
methods (TextRank, Mihalcea & Tarau 2004, 2005)
• Each unique word is represented by a node in the graph, and co-
occurrence relations (specifically, within-sentence word adjacency) are
represented by edges in the graph.
• Compute a 'key-ness' value for each word in the essay ('Key-ness' can be
understood as 'significance within the context of the essay‘)
• Centrality algorithm used to calculate the significance of each word
– betweenness centrality (Freeman 1977) and PageRank (Brin & Page 1998)
– Roughly speaking, a word with a high centrality score is a word that sits
adjacent to many other unique words which sit adjacent to many other unique
words which…, and so on.
• The words with high(est) centrality scores are the key words.
– Decision needs to be made as to what proportion of the essay's words qualify
as key words.
• Sequences of keywords in the surface text identify within-sentence key
phrases (bigrams, trigrams and quadgrams).
Key words, lemmas and phrases
Key Sentences
• Similar graph-based ranking approach used to compute
key-ness scores for whole sentences.
• Instead of word adjacency (as in the key word graph),
co-occurrence of words across pairs of sentences is the
relation used to construct the graph.
– similarity measures of every pair of sentences.
• The similarity scores become edge weights in the
graph, while whole sentences become the nodes.
• TextRank key sentence algorithm (based on PageRank
but with added edge weights) is then applied.
Extractive Summarisation - Sentences
Extractive Summarisation – Overview
Exploring The Design Space
❶Researcher-centred Design
– Data-driven
– Architecture setup, integration & refinement of
tools
– From discourse to summarisation
– Emerging properties, hypotheses building
• Multiple External Representation
• Mash-ups, reports, summaries, …
• Highlighting co-occurrence of terms (or lack of)
• Exploration & discovery, hypotheses building,
eliciting recommendations & heuristics
Exploring The Design Space
① Researcher-centred Design
– Data-driven
– Architecture setup, integration & refinement of tools
– From discourse to summarisation
– Emerging properties, hypotheses building
❷ Learner-centred Design
– Task-driven
– Hypotheses testing & validation, refinement
– From summarisation to formative feedback
– Live evaluation
Question: What kind of feedback?
Section of
essay
Purpose of section
Title
Write the full question (title) at the
top of your assignment. It will
contain keywords (known as
content and process words). See
the 'Understanding the question'
webpage for these.
Introduction
A paragraph or two to define key
terms and themes and indicate
how you intend to address the
question.
Main body
A series of paragraphs written in
full sentences that include specific
arguments relating to your answer.
It’s vital to include evidence and
references to support your
arguments.
Conclusions
A short section to summarise main
points and findings. Try to focus on
the question but avoid repeating
what you wrote in the
introduction.
References
A list of sources (including module
materials) that are mentioned in
the essay.
• Introductions
– An introduction provides your reader
with an overview of what your essay
will cover and what you want to say.
– Essays introductions should
• set out the aims of the assignment and
signpost how your argument will unfold
• introduce the issue and give any
essential background information
including a brief description of the
major debates that lie behind the
question
• define the key words and terms
• be between 5% and 10% of the total
word count
– Some students prefer to write the
introduction at an early stage, others
save it for when they have almost
completed the assignment. If you write
it early, don't allow it to constrain what
you want to write. It's a good idea to
check and revise the introduction after
the first draft.
• The body of your essay
– …
Open University - Skills for OU Study
http://www.open.ac.uk/skillsforstudy/essays.php
Question: Reflective activities?
• “Advice for action”
– Expectation vs. intention
– Reflection, self-report, validation of advices, …
• Introducing user interventions in the system
• Feeding back to the system? To the Essay Analyser?
Question: Drafts, History & Changes
Question: “Quality” of output?
Current and Future Work
• Three lines of experimentations:
– improve the different aspects of the essay analyser (e.g.
different “key-ness” metrics, introduce domain-specific
lists of stop-words)
– Analyses of summarisation output (e.g. factor analysis) to
run on existing corpus of essays
• 5 years of essays on the H810 course, all marked and annotated by
human tutors),
• identify trends and markers to be used as progress/performance
indicators;
– Iterative, user-centred, design and testing of openEssaysit
(refine possible usage scenarios, test pedagogical)
• Currently proceeding with second design phase
• First live evaluation, in authentic context, by a new
cohort of students on the H810 module (Sept 2013)

More Related Content

What's hot

Open IE tutorial 2018
Open IE tutorial 2018Open IE tutorial 2018
Open IE tutorial 2018Andre Freitas
 
Assessment re-capitulated and questioned
Assessment re-capitulated and questionedAssessment re-capitulated and questioned
Assessment re-capitulated and questionedJames Atherton
 
Legitimising Knowers’ Multiple Voices in L2 Postgraduate Writing
Legitimising Knowers’ Multiple Voices in L2 Postgraduate WritingLegitimising Knowers’ Multiple Voices in L2 Postgraduate Writing
Legitimising Knowers’ Multiple Voices in L2 Postgraduate WritingLok Ming Eric Cheung
 
It services & research methods
It services & research methodsIt services & research methods
It services & research methodsAkanshShandilya
 
A perspective on Conversational Agents
A perspective on Conversational AgentsA perspective on Conversational Agents
A perspective on Conversational AgentsZelia Blaga
 
Ecology Through My Eyes
Ecology Through My EyesEcology Through My Eyes
Ecology Through My Eyeshksprague
 
Effective Semantics for Engineering NLP Systems
Effective Semantics for Engineering NLP SystemsEffective Semantics for Engineering NLP Systems
Effective Semantics for Engineering NLP SystemsAndre Freitas
 
ICBL DIscussion Forum
ICBL DIscussion ForumICBL DIscussion Forum
ICBL DIscussion Forummarorussell
 
AI Beyond Deep Learning
AI Beyond Deep LearningAI Beyond Deep Learning
AI Beyond Deep LearningAndre Freitas
 
Quantifying the Relation among Marks, Words and Time Duration in Descriptive ...
Quantifying the Relation among Marks, Words and Time Duration in Descriptive ...Quantifying the Relation among Marks, Words and Time Duration in Descriptive ...
Quantifying the Relation among Marks, Words and Time Duration in Descriptive ...Dilip Barad
 
Cv ning mei
Cv ning meiCv ning mei
Cv ning mei宁 梅
 
Tesol Presentation
Tesol PresentationTesol Presentation
Tesol Presentationcherepaha
 

What's hot (12)

Open IE tutorial 2018
Open IE tutorial 2018Open IE tutorial 2018
Open IE tutorial 2018
 
Assessment re-capitulated and questioned
Assessment re-capitulated and questionedAssessment re-capitulated and questioned
Assessment re-capitulated and questioned
 
Legitimising Knowers’ Multiple Voices in L2 Postgraduate Writing
Legitimising Knowers’ Multiple Voices in L2 Postgraduate WritingLegitimising Knowers’ Multiple Voices in L2 Postgraduate Writing
Legitimising Knowers’ Multiple Voices in L2 Postgraduate Writing
 
It services & research methods
It services & research methodsIt services & research methods
It services & research methods
 
A perspective on Conversational Agents
A perspective on Conversational AgentsA perspective on Conversational Agents
A perspective on Conversational Agents
 
Ecology Through My Eyes
Ecology Through My EyesEcology Through My Eyes
Ecology Through My Eyes
 
Effective Semantics for Engineering NLP Systems
Effective Semantics for Engineering NLP SystemsEffective Semantics for Engineering NLP Systems
Effective Semantics for Engineering NLP Systems
 
ICBL DIscussion Forum
ICBL DIscussion ForumICBL DIscussion Forum
ICBL DIscussion Forum
 
AI Beyond Deep Learning
AI Beyond Deep LearningAI Beyond Deep Learning
AI Beyond Deep Learning
 
Quantifying the Relation among Marks, Words and Time Duration in Descriptive ...
Quantifying the Relation among Marks, Words and Time Duration in Descriptive ...Quantifying the Relation among Marks, Words and Time Duration in Descriptive ...
Quantifying the Relation among Marks, Words and Time Duration in Descriptive ...
 
Cv ning mei
Cv ning meiCv ning mei
Cv ning mei
 
Tesol Presentation
Tesol PresentationTesol Presentation
Tesol Presentation
 

Viewers also liked

Reflect on how Bloom's taxonomy, Miller's pyramid and the Kirkpatrick model m...
Reflect on how Bloom's taxonomy, Miller's pyramid and the Kirkpatrick model m...Reflect on how Bloom's taxonomy, Miller's pyramid and the Kirkpatrick model m...
Reflect on how Bloom's taxonomy, Miller's pyramid and the Kirkpatrick model m...Poh-Sun Goh
 
One (more) representation of the continuum of learning
One (more) representation of the continuum of learningOne (more) representation of the continuum of learning
One (more) representation of the continuum of learningPoh-Sun Goh
 
Learning Outcomes and Assessment - Achieving Constructive Alignment Treforest...
Learning Outcomes and Assessment - Achieving Constructive Alignment Treforest...Learning Outcomes and Assessment - Achieving Constructive Alignment Treforest...
Learning Outcomes and Assessment - Achieving Constructive Alignment Treforest...Richard Oelmann
 
Everything I have learnt about eLearning
Everything I have learnt about eLearningEverything I have learnt about eLearning
Everything I have learnt about eLearningPoh-Sun Goh
 
Applied learning analytics to class and program learning activities
Applied learning analytics to class and program learning activitiesApplied learning analytics to class and program learning activities
Applied learning analytics to class and program learning activitiesPoh-Sun Goh
 
The Value of Competency-based Medical Education Across the Continuum
The Value of Competency-based Medical Education Across the ContinuumThe Value of Competency-based Medical Education Across the Continuum
The Value of Competency-based Medical Education Across the ContinuumMedCouncilCan
 
CBME and Assessment
CBME and Assessment CBME and Assessment
CBME and Assessment jakinyi
 
Digital educational resource hyperlinked index vs restaurant menu
Digital educational resource hyperlinked index vs restaurant menuDigital educational resource hyperlinked index vs restaurant menu
Digital educational resource hyperlinked index vs restaurant menuPoh-Sun Goh
 
SoLAR Storm talk: epistemology, pedagogy, assessment
SoLAR Storm talk: epistemology, pedagogy, assessmentSoLAR Storm talk: epistemology, pedagogy, assessment
SoLAR Storm talk: epistemology, pedagogy, assessmentSimon Knight
 
Introduction to Competency-based Education
Introduction to Competency-based EducationIntroduction to Competency-based Education
Introduction to Competency-based EducationD2L
 
Developing a multiple-document-processing performance assessment for epistem...
 Developing a multiple-document-processing performance assessment for epistem... Developing a multiple-document-processing performance assessment for epistem...
Developing a multiple-document-processing performance assessment for epistem...Simon Knight
 
Using data (analytics:analysis) to guide (e)teaching and (e)learning
Using data (analytics:analysis) to guide (e)teaching and (e)learningUsing data (analytics:analysis) to guide (e)teaching and (e)learning
Using data (analytics:analysis) to guide (e)teaching and (e)learningPoh-Sun Goh
 
Using data to guide (e)teaching and (e)learning
Using data to guide (e)teaching and (e)learningUsing data to guide (e)teaching and (e)learning
Using data to guide (e)teaching and (e)learningPoh-Sun Goh
 
Personal and personalised learning and teaching
Personal and personalised learning and teachingPersonal and personalised learning and teaching
Personal and personalised learning and teachingPoh-Sun Goh
 
Application of learning analytics to case studies
Application of learning analytics to case studiesApplication of learning analytics to case studies
Application of learning analytics to case studiesPoh-Sun Goh
 
The continuum of learning
The continuum of learningThe continuum of learning
The continuum of learningPoh-Sun Goh
 
edmedia2014-learning-analytics-keynote
edmedia2014-learning-analytics-keynoteedmedia2014-learning-analytics-keynote
edmedia2014-learning-analytics-keynoteSimon Buckingham Shum
 
Learning Analytics - George Siemens
Learning Analytics - George SiemensLearning Analytics - George Siemens
Learning Analytics - George SiemensSungjin Nam
 
The Evidence Hub: Harnessing the Collective Intelligence of Communities to Bu...
The Evidence Hub: Harnessing the Collective Intelligence of Communities to Bu...The Evidence Hub: Harnessing the Collective Intelligence of Communities to Bu...
The Evidence Hub: Harnessing the Collective Intelligence of Communities to Bu...Anna De Liddo
 
Lak 05
Lak 05Lak 05
Lak 05dws1d
 

Viewers also liked (20)

Reflect on how Bloom's taxonomy, Miller's pyramid and the Kirkpatrick model m...
Reflect on how Bloom's taxonomy, Miller's pyramid and the Kirkpatrick model m...Reflect on how Bloom's taxonomy, Miller's pyramid and the Kirkpatrick model m...
Reflect on how Bloom's taxonomy, Miller's pyramid and the Kirkpatrick model m...
 
One (more) representation of the continuum of learning
One (more) representation of the continuum of learningOne (more) representation of the continuum of learning
One (more) representation of the continuum of learning
 
Learning Outcomes and Assessment - Achieving Constructive Alignment Treforest...
Learning Outcomes and Assessment - Achieving Constructive Alignment Treforest...Learning Outcomes and Assessment - Achieving Constructive Alignment Treforest...
Learning Outcomes and Assessment - Achieving Constructive Alignment Treforest...
 
Everything I have learnt about eLearning
Everything I have learnt about eLearningEverything I have learnt about eLearning
Everything I have learnt about eLearning
 
Applied learning analytics to class and program learning activities
Applied learning analytics to class and program learning activitiesApplied learning analytics to class and program learning activities
Applied learning analytics to class and program learning activities
 
The Value of Competency-based Medical Education Across the Continuum
The Value of Competency-based Medical Education Across the ContinuumThe Value of Competency-based Medical Education Across the Continuum
The Value of Competency-based Medical Education Across the Continuum
 
CBME and Assessment
CBME and Assessment CBME and Assessment
CBME and Assessment
 
Digital educational resource hyperlinked index vs restaurant menu
Digital educational resource hyperlinked index vs restaurant menuDigital educational resource hyperlinked index vs restaurant menu
Digital educational resource hyperlinked index vs restaurant menu
 
SoLAR Storm talk: epistemology, pedagogy, assessment
SoLAR Storm talk: epistemology, pedagogy, assessmentSoLAR Storm talk: epistemology, pedagogy, assessment
SoLAR Storm talk: epistemology, pedagogy, assessment
 
Introduction to Competency-based Education
Introduction to Competency-based EducationIntroduction to Competency-based Education
Introduction to Competency-based Education
 
Developing a multiple-document-processing performance assessment for epistem...
 Developing a multiple-document-processing performance assessment for epistem... Developing a multiple-document-processing performance assessment for epistem...
Developing a multiple-document-processing performance assessment for epistem...
 
Using data (analytics:analysis) to guide (e)teaching and (e)learning
Using data (analytics:analysis) to guide (e)teaching and (e)learningUsing data (analytics:analysis) to guide (e)teaching and (e)learning
Using data (analytics:analysis) to guide (e)teaching and (e)learning
 
Using data to guide (e)teaching and (e)learning
Using data to guide (e)teaching and (e)learningUsing data to guide (e)teaching and (e)learning
Using data to guide (e)teaching and (e)learning
 
Personal and personalised learning and teaching
Personal and personalised learning and teachingPersonal and personalised learning and teaching
Personal and personalised learning and teaching
 
Application of learning analytics to case studies
Application of learning analytics to case studiesApplication of learning analytics to case studies
Application of learning analytics to case studies
 
The continuum of learning
The continuum of learningThe continuum of learning
The continuum of learning
 
edmedia2014-learning-analytics-keynote
edmedia2014-learning-analytics-keynoteedmedia2014-learning-analytics-keynote
edmedia2014-learning-analytics-keynote
 
Learning Analytics - George Siemens
Learning Analytics - George SiemensLearning Analytics - George Siemens
Learning Analytics - George Siemens
 
The Evidence Hub: Harnessing the Collective Intelligence of Communities to Bu...
The Evidence Hub: Harnessing the Collective Intelligence of Communities to Bu...The Evidence Hub: Harnessing the Collective Intelligence of Communities to Bu...
The Evidence Hub: Harnessing the Collective Intelligence of Communities to Bu...
 
Lak 05
Lak 05Lak 05
Lak 05
 

Similar to OpenEssayist: Extractive Summarisation and Formative Assessment (DCLA13)

2016-05-31 Venia Legendi (CEITER): Sergey Sosnovsky
2016-05-31 Venia Legendi (CEITER): Sergey Sosnovsky2016-05-31 Venia Legendi (CEITER): Sergey Sosnovsky
2016-05-31 Venia Legendi (CEITER): Sergey Sosnovskyifi8106tlu
 
Systematic Literature Reviews : Concise Overview
Systematic Literature Reviews : Concise OverviewSystematic Literature Reviews : Concise Overview
Systematic Literature Reviews : Concise Overviewyoukayaslam
 
Publication workshop
Publication workshopPublication workshop
Publication workshopFrances Bell
 
empirical-SLR.pptx
empirical-SLR.pptxempirical-SLR.pptx
empirical-SLR.pptxJitha Kannan
 
eAssessment in practice
eAssessment in practiceeAssessment in practice
eAssessment in practiceIan Brown
 
Near Real-time Web-Page Recs Using Content Features
Near Real-time Web-Page Recs Using Content FeaturesNear Real-time Web-Page Recs Using Content Features
Near Real-time Web-Page Recs Using Content FeaturesAshok Venkatesan
 
Systematic Literature Reviews and Systematic Mapping Studies
Systematic Literature Reviews and Systematic Mapping StudiesSystematic Literature Reviews and Systematic Mapping Studies
Systematic Literature Reviews and Systematic Mapping Studiesalessio_ferrari
 
Data Acquisition for Sentiment Analysis
Data Acquisition for Sentiment AnalysisData Acquisition for Sentiment Analysis
Data Acquisition for Sentiment AnalysisAli BELCAID
 
Introduction & Literature Review Webinar
Introduction & Literature Review WebinarIntroduction & Literature Review Webinar
Introduction & Literature Review WebinarStatistics Solutions
 
Presentation - Systematic Review - March23.pptx
Presentation - Systematic Review - March23.pptxPresentation - Systematic Review - March23.pptx
Presentation - Systematic Review - March23.pptxChetan Acharya
 
Knowledge Representation on the Web
Knowledge Representation on the WebKnowledge Representation on the Web
Knowledge Representation on the WebRinke Hoekstra
 
r_vaughan.pptRRRRRRRRRRRRRRRRRRRRRRRRRRRR
r_vaughan.pptRRRRRRRRRRRRRRRRRRRRRRRRRRRRr_vaughan.pptRRRRRRRRRRRRRRRRRRRRRRRRRRRR
r_vaughan.pptRRRRRRRRRRRRRRRRRRRRRRRRRRRRMarvinCastaneda7
 
Research Writing - Universitas Indonesia
Research Writing - Universitas IndonesiaResearch Writing - Universitas Indonesia
Research Writing - Universitas IndonesiaFariz Darari
 
Intro to Deep Learning for Question Answering
Intro to Deep Learning for Question AnsweringIntro to Deep Learning for Question Answering
Intro to Deep Learning for Question AnsweringTraian Rebedea
 
Hackathon report catalogue-ontology-vocabulary-characteristcs-relevant-to-e...
Hackathon report   catalogue-ontology-vocabulary-characteristcs-relevant-to-e...Hackathon report   catalogue-ontology-vocabulary-characteristcs-relevant-to-e...
Hackathon report catalogue-ontology-vocabulary-characteristcs-relevant-to-e...Amanda Vizedom
 

Similar to OpenEssayist: Extractive Summarisation and Formative Assessment (DCLA13) (20)

2016-05-31 Venia Legendi (CEITER): Sergey Sosnovsky
2016-05-31 Venia Legendi (CEITER): Sergey Sosnovsky2016-05-31 Venia Legendi (CEITER): Sergey Sosnovsky
2016-05-31 Venia Legendi (CEITER): Sergey Sosnovsky
 
Systematic Literature Reviews : Concise Overview
Systematic Literature Reviews : Concise OverviewSystematic Literature Reviews : Concise Overview
Systematic Literature Reviews : Concise Overview
 
Publication workshop
Publication workshopPublication workshop
Publication workshop
 
empirical-SLR.pptx
empirical-SLR.pptxempirical-SLR.pptx
empirical-SLR.pptx
 
La notes (5 10)
La notes (5 10)La notes (5 10)
La notes (5 10)
 
eAssessment in practice
eAssessment in practiceeAssessment in practice
eAssessment in practice
 
Near Real-time Web-Page Recs Using Content Features
Near Real-time Web-Page Recs Using Content FeaturesNear Real-time Web-Page Recs Using Content Features
Near Real-time Web-Page Recs Using Content Features
 
Systematic Literature Reviews and Systematic Mapping Studies
Systematic Literature Reviews and Systematic Mapping StudiesSystematic Literature Reviews and Systematic Mapping Studies
Systematic Literature Reviews and Systematic Mapping Studies
 
Data Acquisition for Sentiment Analysis
Data Acquisition for Sentiment AnalysisData Acquisition for Sentiment Analysis
Data Acquisition for Sentiment Analysis
 
Introduction & Literature Review Webinar
Introduction & Literature Review WebinarIntroduction & Literature Review Webinar
Introduction & Literature Review Webinar
 
R vaughan
R vaughanR vaughan
R vaughan
 
Designing e-Learning Objects
Designing e-Learning ObjectsDesigning e-Learning Objects
Designing e-Learning Objects
 
Presentation - Systematic Review - March23.pptx
Presentation - Systematic Review - March23.pptxPresentation - Systematic Review - March23.pptx
Presentation - Systematic Review - March23.pptx
 
Final presentation
Final presentationFinal presentation
Final presentation
 
Knowledge Representation on the Web
Knowledge Representation on the WebKnowledge Representation on the Web
Knowledge Representation on the Web
 
r_vaughan.pptRRRRRRRRRRRRRRRRRRRRRRRRRRRR
r_vaughan.pptRRRRRRRRRRRRRRRRRRRRRRRRRRRRr_vaughan.pptRRRRRRRRRRRRRRRRRRRRRRRRRRRR
r_vaughan.pptRRRRRRRRRRRRRRRRRRRRRRRRRRRR
 
Research Writing - Universitas Indonesia
Research Writing - Universitas IndonesiaResearch Writing - Universitas Indonesia
Research Writing - Universitas Indonesia
 
Intro to Deep Learning for Question Answering
Intro to Deep Learning for Question AnsweringIntro to Deep Learning for Question Answering
Intro to Deep Learning for Question Answering
 
Hackathon report catalogue-ontology-vocabulary-characteristcs-relevant-to-e...
Hackathon report   catalogue-ontology-vocabulary-characteristcs-relevant-to-e...Hackathon report   catalogue-ontology-vocabulary-characteristcs-relevant-to-e...
Hackathon report catalogue-ontology-vocabulary-characteristcs-relevant-to-e...
 
MASHLM 1st year thesis workshop
MASHLM 1st year thesis workshopMASHLM 1st year thesis workshop
MASHLM 1st year thesis workshop
 

More from Nicolas Van Labeke

Personalised and Adaptive Mentoring in Medical Education - The myPAL project
Personalised and Adaptive Mentoring in Medical Education - The myPAL projectPersonalised and Adaptive Mentoring in Medical Education - The myPAL project
Personalised and Adaptive Mentoring in Medical Education - The myPAL projectNicolas Van Labeke
 
Auditory perceptual learning and game design an example for tinnitus manage...
Auditory perceptual learning and game design   an example for tinnitus manage...Auditory perceptual learning and game design   an example for tinnitus manage...
Auditory perceptual learning and game design an example for tinnitus manage...Nicolas Van Labeke
 
MyPlan - similarity metrics for matching lifelong learner timelines
MyPlan - similarity metrics for matching lifelong learner timelinesMyPlan - similarity metrics for matching lifelong learner timelines
MyPlan - similarity metrics for matching lifelong learner timelinesNicolas Van Labeke
 
Principled design of game-based auditory learning environments: Examples of A...
Principled design of game-based auditory learning environments: Examples of A...Principled design of game-based auditory learning environments: Examples of A...
Principled design of game-based auditory learning environments: Examples of A...Nicolas Van Labeke
 
Using Similarity Metrics for Matching Lifelong Learners
Using Similarity Metrics for Matching Lifelong LearnersUsing Similarity Metrics for Matching Lifelong Learners
Using Similarity Metrics for Matching Lifelong LearnersNicolas Van Labeke
 
Intrinsic Integration and the Design of Games for Auditory Perceptual Learning
Intrinsic Integration and the Design of Games for Auditory Perceptual LearningIntrinsic Integration and the Design of Games for Auditory Perceptual Learning
Intrinsic Integration and the Design of Games for Auditory Perceptual LearningNicolas Van Labeke
 

More from Nicolas Van Labeke (6)

Personalised and Adaptive Mentoring in Medical Education - The myPAL project
Personalised and Adaptive Mentoring in Medical Education - The myPAL projectPersonalised and Adaptive Mentoring in Medical Education - The myPAL project
Personalised and Adaptive Mentoring in Medical Education - The myPAL project
 
Auditory perceptual learning and game design an example for tinnitus manage...
Auditory perceptual learning and game design   an example for tinnitus manage...Auditory perceptual learning and game design   an example for tinnitus manage...
Auditory perceptual learning and game design an example for tinnitus manage...
 
MyPlan - similarity metrics for matching lifelong learner timelines
MyPlan - similarity metrics for matching lifelong learner timelinesMyPlan - similarity metrics for matching lifelong learner timelines
MyPlan - similarity metrics for matching lifelong learner timelines
 
Principled design of game-based auditory learning environments: Examples of A...
Principled design of game-based auditory learning environments: Examples of A...Principled design of game-based auditory learning environments: Examples of A...
Principled design of game-based auditory learning environments: Examples of A...
 
Using Similarity Metrics for Matching Lifelong Learners
Using Similarity Metrics for Matching Lifelong LearnersUsing Similarity Metrics for Matching Lifelong Learners
Using Similarity Metrics for Matching Lifelong Learners
 
Intrinsic Integration and the Design of Games for Auditory Perceptual Learning
Intrinsic Integration and the Design of Games for Auditory Perceptual LearningIntrinsic Integration and the Design of Games for Auditory Perceptual Learning
Intrinsic Integration and the Design of Games for Auditory Perceptual Learning
 

Recently uploaded

Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Nikki Chapple
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...itnewsafrica
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024TopCSSGallery
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Mark Goldstein
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Farhan Tariq
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Kaya Weers
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationKnoldus Inc.
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructureitnewsafrica
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 

Recently uploaded (20)

Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog Presentation
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 

OpenEssayist: Extractive Summarisation and Formative Assessment (DCLA13)

  • 1. OpenEssayist: Extractive Summarisation and Formative Assessment of Free-Text Essays Nicolas Van Labeke, Denise Whitelock , Debora Field , Stephen Pulman, John Richardson   Institute of Educational Technology – The Open University  Department of Computer Science – University of Oxford
  • 2. SAFeSEA: Research Questions • How can an automated system detect passages on which a human marker would usually give some feedback ? • Can existing methods of information extraction, summarization be adapted to select content for such feedback ? • How effectively can these methods deliver feedback ? • What effect does these techniques have on essay improvement? On current essay and in future ones ? On self-regulation and metacognition ?
  • 3. Context • Essays: Open University (UK) postgraduate assignments – Distance learning, adult learners – 1500+ words, free-text & open-ended questions • No “Gold Standard”, wide range of content – Perfect test ground for extractive techniques – Impact of lack of (or limited) domain knowledge? • Bulk of activity (i.e. writing) takes place outside system – Usage of drafts “varies a lot” among students – Nature, scope and timing of feedback? • Limited possibility for “mock” experiments: • testing & evaluation on “live” material • Connection with summative (tutor-based) assessment ?
  • 4. Education Postgraduate Course H810 Accessible online learning: supporting disabled students TMA1 (Tutor-Marked Assignment) – 1500 words Write a report explaining the main accessibility challenges for disabled learners that you work with or support in your own work context(s). Critically evaluate the influence of the context (e.g. country, institution, perceived role of online learning within education) on the: (1) identified challenges; (2) influence of legislation; (3) roles and responsibilities of key individuals; (4) role of assistive technologies in addressing these challenges. TMA2 – 3000 words Critically Evaluate your own learning resource in the following ways: 1. Briefly describe the resource and its accessibility features. 2. Evaluate the accessibility of your resource, identifying its strengths and weaknesses. 3. Reflect on the processes of creating and evaluating accessible resources.
  • 5. Context • Essays: Open University (UK) postgraduate assignments – Distance learning, adult learners – 1500+ words, free-text & open-ended questions • No “Gold Standard”, wide range of content – Perfect test ground for extractive techniques – Impact of lack of (or limited) domain knowledge? • Bulk of activity (i.e. writing) takes place outside system – Usage of drafts “varies a lot” among students – Nature, scope and timing of feedback? • Limited possibility for “mock” experiments: • testing & evaluation on “live” material • Connection with summative (tutor-based) assessment ?
  • 6. openEssayist localhost:8065 phaeros.open.ac.uk:80 openEssayist PHP, Epiphany [Symfony2] User openEssayist RESTful API PHP, Epiphany User User pyEA RESTful API Python, Flask localhost:8064 AfterTheDeadline Spell/Grammar checker Java User localhost:9998 Apache Tika Text Extractor Java Orchestrator (Open) Learner Model pyEssayAnalyser Python, NLTK
  • 7. Extractive Summarisation • Hypothesis – quality and position of key phrases and key sentences within an essay (i.e., relative to the position of its structural components) give idea of how complete and well-structured the essay – provide a basis for building suitable models of feedback • Experimenting with two simpler summarisation strategies – key phrase extraction : identifying individual words or short phrases are the most suggestive of the content of a discourse – extractive summarisation: identifying whole key sentences. • Rapid implementation and testing
  • 8. Summarisation Processes 1. NL pre-processing of text 2. unsupervised recognition of structural elements 3. unsupervised extraction of key words/phrases 4. unsupervised extraction of key sentences.
  • 9. Pre-processing • Using NLTK (Python-base Natural Language Processing Toolkit) – tokenisers, – lemmatiser, – part-of-speech tagger, – List(s) of stop words. • Experimenting different approaches to define suitable stop word list(s) – domain-independent list? – Generated from appropriate reference materials (using TF-IDF, for example)?
  • 10. Essay Structure • Restructure text as paragraphs/sentences • Automatic Identification of each paragraph’s structural role – Summary, Introduction, conclusion, body, references, … – Regardless of presence of content-specific headings – No clues from formatting markup (plain text submission) • Decision trees developed through manual experimentation – corpus of 135 student essays submitted in previous years for the same module that the evaluation will be carried out on. • Still need formal evaluation but output good enough for first rounds of OpenEssayist testing, and continually improving
  • 11.
  • 12. Key words, lemmas and phrases • Unsupervised extractive summarisation using graph-based ranking methods (TextRank, Mihalcea & Tarau 2004, 2005) • Each unique word is represented by a node in the graph, and co- occurrence relations (specifically, within-sentence word adjacency) are represented by edges in the graph. • Compute a 'key-ness' value for each word in the essay ('Key-ness' can be understood as 'significance within the context of the essay‘) • Centrality algorithm used to calculate the significance of each word – betweenness centrality (Freeman 1977) and PageRank (Brin & Page 1998) – Roughly speaking, a word with a high centrality score is a word that sits adjacent to many other unique words which sit adjacent to many other unique words which…, and so on. • The words with high(est) centrality scores are the key words. – Decision needs to be made as to what proportion of the essay's words qualify as key words. • Sequences of keywords in the surface text identify within-sentence key phrases (bigrams, trigrams and quadgrams).
  • 13. Key words, lemmas and phrases
  • 14. Key Sentences • Similar graph-based ranking approach used to compute key-ness scores for whole sentences. • Instead of word adjacency (as in the key word graph), co-occurrence of words across pairs of sentences is the relation used to construct the graph. – similarity measures of every pair of sentences. • The similarity scores become edge weights in the graph, while whole sentences become the nodes. • TextRank key sentence algorithm (based on PageRank but with added edge weights) is then applied.
  • 17. Exploring The Design Space ❶Researcher-centred Design – Data-driven – Architecture setup, integration & refinement of tools – From discourse to summarisation – Emerging properties, hypotheses building
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25. • Multiple External Representation • Mash-ups, reports, summaries, … • Highlighting co-occurrence of terms (or lack of) • Exploration & discovery, hypotheses building, eliciting recommendations & heuristics
  • 26. Exploring The Design Space ① Researcher-centred Design – Data-driven – Architecture setup, integration & refinement of tools – From discourse to summarisation – Emerging properties, hypotheses building ❷ Learner-centred Design – Task-driven – Hypotheses testing & validation, refinement – From summarisation to formative feedback – Live evaluation
  • 27. Question: What kind of feedback?
  • 28. Section of essay Purpose of section Title Write the full question (title) at the top of your assignment. It will contain keywords (known as content and process words). See the 'Understanding the question' webpage for these. Introduction A paragraph or two to define key terms and themes and indicate how you intend to address the question. Main body A series of paragraphs written in full sentences that include specific arguments relating to your answer. It’s vital to include evidence and references to support your arguments. Conclusions A short section to summarise main points and findings. Try to focus on the question but avoid repeating what you wrote in the introduction. References A list of sources (including module materials) that are mentioned in the essay. • Introductions – An introduction provides your reader with an overview of what your essay will cover and what you want to say. – Essays introductions should • set out the aims of the assignment and signpost how your argument will unfold • introduce the issue and give any essential background information including a brief description of the major debates that lie behind the question • define the key words and terms • be between 5% and 10% of the total word count – Some students prefer to write the introduction at an early stage, others save it for when they have almost completed the assignment. If you write it early, don't allow it to constrain what you want to write. It's a good idea to check and revise the introduction after the first draft. • The body of your essay – … Open University - Skills for OU Study http://www.open.ac.uk/skillsforstudy/essays.php
  • 29. Question: Reflective activities? • “Advice for action” – Expectation vs. intention – Reflection, self-report, validation of advices, … • Introducing user interventions in the system • Feeding back to the system? To the Essay Analyser?
  • 32. Current and Future Work • Three lines of experimentations: – improve the different aspects of the essay analyser (e.g. different “key-ness” metrics, introduce domain-specific lists of stop-words) – Analyses of summarisation output (e.g. factor analysis) to run on existing corpus of essays • 5 years of essays on the H810 course, all marked and annotated by human tutors), • identify trends and markers to be used as progress/performance indicators; – Iterative, user-centred, design and testing of openEssaysit (refine possible usage scenarios, test pedagogical) • Currently proceeding with second design phase • First live evaluation, in authentic context, by a new cohort of students on the H810 module (Sept 2013)

Editor's Notes

  1. Before extracting key terms and sentences from the text, the text is automatically pre-processed using some modules from the Natural Language Processing Toolkit (Bird et al. 2009): several tokenisers, a lemmatiser, a part-of-speech tagger, and a list of stop words. We are experimenting with different approaches to defining a suitable stop word list, and are not yet decided whether to use a domain-independent list or whether to use a domain-specific list derived from appropriate reference materials (using TF-IDF, for example).Lemmatization usually refers to doing things properly with the use of a vocabulary and morphological analysis of words, normally aiming to remove inflectional endings only and to return the base or dictionary form of a word, which is known as the lemma
  2. The identification of the essay structure is carried out using decision trees developed through manual experimentation with a corpus of 135 student essays submitted in previous years for the same module that the evaluation will be carried out on. The system automatically recognises which structural role is played by each paragraph in the essay (including summary, introduction, conclusion, main body, references, etc.). This identification is achieved regardless of the presence of content-specific headings and without getting clues from formatting mark-up. We have not yet carried out a formal evaluation of the structure identification procedure, but its accuracy rates are good enough to use in first rounds of OpenEssayist testing, and are continually improving.
  3. Essay Analyser uses graph-based ranking methods to perform unsupervised extractive summarisation, following TextRank (Mihalcea & Tarau 2004, 2005). One graph is used to derive key words and short phrases, and a second graph is used for the derivation of key sentences. Regarding key words, to compute a 'key-ness' value for each word in the essay, each unique word is represented by a node in the graph, and co-occurrence relations (specifically, within-sentence word adjacency) are represented by edges in the graph. 'Key-ness' can be understood as 'significance within the context of the essay'. A centrality algorithm – we have experimented with betweenness centrality(Freeman 1977) and PageRank (Brin & Page 1998) – is used to calculate the significance of each word. Roughly speaking, a word with a high centrality score is a word that sits adjacent to many other unique words which sit adjacent to many other unique words which…, and so on. The words with high centrality scores are the key words. Since a centrality score is attributed to every unique word in the essay, a decision needs to be made as to what proportion of the essay's words qualify as key words. The key word distribution of scores follows the same shape for all essays, an acute elbow and then a very long tail, observed for word adjacency graphs by (FerreriCancho & Solé 2001). We therefore currently take the key-ness threshold to be the place where the elbow bend appears by eye to be sharpest. We are investigating alternative and less subjective methods of deciding where the threshold should be (e.g., investigating graph structure through randomisation methods). Once key words have been identified, the system matches sequences of these against the surface text to identify within-sentence key phrases (bigrams, trigrams and quadgrams).In fact the graph nodes are the lemmas of the unique words, but for brevity's sake, we will speak in terms of words.
  4. A similar graph-based ranking approach is used to compute key-ness scores to rank the essay's sentences. Instead of word adjacency (as in the key word graph), co-occurrence of words across pairs of sentences is the relation used to construct the graph. More specifically, we currently use cosine similarity to derive a similarity score for every pair of sentences. The similarity scores become edge weights in the graph, while whole sentences become the nodes. The TextRank key sentence algorithm (based on PageRank but with added edge weights) is then applied. We are intending to experiment with alternative similarity measures, including vector space measures of word similarity originally described in (Schütze 1998).
  5. Vagaries : An unexpected and inexplicable change in something (in a situation or a person's behaviour, etc.)Rule-of Thumb: A rule or principle that provides guidance to appropriate behaviour
  6. Vagaries : An unexpected and inexplicable change in something (in a situation or a person's behaviour, etc.)Rule-of Thumb: A rule or principle that provides guidance to appropriate behaviour