Научная статья на тему 'Implementing the Adaptive Learning Techniques'

Implementing the Adaptive Learning Techniques Текст научной статьи по специальности «Компьютерные и информационные науки»

CC BY-NC-ND
823
155
i Надоели баннеры? Вы всегда можете отключить рекламу.
Ключевые слова
adaptive learning / e-learning / genetic algorithm / distance learning system

Аннотация научной статьи по компьютерным и информационным наукам, автор научной работы — Ivan Krechetov, Vladimir Romanenko

The concept of adaptive learning emerged a few decades ago, but most theoretical findings have never been put into practice, and software solutions had no significant reach for a long time due to insufficient e-learning technology development and coverage. The recent advancements of information technology allow the elaboration of complex big data analytics and artificial intelligence solutions, in adaptive learning in particular. This article investigates exploitation of adaptive learning technology and techniques. The solutions proposed allow mapping optimal individualized learning paths for students in online courses, using the ratio of the level of knowledge at course completion to time spent on the course as an optimality criterion. A genetic algorithm is used to solve this optimization problem. A model based on the speed of forgetting was applied to extrapolate the level of retained knowledge. Practical implementation of the technology proposed involves a set of tools to expand the adaptive learning opportunities of distance learning systems and a module to operate the genetic algorithm. We developed a few versions of software architecture using different technologies and programming languages and either one or two servers. The solution was tested during the design of adaptive learning courses for National University of Science and Technology MISIS (NUST MISIS) and Tomsk State University of Control Systems and Radioelectronics (TUSUR).

i Надоели баннеры? Вы всегда можете отключить рекламу.
iНе можете найти то, что вам нужно? Попробуйте сервис подбора литературы.
i Надоели баннеры? Вы всегда можете отключить рекламу.

Текст научной работы на тему «Implementing the Adaptive Learning Techniques»

Implementing the Adaptive Learning Techniques

I. Krechetov, V. Romanenko

Received in Ivan Krechetov

December 2019 Head of the Laboratory of Instrumental Modelling and Learning Systems, Tomsk State University of Control Systems and Radioelectronics. Email: kia@2i.tusur.ru Vladimir Romanenko Candidate of Sciences in Technology, Associate Professor, Department of Automated Control Systems, Tomsk State University of Control Systems and Radioelectronics. Email: rva@2i.tusur.ru

Address: Room 607, 146 Krasnoarmey-skaya St, 634034 Tomsk, Russian Federation.

Abstract. The concept of adaptive learning emerged a few decades ago, but most theoretical findings have never been put into practice, and software solutions had no significant reach for a long time due to insufficient e-learning technology development and coverage. The recent advancements of information technology allow the elaboration of complex big data analytics and artificial intelligence solutions, in adaptive learning in particular.

This article investigates exploitation of adaptive learning technology and techniques. The solutions proposed allow

mapping optimal individualized learning paths for students in online courses, using the ratio of the level of knowledge at course completion to time spent on the course as an optimality criterion. A genetic algorithm is used to solve this optimization problem. A model based on the speed of forgetting was applied to extrapolate the level of retained knowledge.

Practical implementation of the technology proposed involves a set of tools to expand the adaptive learning opportunities of distance learning systems and a module to operate the genetic algorithm. We developed a few versions of software architecture using different technologies and programming languages and either one or two servers. The solution was tested during the design of adaptive learning courses for National University of Science and Technology MISIS (NUST MISIS) and Tomsk State University of Control Systems and Radioelec-tronics (TUSUR).

Keywords: adaptive learning, e-learning, genetic algorithm, distance learning system.

DOI: 10.17323/1814-9545-2020-2-252-277

Massive open online courses (MOOCs) have changed the approach to basic education, erasing the boundaries of time and space, and keep transforming the contexts in which they are used. Modern trends in e-learning do not seek to replace MOOCs with newer solutions; rather, they focus on improving learning efficiency and enhancing student

Translated from engagement.

Russian by Adaptive learning, one of such trends, suggests making allowance

I. Zhuchkova. for previous learning experience and monitoring the current process

and quality of knowledge building. In adaptive learning, every student follows an individual learning path adapted to their objectives and ability to perceive and process information.

The most prominent works in adaptive learning have been written by Pyotr Brusilovsky [Brusilovsky 1996; 1997; 1998; 2001], Igor Norenkov [Norenkov, Uvarov 2005; Norenkov, Sokolov 2009; Noren-kov, Sokolov, Uvarov 2009], Galina Rybina [2008a; 2008b; 2010; 2011; 2014], and Leonard Rastrigin [Rastrigin, Erenshteyn 1988]; modern research in the field as well as the existing software solutions draw heavily on those works. However, adaptive learning technology had no significant spread for a long time due to low efficiency of computing tools, the state of science in the field, issues in the implementation of intelligent and expert systems, and low development and adoption of e-learning technology.

Today's level of information technology development allows finding relatively cost-effective complex solutions in AI and big data analytics, which became highly trending with the wide spread of e-learn-ing and created a new segment in the market of educational software. Adaptive learning services and systems are one example of such solutions.

A lot of digital products available today feature elements of adaptive learning. The level and methods of adaptation may differ, being largely contingent on the context of software application and the specific aspects of a particular learning process. A substantial proportion of adaptive learning solutions are developed for adult and corporate education, foreign language services in particular. Meanwhile, the technology is poorly represented in higher education, since using it largely implies an educational reform. Some solutions do exist, however, and the producers have been trying to promote their adoption in the digital environments of higher education institutions.

Adaptive learning has mostly been adopted by American and European universities in the form of adaptive learning platforms like Knewton1 or Cerego2. Courseware offered by such platforms is used as adaptive learning tools to support traditional classrooms. Those solutions for higher education have not conquered the Russian market yet, as there has been little or no localization; besides, the e-learn-ing infrastructure of Russian universities makes integration technologically impossible.

Solutions described in this article were developed by Tomsk State University of Control Systems and Radioelectronics (TUSUR) as part of a project seeking to enable Russian universities to integrate adaptive e-learning practices into their learning processes.

1 https://www.knewton.com

2 https://www.cerego.com

1. Adaptive Learning Algorithm

1.1. Objective

The central idea of adaptive learning is about building optimal individual learning paths as sequences of modules. Module is a logically complete minimal unit of learning material that explains one or more terms or concepts and is connected to other units [Krechetov, Kru-chinin 2017:75-80]. A module may contain text, graphics, video, audio, and any other interactive forms of content presentation.

Building a modular path is a multi-criteria optimization problem. However, given the specific aspects of higher education programs, particularly the limited course time, the ratio of the level of knowledge at course completion to the time spent on the course may be considered an optimality criterion:

(1) F(P, fconst)

TM

R(tcons)

^ min.

Where P stands for the learning path (the order of learning modules), TM is the total time to be spent on all modules, and R denotes the level of retained knowledge. Since course completion period tconst is constant, it may be omitted when writing down the objective function (1).

The problem (1) is solved using integer programming, as the order of learning modules is basically the order of their identifiers, represented by integer values. Moreover, the problem-solving landscape is highly discretized, because by far not every order of learning modules is acceptable, which will be shown below. For this reason, problem limitations can only be written down as relations on sets, in terms of discrete mathematics. Conventional optimization algorithms do not work well with such problems, so we opt for a genetic one.

1.2. Methodological A model based on the speed of forgetting was applied to extrapolate Approaches the level of retained knowledge at course completion using intermediate test results.

There are few, if any, other reasonably substantiated models suitable for predicting the level of knowledge in future periods based on previous learning experience. Bayesian networks require substantial computing resources and do not offer better accuracy (beyond the adaptive testing objectives) [Khlopotov 2014:40-52]. Machine learning technology can accelerate decision making essentially (e. g. Snappet3), yet dozens of thousands completed learning paths would be required to ensure sufficient prediction accuracy for a course consisting of at least 150-200 modules. Therefore, statistical models (e. g. Bayesian network-based trust model) or forgetting curve models (e. g. [Kharitonov, Krushel 2012]) should be used at the initial stage of course integration.

Calculations for the mathematical model of forgetting used in this study, as well as the domain model, are given in Appendix.

3 https://nl.snappet.org/ Voprosy obrazovaniya / Educational Studies Moscow. 2020. No 2. P. 252-277

Figure 1. Adaptive learning genetic algorithm flowchart

A

Start J Sampling Search for P * Presentation of P,

End

Actualization of S

V

Assessment

1.3. Methodology and Algorithm

1.3.1. Adaptive Learning Algorithm

1.3.2. Genetic Algorithm Description

Figure 1 shows the general flowchart of an adaptive learning algorithm [Krechetov et al. 2018:33-40].

Let us now describe the sequence of steps.

1. Sampling. Set A is sampled, which consists of modules for fostering poorly developed competencies (see formulae 11 and 12 in Appendix). Competency Kj is considered poorly developed either if it has never been learned, i. e. HRj = 0, or if information has been lost, i. e. the level of retained knowledge has gone below Rnorm on the forgetting curve.

2. Search for P. A genetic algorithm described below is used for finding a learning path.

3. Presentation of P1. A student is presented the first module of P. Learning modules are implemented in a distance learning environment.

4. Assessment. A test is developed within the framework of distance learning to assess the level of output module competencies.

5. Actualization of S. Test results are used to update the student's actual level of knowledge in history HRj.

6. Check for course completion. A course is completed either if course time has expired, i. e. tcurr^ tconst, or if all the competencies have been developed at a satisfactory level, i. e. KS = K, KF = 0 (see formulae 9 and 10 in Appendix).

The fundamental principles of the genetic algorithm for generating a sequence of learning modules are provided in [Krechetov 2014:200206]. The general flowchart is presented in Figure 2.

In a classical genetic algorithm, population is made up of individuals, each representing a candidate solution with a set of chromosomes determining its phenotype. Chromosomes usually represent arrays of bits, which are relatively easy to manipulate in the procedures of crossover, mutation, etc. When solving the problem of adap-

Figure 2. Genetic algorithm flowchart

tive content generation, the phenotype of an individual should define the learning path P, i. e. the order of learning modules from sample A. It is impossible to encode the phenotype as a bit array, because not every bit combination will produce an acceptable sequence of learning modules. For this reason, the implemented version of the genetic algorithm suggests that chromosomes describe ordered sequences of modules, which results in a much more complicated procedure.

1.3.3. Research and Below, we are dwelling on how genetic algorithm procedures work.

Intermediate Results Genetic algorithm parameters include the following:

• Population size npop (set to 100);

• Maximum number of generations ngen (set to 100);

• Mutation probability pmutat,on (1%);

• Crossover probability pcross (90%);

• Elite individual emergence probability pelite (5%).

1. Generation of the initial population. npop of individuals is generated uniformly.

2. Calculation of statistics involves two steps. First, fitness (target) function should be defined for each individual. Using the agreed notation, the previously introduced objective function (1) will look as

lTMPi F(P) = ±jRt - min,

where i = 1, 2, ..., np and i = 1, 2, ..., m. That is, by minimizing the objective function F (P), we are trying to find a sequence of modules P with the shortest possible total course duration and at the same time to maximize the total level of retained knowledge in all competencies Kj at course completion. Second, such statistical indicators as minimum, maximum, and average objective function in the population (F . , f , f ) are calculated. The individual with

1 1 * mirn max' avg>

the lowest objective function value is selected as a near-optimal solution.

3. Quasi-random sequences. In the implemented version of genetic algorithm, crossover occurs between neighboring individuals, so quasi-random sequences are used to increase diversity in the initial population.

4. Selection. Next, neighboring individuals are compared in pairs, and the fittest one (the one with the lowest objective function value) is inherited unchanged by the next generation. Only half of the population can be generated using this method, so another iteration of quasi-random sequences and sampling is performed.

5. Crossover and mutation. The crossover procedure consists of two steps.

Figure 3. False convergence of a genetic algorithm

• Step 1. Identifying elite individuals. Figure 3 explains the necessity of adding them to the algorithm.

Initially, genetic algorithms were studied to be applied to solve optimization problems, specifically the Rosenbrock function minimization problem. The Rosenbrock function is mapped as a narrow curved valley, so many optimization algorithms fail to converge to the global minimum. It turned out, eventually, that genetic algorithms often showed false convergence. A higher concentration of individuals in the valley would result in their genetic material overweighing that of the other individuals. That is, even fitter solutions (those closer to the global optimum) would become less fit as a result of crossover with "junk" DNA. A few generations later, nearly the whole population would degenerate into a false optimum.

To solve this problem, elite individuals were added to the population. Elite individuals constitute a small proportion of the population (pellte) with the highest fitness function value (or lowest objective function value).

• Step 2. Randomly picking two individuals from the old population (previous generation) to generate two individuals of the new population. If at least one elite individual participates in crossover, its chromosomes are inherited by offspring unchanged, otherwise one-point crossover occurs with probability pcross.

To do this, a random crossover point mate1 is chosen in the first parent.

Next, a few attempts are made to find an acceptable crossover point mate2 in the second parent (Fig. 4).

Figure 4. Crossover process

Parent 1 Parent 2

Offspring 1 Offspring 2

First, we pick a random point and check if the crossover points mate1 and mate2 are acceptable for the first and second parent chromosomes, respectively. Software generates "waves" of competencies for each of the parents, two waves of learned competencies spreading from the start of coding sequences (KS1, KS2) and two waves of nonlearned competencies spreading from the end of coding sequences (KF1, KF2):

matek

KSk = KS u U KO ,,

i = 1

nk nk

KFk = (kf u U ki ) - (ks u U KO) .

i = matek + 1 i = matek + 1

Figure 5. Single iteration execution times

300 Time, ms

200

100

Relative number of modules and 6 competencies

0

2

3

4

iНе можете найти то, что вам нужно? Попробуйте сервис подбора литературы.

5

Crossover is possible if KS1 c KF2 and KS2 C KF.. .

If crossover points have been found, crossover occurs as described in the flowchart in Figure 4.

Experiments show the crossover success rate to be around 30%.

When implementing the mutation operator, either of the following two events occurs with probability pmutation:

- Replacement of one module in a sequence with another one from the database, as long as the above conditions are met; or

- Transposition of two modules in a sequence under the same conditions.

6. Optimality assessment. The algorithm is terminated either if the generation count exceeds ngenor no improvement is observed in Fmin for ten generations.

A series of optimizations was performed, followed by an assessment of genetic algorithm execution time depending on the language used and the number of modules and competencies included in the adaptive course (Fig. 5).

The x-axis represents the relative number of modules and competencies in a section of the Informatics course (43 modules, 57 competencies). Other values were obtained by a fold increase in that number. For every value on the horizontal axis, three variables are plotted in the Y direction, representing the minimum and maximum execution time with the given number of modules and competencies as well as the median value obtained as the point with the lowest root mean square error:

t : ^(t - t1) ^ min.

i = i

Some dispersion in the results is explained by using a random number generator in the algorithm procedure. The same input data may yield varying numbers of generations, crossovers, etc. Experiments show that the maximum number of generations that a genetic algorithm needs to find an optimal solution depends on the degree of diversity in the database of modules and competencies. With low diversity, an optimal solution can be achieved as soon as in the 5th generation, whereas higher levels of diversity require more iterations.

Therefore, algorithm execution time is determined by the total number of modules and competencies in a course and by module diversity. No correlation was found with the total number of modules and competencies in the database or the total number of students. Inefficiencies in server performance can only be observed if it receives multiple requests from different clients.

As seen in Figure 5, the growth rate of the function exceeds that of a linear function up to a certain point, but then it slows down because some phases in the genetic algorithm with relatively constant execution times have no noticeable impact on the total execution time anymore. This allows extrapolating efficiency of the genetic algorithm to courses with an arbitrary number of modules and competencies.

2. Implementation The following project decisions were made while planning implemen-2.1. Results, as tation of the adaptive learning model.

Aligned with the Goals First of all, client-server architecture was opted for. Desktop software solutions are very rarely used in e-learning today, online systems being the primary focus of all universities investing in distance learning.

Second, it was decided to present all the tools for developing and launching adaptive learning courses as cloud services of the SaaS (Software as a Service) type to make them accessible to any university or institution concerned, regardless of the distance learning system they use, and to facilitate maintenance and support of the software component.

Third, modules and competencies were set to be universal, i. e. not assigned to any particular course. They are all contained in the same database and can be used as necessary in the development of a specific course.

Implementation involved the following steps.

1. A database of modules and competencies in the domain of informatics was developed. Originally, the modules were described in an ordinary Word document, and the competencies were represented as a mind map using FreeMind software (Fig. 6).

2. Software implementation of the previously described genetic algorithm was performed. Experiments show that scripting languag-

Figure 6. A segment of the mind map of course competencies

1.1. Know the history of Informatics, including the emergence and development of the discipline

{

1.1.1. Know the main fields within the discipline

1.1.2. Know the fields within applied informatics

1.1.3. Know the history of discipline emergence

1.2. Know the definition and properties of information

' 1.2.1. Know the different approaches to defining the concept of Information

1.2.2. Know and be able to define the property of Adequacy

1.2.3. Know and be able to define the property of Objectiveness

1.2.4. Know and be able to define the property of Completeness

1.2.5. Know and be able to define the property of Reliability

1.2.6. Know and be able to define the property of Relevance

1.2.7. Know and be able to define the property of Accessibility

1.3. Know the definition of data and be able to differentiate between data and information

1.3.1. Know and be able to classify the methods of data processing

1.3.2. Know the main types of data operation

1.3.3. Know the main parameters of data carriers Understand how changes in the parameters of data carriers affect their properties

Know the units of data measurement

es like PHP are not suitable for solving this problem, so C++ and C# implementations are used in this study.

3. The database used in distance learning systems was modified to store all the data described in the domain model.

4. A few plugins were developed to create and deploy adaptive courses for the Moodle distance learning platform, (i) a local plugin containing the kernel of the solution, and an interface for database filling, (ii) a theme-type plugin to load the kernel and provide automatic navigation through the course for students, and (iii) a resource-type plugin to provide module content.

5. The pre-developed modules and competencies were transferred to the database using the new tools (Fig. 7).

6. The genetic algorithm was implemented as a SaaS solution on an individual server. The other development tools will also be available as cloud-native SaaS applications in the future.

7. The pilot course Informatics was created, and evaluation of the whole system was performed on its basis.

Figure 7. Development system interface

Tests ■ Modules. Competencies, Categories.

01_Key Concepts in Informatics

Add

Know the main types of data operation

Know and be able to define the property of Relevance Know and be able to define the property of Adequacy

Know the fields within applied informatics

Know the units of data measurement

Understand how changes in the parameters of data carriers affect their properties

Know the main parameters of data carriers

Know and be able to classify the methods of data processing

Know the definition of data and be able to differentiate between data and information

Know and be able to define the property of Accessibility

; Know and be

/ able to define

; the property of

; Objectiveness

"01_0сновные ne

Добавить М 72 1М:10305 Знать в каких единицах измеряются к! 71 иИ:10304 ф х Понимать каким образом изменение характеристик носителя данных влияет на id 70 uid:10303

¡й 69 ш<1:10302 Знать основные операции надданными ¡(168 иК1:10301 фх Знать методы обработки данных и уметь их классифицировать к! 67 ий:10300 ф X Знать, что такое данные и уметь отличать их от информации id 66 uid:10g07 Знать и уметь определить свойство -Доступность

¡(1 65 ий:10206 Знать и уметь определить свойство -Актуальность !<1 64 ий:10205 Знать и уметь определить свойство -Достоверность М 63 ик!:10204 ф X Знать и уметь определить свойство -Полнота id 62 uid:10203 Знать и уметь определить свойство -Объективность

¡<161 и ¡<1:10102 ф X Знать и уметь определить свойство -Адекватность ¡<160 и ¡(1:10201 ф X Знать различные подходы к определению понятия - Информация И 59 Ш(1:10200 Ф X Знать что такое информация и какими свойствами она обладает id 57 uid:10103 ф X Знать историю появления дисциплины

¡й 56 ик!:10102 фх Знать направления развития прикладной И 55иИ:10101 фх .-Знать основные направления развития ¡(1 54иИ:10100 Знать историю появления и развития Know the history

Know and be able to define the property of Reliability

Know and be able to define the property of / Completeness

Know the different approaches to defining the concept of Information

Know the definition and properties of information

Know the main fields within the discipline

of Informatics

Know the history of Informatics, including the emergence and development of the discipline

The overall architecture of the resulting software solution is displayed in Figure 8:

This architecture allows flexible changes to solution configuration. It was made as independent as possible from the distance learning system used. When changing the system, only the adaptive learning plugin and the genetic algorithm bootloader (in case the database structure has changed) need to be rewritten. As soon as all the tools

Figure 8. Overall software solution architecture

Server 1 Server 2

Legend:

DLS distance learning system used (Moodle), Course adaptive learning course; DB database (not included in Moodle, so displayed outside the DLS) containing all the information on course modules, tests, student profiles, etc., ALP plugins for Moodle running the adaptive learning model, DS development system, GAC component implementing the genetic algorithm, Script PHP script to exchange information between the servers, Bootloader component loading information necessary for genetic algorithm implementation (user profile, lists of modules and competencies, etc.) from the database; GA genetic algorithm implementation.

have been moved to the cloud, all the specified modifications will be performed on the cloud server.

Implementation of the genetic algorithm as a cloud solution is also useful for load balancing: the algorithm occupies substantial computing resources, so using a cloud service allows keeping server response times low. However, there are no technical barriers to locating the system and all the necessary tools on the same server.

2.2. Evaluation of the In 2018, TUSUR and National University of Science and Technol-Solution ogy MISIS (NUST MISIS) entered an agreement, under which an adaptive learning course in General Chemistry was created for NUST MISIS using the developed technology [Krechetov, Dorofeeva, De-gtyarev 2018:76-86]. The course was tested in the fall semester 2018/19 by the NUST MISIS Department of General and Organic Chemistry. Unlike the online course in Informatics, this one used a blended learning model based on the flipped classroom strategy. Traditionally, the course General Chemistry featured three types of classroom activities: lectures, tutorials, and lab work. During course implementation, each of them was completed with an adaptive e-learning component.

Efficiency of an adaptive course can be evaluated using the chart in Figure 9. The y-axis represents the percentage of students who passed an assessment in their major on their first try. The sample

Figure 9. Comparative performance of students in different groups

Efficiency (absolute change)

Adaptive learning included

Conventional format

93,5

Lab sessions Tutorials

consisted of groups of students of the same major in the same year, taught by the same professor.

As seen in Figure 9, students from the experimental group (which used adaptive learning) performed much better in every type of assessment than their peers in the control group with no adaptive learning component. For complete description of the evaluation results, see [Krechetov, Dorofeeva, Degtyarev 2018:76-86].

Because the integration of an adaptive course produced positive results, it was decided to continue cooperation between the universities. We are currently developing an adaptive course in Physics for NUST MISIS and an adaptive compensatory course in mathematics for NUST MISIS and TUSUR. A compensatory course in mathematics is necessary for first-year students who bring different levels of knowledge to the university and thus differ in their ability to study further mathematics. Compensatory content allows lower-performing students to catch up with the others.

We are also enhancing the data collection procedure of this adaptive learning model in order to use more student profile parameters when building individualized learning paths. Even more opportunities can be realized with big data on how students interact with content, which paths are the most effective for particular nominal categories of students, how rationally students spend the time allowed for learning, etc.

3. Conclusion Technology proposed in this study is universal and suitable for ap-

plication in a variety of contexts. It can be used to create an autonomous system of teacher-less learning. At the same time, the solution can serve as an effective student profiling tool in e-learning (distance learning), providing teachers with extensive student performance analytics and allowing them to adjust the individual learning paths. Furthermore, if e-learning tools are used to support classroom activities (most often with the help of distance learning systems), classroom performance can be tracked by the system to monitor recent student

progress, which can then be used by algorithms to actualize the distance learning paths.

iНе можете найти то, что вам нужно? Попробуйте сервис подбора литературы.

References Brusilovsky P. (2001) Adaptive Hypermedia. User Modeling and User-Adapted Interaction, vol. 11, no 1-2, pp. 87-110.

Brusilovsky P. (1997) Efficient Techniques for Adaptive Hypermedia. Intelligent Hypertext: Advanced Techniques for the World Wide Web. Lecture Notes in Computer Science (eds C. Nicholas, J. Mayfield), Berlin: Springer-Verlag, vol. 1326, pp. 12-30.

Brusilovsky P. (1996) Methods and Techniques of Adaptive Hypermedia. User Modeling and User-Adapted Interaction, vol. 6, no 2-3, pp. 87-129.

Brusilovsky P. (1998) Methods and Techniques of Adaptive Hypermedia. Adaptive Hypermedia and Hypermedia, Dordrecht: Kluwer Academic Publishers, pp. 1-43.

Buimov A., Buimov B. (2010) Veroyatnostnaya model effekta povtoreniy v obu-chenii [Probabilistic Model of Recurrences]. Proceedings of Tomsk State University of Control Systems and Radioelectronics, no 1, pp. 236-242.

Ebbinghaus H. (1913) Memory: A Contribution to Experimental Psychology. Available at: https://archive.org/stream/memorycontributi00ebbiuoft (accessed 30 April 2020).

Kharitonov I., Krushel E. (2012) Prognozirovanie urovnya osvoeniya kompetent-siy vypusknikami vuza na osnove rejtingovykh otsenok abiturientov [The Prediction of the Gradu-ates Competency Mastering Level Based on the Current Raitng Estimates]. Modern Problems of Science and Education, no 6. Available at: http://www.scienceeducation.ru/ru/article/view?id=7531 (accessed 30 April 2020).

Khlopotov M. (2014) Modeli i algoritmy intellektualnogo analiza obrazovatelnykh dannykh dlya podderzhki prinyatiya resheniy [Models and Algorithms of Educational Data Intelligence Analysis to Support Decision-Making Processes] (PhD Thesis), St. Petersburg: ITMO University.

Krechetov I. (2014) Algoritm generatsii posledovatelnosti obrazovatelnykh mod-uley v tekhnologii polucheniya adaptivnogo obrazovatelnogo kontenta [Learning Module Sequence Generation Algorithms in Adaptive Learning Technology]. Gibridnye i sinergeticheskie intellektualnye sistemy [Hybrid and Synergetic Intelligent Systems]. Proceedings of the 2nd Pospelov International Symposium (Svetlogorsk, May 14-19, 2014) (ed. A. Kolesnikov), pp. 200-206.

Krechetov I., Dorofeeva M., Dyagterev A. (2018) Raskryvaem potentsial adaptivnogo obucheniya: ot razrabotki do vnedreniya [Unlocking the Potential of Adaptive Learning: From Design to Implementation]. Proceedings of the eLearning Stakeholders and Researchers Summit 2018, Moscow: Higher School of Economics, pp. 76-85.

Krechetov I., Kruchinin V. (2017) Ob odnom algoritme adaptivnogo obucheniya na osnove krivoy zabyvaniya [About One Algorithm of Adaptive Learning Based on Forgetting Curve]. Proceedings of Tomsk State University of Control Systems and Radioelectronics, no 1, pp. 75-80.

Krechetov I., Romanenko V., Kruchinin V., Gorodovich A. (2018) Realizatsiya adaptivnogo obucheniya: metody i tekhnologii [Implementation of Adaptive Learning: Methods and Technologies]. Open and Distance Education, no 3, pp. 33-40.

Lange V. (1983) O skorosti zabyvaniya [On the Speed of Forgetting]. Voprosy Psychologii, no 4, pp. 142-145.

Norenkov I., Sokolov N.(2009) Sintez individualnykh marshrutov obucheniya v ontologicheskikh obuchayushchikh sistemakh [Creation of Individual Learning Routes in Ontology Education Systems]. Information Technology, no 3, pp. 74-77.

Norenkov I., Sokolov N., Uvarov M. (2009) Adaptivnye sredy sozdaniya obrazo-vatelnykh resursov [Adaptive Learning Environments]. Nauka i obrazovanie / Science & Education, no 3. Available at: http://technomag.bmstu.ru/ doc/115688.html (accessed 30 April 2020).

Norenkov I., Uvarov M. (2005) Baza i generator obrazovatelnykh resursov [The Base and Generator of Learning Content]. Informadonnye tehnologii/ Information Technologies, no 9, pp. 60-66.

Rastrigin L., Erenshteyn M. (1988) Adaptivnoe obuchenie s modelyu obuchaemo-go [Adaptive Learning with the Learner Model], Riga: Zinatne.

Rybina G. (2008) Obuchayushchie integrirovannye ekspertnye sistemy: nekoto-rye itogi i perspektivy [Integrated Knowledge-Based Expert Systems: Some Conclusions and Outlooks]. Iskusstvenny intellekt i prinyatie resheniy/Artificial Intelligence and Decision Making, no 1, pp. 22-46.

Rybina G. (2008) Teoriya i tekhnologiya postroeniya integrirovannykh ekspertnykh system [Theory and Technology of Integrated Expert Systems Construction], Moscow: Nauchtekhlitizdat.

Rybina G. (2010) Sovremennye podkhody k realizatsii intellektualnogo kompy-uternogo obucheniya na osnove razrabotki i ispolzovaniya obuchayushchikh integrirovannykh ekspertnykh sistem [Modern Approaches to Intelligent Computer-Aided Instruction Based on the Design and Implementation of Integrated Knowledge-Based Expert Systems]. Pribory i sistemy. Uprav-lenie, kontrol, diagnostika / Instruments and Systems: Monitoring, Control, and Diagnostics, no 5, pp. 10-15.

Rybina G. (2011) Intellektualnye obuchayushchie sistemy na osnove integrirovannykh ekspertnykh sistem: opyt razrabotki i ispolzovaniya [Integrated Knowledge-Based Expert Systems: Development and Implementation Practices]. Informatsionno-izmeritelnye i upravlyayushchie sistemy/ Information-Measuring and Control Systems, no 10, pp. 4-16.

Rybina G. (2014) Sistemy, osnovannye na znaniyakh. Integrirovannye ekspertnye sistemy [Knowledge-Based Systems. Integrated Expert Systems], Moscow: Nauchtekhlitizdat.

Appendix Forgetting speed. Experimental study of memory and forgetting was pioneered by German psychologist Hermann Ebbinghaus. The findings were published in his book Memory: A Contribution to Experimental Psychology in 1885 [Ebbinghaus 1913]. Ebbinghaus showed that the speed of forgetting could be satisfactorily approximated by the function

(2) R (t)

k

igt + c'

where k = 1.84 and c = 1.25 if time t is expressed in minutes [Lange 1983:142-145]. These values were obtained for unassociated material.

Note. The level of knowledge cannot be below 0 or above 100%, so the condition R (t) e [0, 1] should be satisfied. With sufficiently high values of t, formula (2) yields positive values only, because

lim , " = 0. lgt + c

However, low values of t render the formula ill-conditioned, so that it can produce an arbitrary output anywhere between and For this reason, we suggest using the following approach to solve formula (2) in practice:

il, t < 1 { min (l

(3) * (t) D, t > 1.

l gt + c

Therefore, R(t) = 1 if Ig t + c < k, which can be interpreted as follows: newly-learned information is retained for some time in memory, higher coefficent k being associated with longer periods of retention.

With two experimental points on the forgetting curve, the coefficients k and c can be obtained:

{

R = k

1 lg t, + c' R = k R lg t2 + c ,

(4) c =

2

whence

R2 lg t2 - R lg t,

R1 - R2

(5) k = R, (lg t, + c) m^m k = R2 (lg t2 + c).

Later studies conducted by Ebbinghaus to examine the process of forgetting meaningful material showed that 75% of information was retained after one day and 70% after four days. These findings are of more interest to us, as learning material is meaningful.

As there are 1,440 minutes in 24 hours, it follows from (4) and (5) that

0,7 • lg 5760 - 0,75 • lg 1440 -g 0,°5 - 0,5 g-" 5,270, and

k = 0,75 • (g 1440 + 5,270) « 6,322,

which can be taken as default coefficient values to be adjusted for the level of retained knowledge.

In this example, we examine a generalized learning process. Obviously, learning and forgetting are complex cognitive processes, and the tools available today are insufficient to predict the impact on their output precisely. However, one effect that can definitely be achieved

Figure 10. Forgetting curve in iterative learning

Percentage of information retained

by iterative learning is that of bringing the level of student knowledge to a required level by the end of the course. In [Buymov 2010:236242], the authors investigate the development of a repetition-based probabilistic model and derive a generalized forgetting function based on an arbitrary number of learning cycles. The function is mapped in Figure 10.

Therefore, repetitions increase the level of retained knowledge at course completion as a proportion of coefficient a:

(6) R(t,r) =R(t) • a (r),

where r is the number of repetitions.

The type of dependence a (r) is unknown, plus it will be individual for every student. Suppose that it is of the form

a (r) =-15-,

1 + eXp(T5)

i.e. in the limit, with sufficiently many repetitions, a (r) will tend to 1.5 (as it has been mentioned, these assumptions will only be used to estimate the coefficients of dependence R(t,r) by default; further on, they will be adjusted based on student's actual learning outcomes).

Let us define the parameters of dependence R (t, r). Suppose that the level of retained knowledge is 100% after the minimum period of t = 1 min; then, it follows from (2) and (6) that

(7) R (1, r) =R (1) • 1 = k+r)c = 1 ^ k (r) = c (r).

At course completion,

Figure 11. Forgetting curve behavior depending on the r value

100

90

80

70

60

0 5 10 15

20 25

R = 1 R = 2

R = 3 30 Days

R (tconst' r) ig tconst + c (r) With regard to (7), we get

R(tconst) • a (r).

k(r)=c (r) = T^Rdr^ ■ 'g c

Therefore, we eventually get

(8) R (t, r) =

( R (t), r = 1 , { k(r) , r > 1

{ ig i + c (r)

When solving this formula, approach (3) should also be applied. Examples of the forgetting curve as a function of the number of repetitions r are displayed in Figure 11.

This formula, however, was derived from the assumption that every repetition restores the level of retained knowledge to 100%. It is not so in practice, so subsequent tests may show lower outcomes. For instance, Figure 12 displays a situation where student performance in the output test is 100% after the first iteration and 80% after the second one. In the latter point, the decrease in the level of retained knowledge R (t, 1) has already slowed down, so the curve is less decreasing (the middle curve), but the new curve R (t, 2) starts decreasing rapidly, so the repetition eventually results in quicker forgetting (the lower curve). For this reason, the software does not apply formula (8) to the whole amount of knowledge learned, but only to new material. For the situation in Figure 12, the predicted level of retained knowledge was 75% at the moment of repetition. The actual level turned out to be 80%, so the curve now has the formula

%

Figure 12. Estimating the level of knowledge retained after repetition

%

R = 100% • (R(t - t, 1) + (80% - 75%) • (R(t - t2, 2),

where t1 and t2 stand for the time elapsed before the first and second repetitions, respectively (upper curve). The real-life formula is even more complicated, as it has to consider all the iterations, all the individual coefficient adjustments based on students' detailed module learning history, etc.

Domain model. Domain model theory is described in [Krechetov, Kru-chinin 2017:75-80]. During implementation, the model was subject to some changes [Krechetov et al. 2018:33-40]. Let the following notation be introduced to describe the adaptive learning algorithm further.

1. The set of course competencies K = K, j = 1, 2, ..., m, where m is the number of competencies (the notion of subcompetencies was introduced in [Krechetov, Kruchinin 2017:75-80], but let them be referred to as competencies in this study for brevity), and the set of important competencies (obligatory to learn) IK c K.

2. The set of course learning modules M = M i, i = 1, 2, ..., n, where n is the number of modules. A module is described with four variables Mi = (TM, KI,, KO, RO), i = 1, 2, ..., n, where TMi is time taken to complete the module, KI; and KOj are the lists of input (K| = {comp^}, compk e [1, m], k = 1, 2, ..., ni) and output (KOj = {compk}, compk e [1, m], k = 1, 2, ..., no) competencies, and RO: is the level of retained knowledge achieved for each output competency.

3. The set of groups of tests T = {Tj} = {{Tjk}}, j = 1, 2, ..., m, k = = 1, 2, ..., ntj designed to evaluate the level of knowledge in com-

petencies K. Group T evaluates knowledge in competency Kj and may include one or more tests Tjk.

4. Course start time tstart, course end time tconst, and current point of

time tcurr

5. 5. Student profile S = (HM, HT, HR, RK), where HM is individual module learning history, HT is individual testing history, HR is the history of changes in the level of knowledge in every competency, and RK stands for the forgetting curve coefficient in a particular competency as a function of the number of repetitions.

6. The satisfactory level of retained knowledge Rnorm.

7. 7. The sets of well-developed (KS) and poorly developed (KF) competencies. If the level RAjt of knowledge retained in competency Kj is below Rnorm, such competency is considered poorly developed. That is, in terms of predicate calculus,

(9) KS = { compk I RAcomPkl > Rn0rm}, compk e [1, m], k = 1, 2, ..., ns, (10) KF = { comPk I RAcomPki < Rnorm}, compk e [1, m], k = 1, 2, nf.

8. The set of modules A = {modk}, modk e [1, n], k = 1, 2, ..., na that foster poorly developed competencies, i. e.

(11) |J KO. e KF,

iНе можете найти то, что вам нужно? Попробуйте сервис подбора литературы.

i e A

while

(11) KOmodk i KS, k = 1, 2, ..., na.

The latter condition means that the set A excludes the modules of which all the output competencies have already been developed well enough.

9. Path P, describing an uncontroversial order of learning modules (not necessarily all of them) from the set A, P = {modk}, modk e [1, n], k = 1, 2, ..., np. Learning the modules from the set P should result in an improved level of knowledge in all the competencies for which RAjt < Rnorm. The uncontroversy requirement means that all the required input competencies should be developed by the time any module from P is started, i. e.

KS u J KOmod., C KImodk, k = 1, 2, ..., np.

i < k

i Надоели баннеры? Вы всегда можете отключить рекламу.