Use of recommendation models to provide support to dyslexic students

Gianluca Morciano,José Manuel Alcalde-Llergo,Andrea Zingoni,Enrique Yeguas-Bolivar,Juri Taborri,Giuseppe Calabrò
DOI: https://doi.org/10.1016/j.eswa.2024.123738
2024-03-18
Abstract:Dyslexia is the most widespread specific learning disorder and significantly impair different cognitive domains. This, in turn, negatively affects dyslexic students during their learning path. Therefore, specific support must be given to these students. In addition, such a support must be highly personalized, since the problems generated by the disorder can be very different from one to another. In this work, we explored the possibility of using AI to suggest the most suitable supporting tools for dyslexic students, so as to provide a targeted help that can be of real utility. To do this, we relied on recommendation algorithms, which are a branch of machine learning, that aim to detect personal preferences and provide the most suitable suggestions. We hence implemented and trained three collaborative-filtering recommendation models, namely an item-based, a user-based and a weighted-hybrid model, and studied their performance on a large database of 1237 students' information, collected with a self-evaluating questionnaire regarding all the most used supporting strategies and digital tools. Each recommendation model was tested with three different similarity metrics, namely Pearson correlation, Euclidean distance and Cosine similarity. The obtained results showed that a recommendation system is highly effective in suggesting the optimal help tools/strategies for everyone. This demonstrates that the proposed approach is successful and can be used as a new and effective methodology to support students with dyslexia.
Computers and Society,Artificial Intelligence
What problem does this paper attempt to address?
The problem that this paper attempts to solve is to provide personalized support tools and learning strategies for students with dyslexia. Specifically, the researchers hope to identify the most suitable assistive tools and learning methods for each dyslexic student through the use of recommendation models, thereby improving their learning outcomes. ### Main problems: 1. **Personalized support**: Since dyslexia affects different students in different ways, highly personalized support tools and learning strategies are required. 2. **Improve learning performance**: By providing appropriate support tools and strategies, help dyslexic students improve their academic performance and learning efficiency. ### Research background: - Dyslexia is a common specific learning disorder that seriously affects students' cognitive abilities, especially in reading, writing, and mathematical operations. - Early diagnosis and an effective support system are crucial for helping these students overcome difficulties. - Recommendation Systems (RS), as a machine - learning technique, can provide personalized suggestions based on users' preferences and behavior data. ### Solutions: - **Application of recommendation models**: The researchers use recommendation algorithms, especially the Collaborative Filtering (CF) method, to detect personal preferences and provide the most appropriate suggestions. - **Three recommendation models**: Three Collaborative Filtering recommendation models - item - based, user - based, and weighted - hybrid model - were implemented in the study and tested on a large database containing information on 1,237 students. - **Similarity measures**: Each recommendation model uses three different similarity measure methods - Pearson correlation, Euclidean distance, and Cosine similarity - to evaluate its performance. ### Experimental results: - The results show that the recommendation system is very effective in recommending the optimal assistive tools/strategies for each student, with an error of less than 12%. - The precision rate is 0.85 and the recall rate is 0.83. - The hybrid model performs best when using the Pearson correlation as the similarity measure. - In the final test of 50 students, dyslexic students using the recommendation algorithm had an average academic performance improvement of nearly 1 point on a 1 - to - 10 - point rating scale, showing higher learning performance. ### Formula presentation: 1. **Hybrid model prediction score formula**: \[ br=\alpha\cdot bru+(1 - \alpha)\cdot bri \] where $\alpha$ is the weight, $bru$ is the user - based method prediction score, $(1 - \alpha)$ is the weight, and $bri$ is the item - based method prediction score. 2. **Similarity measure formulas**: - **Pearson correlation coefficient**: \[ \text{Pearson Correlation}=\frac{\sum_{i = 1}^{N}(x_i-\bar{x})(y_i-\bar{y})}{\sqrt{\sum_{i = 1}^{N}(x_i-\bar{x})^2}\sqrt{\sum_{i = 1}^{N}(y_i-\bar{y})^2}} \] - **Euclidean distance**: \[ \text{Euclidean distance}=\sqrt{\sum_{i = 1}^{N}(x_i - y_i)^2} \] - **Cosine similarity**: \[ \text{Cosine distance}=1-\frac{\sum_{i = 1}^{N}x_i y_i}{\sqrt{\sum_{i = 1}^{N}x_i^2}} \]