This repository was archived by the owner on Jan 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathArxivEducation.txt
More file actions
executable file
·2007 lines (2006 loc) · 260 KB
/
Copy pathArxivEducation.txt
File metadata and controls
executable file
·2007 lines (2006 loc) · 260 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
If there are any errors
please Abort, and run `arxiv_required` for required package installation, and start again
Please wait while we phrase the requested information from global arxiv[arxiv.org] servers
------------>
---------------------------->
------------------------------------------------------>
Neural Educational Recommendation Engine (NERE) (Moin Nadeem - 20 September, 2018)
Neural Educational Recommendation Engine (NERE), to recommend educational content by leveraging student behaviors rather than ratings. We achieved an R^2 score of 0.81 in the content embedding space, and a recall score of 54% on our 100 nearest neighbors. This vastly exceeds the recall@100 score of 12% that a standard matrix-factorization approach provides
Link: https://arxiv.org/abs/1809.08922
====================================================
The Essence Theory of Software Engineering - Large-Scale Classroom Experiences from 450+ Software Engineering BSc Students (Kai-Kristian Kemell - 24 September, 2018)
In this paper, we study Essence in an educational setting to evaluate its usefulness for software engineering students while also investigating barriers to its adoption in this context. To this end, we observe 102 student teams utilize Essence in practical software engineering projects during a semester long, project-based course.
Link: https://arxiv.org/abs/1809.08827
====================================================
Detecting Hate Speech and Offensive Language on Twitter using Machine Learning: An N-gram and TFIDF based Approach (Aditya Gaydhani - 23 September, 2018)
Toxic online content has become a major issue in today's world due to an exponential increase in the use of internet by people of different cultures and educational background. After tuning the model giving the best results, we achieve 95.6% accuracy upon evaluating it on test data
Link: https://arxiv.org/abs/1809.08651
====================================================
BSE: A Minimal Simulation of a Limit-Order-Book Stock Exchange (Dave Cliff - 17 September, 2018)
Similarly, university-level education of the engineers who can create next-generation automated trading systems requires that they have hands-on learning experience in a sufficiently realistic teaching environment. BSE as described here addresses both those needs: it has been successfully used for teaching and research in a leading UK university since 2012, and the BSE program code is freely available as open-source on GitHuB.
Link: https://arxiv.org/abs/1809.06027
====================================================
Residualized Factor Adaptation for Community Social Media Prediction Tasks (Mohammadzaman Zamani - 28 August, 2018)
For example, it may be inaccurate to assume people in Mobile, Alabama, where the population is relatively older, will use words the same way as those from San Francisco, where the median age is younger with a higher rate of college education. Our evaluation shows that residualized factor adaptation significantly improves 4 out of 5 community-level outcome predictions over prior state-of-the-art for incorporating socio-demographic contexts.
Link: https://arxiv.org/abs/1808.09479
====================================================
A Century Long Commitment to Assessing Artificial Intelligence and its Impact on Society (Barbara J. Grosz - 23 August, 2018)
The report, entitled "Artificial Intelligence and Life in 2030," examines eight domains of typical urban settings on which AI is likely to have impact over the coming years: transportation, home and service robots, healthcare, education, public safety and security, low-resource communities, employment and workplace, and entertainment. This article by the chair of the 2016 Study Panel and the inaugural chair of the AI100 Standing Committee describes the origins of this ambitious longitudinal study, discusses the framing of the inaugural report, and presents the report's main findings
Link: https://arxiv.org/abs/1808.07899
====================================================
Library Information System Audit Senayan Library Management System (SLiMS) Using ISO 9126 (Petrus Dwi Ananto Pamungkas - 22 August, 2018)
The library serves as a vehicle for education, research, conservation, information, and recreation to improve the nation's intelligence and empowerment [1]. The use of ISO 9126 standard is able to know the quality of SLiMS information system which is said to be free of charge of usage and license (because it belongs to Open Source Software category [2]) to assist library management in Indonesia. The implementation of the SLiMS information system audit in several university libraries refers to the ISO 9126 standard by using the Functionality, Reliability, Usability, Efficiency, Maintainability and Portability aspects through distributing questionnaires to university librarians in charge
Link: https://arxiv.org/abs/1808.07234
====================================================
Robust Speaker Clustering using Mixtures of von Mises-Fisher Distributions for Naturalistic Audio Streams (Harishchandra Dubey - 18 August, 2018)
The CRSSPLTL data contain audio recordings of PLTL sessions which is student-led STEM education paradigm. Proposed approach is consistently better than baseline leading to upto 44.48% and 53.68% relative improvements for PLTL and AMI corpus, respectively
Link: https://arxiv.org/abs/1808.06045
====================================================
Deep Learning for Domain Adaption: Engagement Recognition (Omid Mohamad Nezami - 7 August, 2018)
Engagement is a key indicator of the quality of learning experience, and one that plays a major role in developing intelligent educational interfaces. We train the model on our new engagement recognition (ER) dataset with 4627 engaged and disengaged samples. The model achieves a classification accuracy of 72.38%, which is 6.1% better than the best baseline model on the test set of the ER dataset. Using the F1 measure and the area under the ROC curve, our Transfer model achieves 73.90% and 73.74%, exceeding the best baseline model by 3.49% and 5.33% respectively.
Link: https://arxiv.org/abs/1808.02324
====================================================
Kid on The Phone! Toward Automatic Detection of Children on Mobile Devices (Toan Nguyen - 5 August, 2018)
This has important implications on research in children-computer interaction, children online safety and early education. To evaluate the effectiveness of the proposed methods, a new data set has been created from 50 children and adults who interacted with off-the-shelf applications on smart phones. Results show that it is possible to achieve 99% accuracy and less than 0.5% error rate after 8 consecutive touch gestures using only touch information or 5 seconds of sensor reading. If information is used from multiple sensors, then only after 3 gestures, similar performance could be achieved.
Link: https://arxiv.org/abs/1808.01680
====================================================
Synthetically Trained Icon Proposals for Parsing and Summarizing Infographics (Spandan Madan - 27 July, 2018)
Widely used in news, business, and educational media, infographics are handcrafted to effectively communicate messages about complex and often abstract topics including `ways to conserve the environment' and `understanding the financial crisis'. On a test set of 1K annotated infographics, icons are located with 38% precision and 34% recall (the best model trained with natural images achieves 14% precision and 7% recall)
Link: https://arxiv.org/abs/1807.10441
====================================================
Which US and European Higher Education Institutions are visible in ResearchGate and what affects their RG Score? (Benedetto Lepori - 23 July, 2018)
This paper assesses the presence in ResearchGate of higher education institutions in Europe and the US in 2017, and the extent to which institutional ResearchGate Scores reflect institutional academic impact. Most of the 2258 European and 4355 US higher educational institutions included in the sample had an institutional ResearchGate profile, with near universal coverage for PhD-awarding institutions found in the Web of Science (WoS)
Link: https://arxiv.org/abs/1807.08685
====================================================
Data for Refugees: The D4R Challenge on Mobility of Syrian Refugees in Turkey (Albert Ali Salah - 31 August, 2018)
The Data for Refugees (D4R) Challenge is a non-profit challenge initiated to improve the conditions of the Syrian refugees in Turkey by providing a special database to scientific community for enabling research on urgent problems concerning refugees, including health, education, unemployment, safety, and social integration. The data collection period is from 1 January 2017 to 31 December 2017
Link: https://arxiv.org/abs/1807.00523
====================================================
Mechanical Engineers Training in Using Cloud and Mobile Services in Professional Activity (Maryna Rassovytska - 1 July, 2018)
The purpose of this article is to identify mobile and cloud services of mechanical engineers professional activity and the principles of their use in higher technical education. On the basis of this criteria, more than 30 var-ious cloud services and mobile applications have been analyzed
Link: https://arxiv.org/abs/1807.00313
====================================================
Generation of Automatic and Realistic Artificial Profiles (Abigail Paradise - 30 June, 2018)
In this research we present 'ProfileGen' - a method for the automated generation of profiles for professional social networks, giving particular attention to producing realistic education and employment records. Evaluation by 70 domain experts confirms the method's ability to generate realistic artificial profiles that are indistinguishable from real profiles, demonstrating that our method can be applied to generate realistic artificial profiles for a wide range of applications.
Link: https://arxiv.org/abs/1807.00125
====================================================
Toward modern educational IT-ecosystems: from learning management systems to digital platforms (Andrey Gorshenin - 28 June, 2018)
The paper focuses on the demand for further development of learning management systems, their integration with modern digital platforms and potential exploitation as key services of such platforms in the context of the current educational trends of Industry 4.0 and the global trend towards a transition to a digital economy
Link: https://arxiv.org/abs/1806.11154
====================================================
Using Search Queries to Understand Health Information Needs in Africa (Rediet Abebe - 14 June, 2018)
Without understanding people's everyday needs, concerns, and misconceptions, health organizations and policymakers lack the ability to effectively target education and programming efforts. We analyze Bing searches related to HIV/AIDS, malaria, and tuberculosis from all 54 African nations
Link: https://arxiv.org/abs/1806.05740
====================================================
Second Language Acquisition Modeling: An Ensemble Approach (Anton Osika - 9 June, 2018)
Applying our approach to student trace data from the online educational platform Duolingo we achieved highest score on both evaluation metrics for all three datasets in the 2018 Shared Task on Second Language Acquisition Modeling
Link: https://arxiv.org/abs/1806.04525
====================================================
Incorporating Features Learned by an Enhanced Deep Knowledge Tracing Model for STEM/Non-STEM Job Prediction (Chun-kit Yeung - 6 June, 2018)
The 2017 ASSISTments Data Mining competition aims to use data from a longitudinal study for predicting a brand-new outcome of students which had never been studied before by the educational data mining research community
Link: https://arxiv.org/abs/1806.03256
====================================================
Simulation Of Logic Circuit Tests On Android-Based Mobile Devices (Abdülkadir Ãakir - 24 May, 2018)
To assess the usability of the mobile application, a one-hour training session was administered in March of the 2017-2018 academic year to two groups of students from a single class in the sixth grade of an Imam Hatip Secondary School affiliated to the Ministry of National Education. Each of the two groups contained 12 students who were assumed to be equivalent, and who had no prior knowledge of the subject. An evaluation of the exam results revealed that 83 percent of the students who had been given demonstrations of the mobile application were able to perform the circuit task completely, whereas only 50 percent of the other were able to complete the task
Link: https://arxiv.org/abs/1805.12473
====================================================
The Future of Virtual Classroom: Using Existing Features to Move Beyond Traditional Classroom Limitations (Michalis Xenos - 26 May, 2018)
This paper argues that the true potential of virtual classrooms in education is not fully exploited yet. Finally, a qualitative study with interviews of 21 experts from 15 countries is presented, showing that even these experts are not fully exploiting the advanced features that contemporary virtual classroom environments are offering.
Link: https://arxiv.org/abs/1805.11694
====================================================
Peer review and citation data in predicting university rankings, a large-scale analysis (David Pride - 22 May, 2018)
In this study, we analyse 191,000 papers from 154 higher education institutes which were peer reviewed in a national research evaluation exercise. We combine these data with 6.95 million citations to the original papers. We show that when citation-based indicators are applied at the institutional or departmental level, rather than at the level of individual papers, surprisingly large correlations with peer review judgments can be observed, up to r <= 0.802, n = 37, p < 0.001 for some disciplines. In our evaluation of ranking prediction performance based on citation data, we show we can reduce the mean rank prediction error by 25% compared to previous work
Link: https://arxiv.org/abs/1805.08529
====================================================
Affective computing using speech and eye gaze: a review and bimodal system proposal for continuous affect prediction (Jonny O'Dwyer - 17 May, 2018)
Such multi-modal affective computing systems are advantageous for emotion assessment of individuals in audio-video communication environments such as teleconferencing, healthcare, and education. The addition of eye gaze to speech in a simple feature fusion framework yields a prediction improvement of 6.13% for valence and 1.62% for arousal.
Link: https://arxiv.org/abs/1805.06652
====================================================
Evaluation of Game Templates to support Programming Activities in Schools (Bernadette Spieler - 31 August, 2018)
A key element of the ongoing European project No One Left Behind (NOLB) is to integrate a game-making teaching framework (GMTF) into the educational app Pocket Code. These templates allows: 1) teachers to start with a well-structured program, and 2) pupils to add content and adjust the code to integrate their own ideas. The insights gained during the class hours were used to generate 13 game templates, which are integrated in Create@School (a new version of the Pocket Code app which targets schools)
Link: https://arxiv.org/abs/1805.04517
====================================================
Game Design with Pocket Code: Providing a Constructionist Environment for Girls in the School Context (Anja Petri - 31 August, 2018)
This paper focuses on the Austrian pilot, which is exploring gender inclusion in game creation within an educational environment. This study that started in September 2015, will help teachers to integrate Pocket Code effectively into their courses
Link: https://arxiv.org/abs/1805.04362
====================================================
Proceedings Sixth Workshop on Trends in Functional Programming in Education (Simon Thompson - 11 May, 2018)
The Sixth International Workshops on Trends in Functional Programming in Education, TFPIE 2017, was held on 22 June 2017 at the University of Kent, in Canterbury, UK, and was co-located with TFP, the Symposium on Trends in Functional Programming.
Link: https://arxiv.org/abs/1805.04255
====================================================
Performance Evaluation of a Deployed 4G LTE Network (E. T. Tchao - 1 April, 2018)
In Ghana and many countries within Sub-Sahara Africa, Long Term Evolution (LTE) is being considered for use within the sectors of Governance, Energy distribution and transmission, Transport, Education and Health. This paper evaluates the performance of some selected key network parameters of a newly deployed LTE network in the 2600 MHz band operating in the peculiar Sub-Saharan African terrain under varied MIMO Antenna Configurations. However, the percentage coverage for users under the 2x2 MIMO simulation scenario was better than that of the adaptive 4x4 MIMO configuration with 2x2 MIMO achieving 60.41% of coverage area having throughput values between 1 - 40Mbps as against 55.87% achieved by the 4x4 MIMO configuration in the peculiar deployment terrain.
Link: https://arxiv.org/abs/1804.05771
====================================================
Early Discovery of Chronic Non-attenders by Using NFC Attendance Management System (Takumi Ichimura - 8 April, 2018)
Recently, the attendance management system (AMS) with RFID technology has been developed as a part of Smart University, which is the educational infrastructure using high technologies, such as ICT. The Android OS 2.3 and the later can provide access to NFC functionality. Therefore, we developed AMS for university with NFC on Nexus 7. Because Nexus 7 is a low cost smart tablet, a teacher can determine to use familiarly. Especially, this paper describes the method of early discovery for chronic non-attenders by using the AMS system on 2 or more Nexus 7 which is connected each other via peer-to-peer communication. The attendance situation collected from different Nexus 7 is merged into a SQLite file and then, the document is reported to operate with the trunk system in educational affairs section.
Link: https://arxiv.org/abs/1804.02677
====================================================
Feature Selection of Post-Graduation Income of College Students in the United States (Ewan Wright - 28 May, 2018)
The latest data released by the United States Department of Education was used. Specifically, 1,429 cohorts of graduates from three years (2001, 2003, and 2005) were included in the data analysis. Three attribute selection methods, including filter methods, forward selection, and Genetic Algorithm, were applied to the attribute selection from 30 relevant attributes
Link: https://arxiv.org/abs/1803.06615
====================================================
Improving QED-Tutrix by Automating the Generation of Proofs (Ludovic Font - 4 March, 2018)
Mathematics in general, and geometry in particular, provide interesting challenges when developing educative softwares, both in the education and computer science aspects. It focuses on specific goals: 1) to allow the student to freely explore the problem and its figure, 2) to accept proofs elements in any order, 3) to handle a variety of proofs, which can be customized by the teacher, and 4) to be able to help the student at any step of the resolution of the problem, if the need arises. This automation must follow fundamental constraints in order to create problems compatible with QED-Tutrix: 1) readability of the proofs, 2) accessibility at a high school level, and 3) possibility for the teacher to modify the parameters defining the "acceptability" of a proof
Link: https://arxiv.org/abs/1803.01468
====================================================
Proceedings 6th International Workshop on Theorem proving components for Educational software (Pedro Quaresma - 2 March, 2018)
The 6th International Workshop on Theorem proving components for Educational software (ThEdu'17) was held in Gothenburg, Sweden, on 6 Aug 2017
Link: https://arxiv.org/abs/1803.00722
====================================================
The Complexity of the Possible Winner Problem over Partitioned Preferences (Batya Kenig - 25 February, 2018)
That is, we assume that every voter provides a complete order over sets of incomparable candidates (e.g., candidates are ranked by their level of education). Our first result is a polynomial time algorithm for voting rules with $2$ distinct values, which include the well-known $k$-approval voting rule. We then go on to prove NP-hardness for a class of rules that contain all voting rules that produce scoring vectors with at least $4$ distinct values.
Link: https://arxiv.org/abs/1802.09001
====================================================
Consensus in Software Engineering: A Cognitive Mapping Study (Pontus Johnson - 17 February, 2018)
Consensus is important for maintaining legitimacy with outsiders, orchestrating future research, developing educational curricula and agreeing industry standards. Method: A convenience sample of 60 software engineering researchers produced diagrams describing their personal understanding of causal relationships between core software engineering constructs
Link: https://arxiv.org/abs/1802.06319
====================================================
A Family of Software Product Lines in Educational Technologies (Sridhar Chimalakonda - 14 February, 2018)
Rapid advances in education domain demand the design and customization of educational technologies for a large scale and variety of evolving requirements. Here, scale is the number of systems to be developed and variety stems from a diversified range of instructional designs such as varied goals, processes, content, teacher styles, learner styles and, also for eLearning Systems for 22 Indian Languages and variants.
Link: https://arxiv.org/abs/1802.05173
====================================================
An Ontology Based Modeling Framework for Design of Educational Technologies (Sridhar Chimalakonda - 7 February, 2018)
In addition, a major challenge is to customize these educational technologies for a wide range of instructional designs. We demonstrate the ontology framework by presenting instances of the ontology for the large scale case study of adult literacy in India (287 million learners spread across 22 Indian Languages), which requires creation of 1000 similar but varied eLearning Systems based on flexible instructional designs
Link: https://arxiv.org/abs/1802.04337
====================================================
A Patterns Based Approach for Design of Educational Technologies (Sridhar Chimalakonda - 7 February, 2018)
This is in contrast with existing literature that focuses either on patterns in education or in software, and not both. We demonstrate our approach through adult literacy case study (287 million learners, 22 Indian Languages and a variety of instructional designs)
Link: https://arxiv.org/abs/1802.02663
====================================================
Wikipedia in academia as a teaching tool: from averse to proactive faculty profiles (Julià Minguillón - 22 January, 2018)
This study concerned the active use of Wikipedia as a teaching tool in the classroom in higher education, trying to identify different usage profiles and their characterization. The questionnaire was designed using the Technology Acceptance Model as a reference, including items about teachers web 2.0 profile, Wikipedia usage, expertise, perceived usefulness, easiness of use, visibility and quality, as well as Wikipedia status among colleagues and incentives to use it more actively. The respondents were classified in four clusters, from less to more likely to adopt and use Wikipedia in the classroom, namely averse (25.4%), reluctant (17.9%), open (29.5%) and proactive (27.2%)
Link: https://arxiv.org/abs/1801.07138
====================================================
MORF: A Framework for Predictive Modeling and Replication At Scale With Privacy-Restricted MOOC Data (Josh Gardner - 21 August, 2018)
Big data repositories from online learning platforms such as Massive Open Online Courses (MOOCs) represent an unprecedented opportunity to advance research on education at scale and impact a global population of learners. MORF has the potential to accelerate and democratize research on its massive data repository, which currently includes over 200 MOOCs, as demonstrated by initial research conducted on the platform
Link: https://arxiv.org/abs/1801.05236
====================================================
Predicting Demographics, Moral Foundations, and Human Values from Digital Behaviors (Kyriaki Kalimeri - 7 December, 2017)
In this study we explore the connection between demographic and psychological attributes and digital records for a cohort of 7,633 people, closely representative of the US population with respect to gender, age, geographical distribution, education, and income. In a cross-validated setting, our model is found to predict demographic attributes with good accuracy (weighted AUC scores of 0.90 for gender, 0.71 for age, 0.74 for ethnicity). Our weighted AUC scores for Moral Foundation attributes (0.66) and Human Values attributes (0.60) suggest that accurate prediction of complex psychometric attributes is more challenging but feasible
Link: https://arxiv.org/abs/1712.01930
====================================================
Happiness Pursuit: Personality Learning in a Society of Agents (RafaÅ MuszyÅski - 8 December, 2017)
Modeling personality is a challenging problem with applications spanning computer games, virtual assistants, online shopping and education. As a result, we obtain 4 agents, each with its own personality
Link: https://arxiv.org/abs/1711.11068
====================================================
First Results from Using Game Refinement Measure and Learning Coefficient in Scrabble (Kananat Suwanviwatana - 7 November, 2017)
It proposes a new measure from the educational point of view, which we call learning coefficient, based on the balance between the learner's skill and the challenge in Scrabble. The results show that 13x13 Scrabble yields the best entertainment experience and 15x15 (standard) Scrabble with 4% of original dictionary size yields the most effective environment for language learners. Moreover, 15x15 Scrabble with 10% of original dictionary size has a good balance between entertainment and learning experience.
Link: https://arxiv.org/abs/1711.03580
====================================================
Modern-day Universities and Regional Development (Bence Zuti - 19 October, 2017)
Universities are the general institutions of education, however i nthe need of adaptation to present local needs, their activities have broadened in the past decades [Wright et al, 2008; Etzkowitz, 2002]
Link: https://arxiv.org/abs/1710.08868
====================================================
Adapting Engineering Education to Industrie 4.0 Vision (Selim Coskun - 24 October, 2017)
An important part of the tasks in the preparation for Industrie 4.0 is the adaption of the higher education to the requirements of this vision, in particular the engineering education
Link: https://arxiv.org/abs/1710.08806
====================================================
Accessibility analysis of some Indian educational web portals (Manas Ranjan Patra - 22 October, 2017)
However, the effectiveness of an educational web portal depends on its accessibility to a wide range of students irrespective of their age, and physical abilities. In this paper, we have critically analyzed the web portals of thirty Indian Universities of different categories based on the WCAG 2.0 guidelines
Link: https://arxiv.org/abs/1710.07899
====================================================
Categorization of an emerging discipline in the world publication system (SCOPUS): E-learning (Gerardo Tibaná-Herrera - 16 October, 2017)
Therefore, works in this thematic end up being published under related categories, particularly Education or categories within subject area Computer Science, thus fragmenting and make invisible the existing knowledge. As a result, it was determined that a set of 219 publications show a high bibliometric interrelation among its articles and these are presented transversely between the social sciences, computer science and health
Link: https://arxiv.org/abs/1710.05723
====================================================
Educational game design: game elements for promoting engagement (Angela He - 26 September, 2017)
This mixed methods case study aimed to discover effective game elements for promoting 17-18 year old high school students' engagement with an educational game. Using within-case and cross-case analyses and triangulated data, 10 elements emerged and were categorized into the constructs of story, gameplay, and atmosphere
Link: https://arxiv.org/abs/1709.09931
====================================================
Grade Prediction with Temporal Course-wise Influence (Zhiyun Ren - 15 September, 2017)
There is a critical need to develop new educational technology applications that analyze the data collected by universities to ensure that students graduate in a timely fashion (4 to 6 years); and they are well prepared for jobs in their respective fields of study
Link: https://arxiv.org/abs/1709.05433
====================================================
Analysing Scientific Collaborations of New Zealand Institutions using Scopus Bibliometric Data (Samin Aref - 18 January, 2018)
The comparative results reveal the level of collaboration between New Zealand institutions and business enterprises, government institutions, higher education providers, and private not for profit organisations in 2010-2015. We also provide comparative results on 15 universities and Crown research institutes based on 27 subject classifications.
Link: https://arxiv.org/abs/1709.02897
====================================================
Fine-Grained Car Detection for Visual Census Estimation (Timnit Gebru - 7 September, 2017)
To that end, the United States spends more than 1 billion dollars a year gathering census data such as race, gender, education, occupation and unemployment rates. We first detect cars in 50 million images across 200 of the largest US cities and train a model to predict demographic attributes using the detected cars. To facilitate our work, we have collected the largest and most challenging fine-grained dataset reported to date consisting of over 2600 classes of cars comprised of images from Google Street View and other web sources, classified by car experts to account for even the most subtle of visual differences
Link: https://arxiv.org/abs/1709.02480
====================================================
A Fuzzy Control System for Inductive Video Games (Carlos Lara-Alvarez - 15 April, 2018)
This paper explores a fuzzy system that analyzes the players' performance and their emotional state for controlling the level and aesthetic content of an educational video game. A total of 20 subjects played a video game designed to practice basic math skills; for each trial, a student plays two times in a row the same game but each time the game was controlled by one of the two approaches ---Dynamic Difficulty Adjustment (DDA) and IC, the playing order was assigned randomly
Link: https://arxiv.org/abs/1709.00927
====================================================
Learning to Transfer (Ying Wei - 18 August, 2017)
Meanwhile, it is widely accepted in educational psychology that human beings improve transfer learning skills of deciding what to transfer through meta-cognitive reflection on inductive transfer learning practices. We establish the L2T framework in two stages: 1) we first learn a reflection function encrypting transfer learning skills from experiences; and 2) we infer what and how to transfer for a newly arrived pair of domains by optimizing the reflection function
Link: https://arxiv.org/abs/1708.05629
====================================================
Design, Configuration, Implementation, and Performance of a Simple 32 Core Raspberry Pi Cluster (Vincent A. Cicirello - 17 August, 2017)
We have two use-cases for the cluster: (a) as an educational tool for classroom usage, such as covering parallel algorithms in an algorithms course; and (b) as a test system for use during the development of parallel metaheuristics, essentially serving as a personal desktop parallel computing cluster. Our preliminary results show that the slow 100 Mbps networking of the raspberry pi significantly limits such clusters to parallel computational tasks that are either long running relative to data communications requirements, or that which requires very little internode communications. Additionally, although the raspberry pi 3 has a quad-core processor, parallel speedup degrades during attempts to utilize all four cores of all cluster nodes for a parallel computation, likely due to resource contention with operating system level processes
Link: https://arxiv.org/abs/1708.05264
====================================================
Enriching Information Technology Course Materials by Using Youtube (Leon Andretti Abdillah - 8 August, 2017)
This research focuses on exploring higher education subjects via social technology, YouTube. The study observed 118 sophomore students in computer science faculty
Link: https://arxiv.org/abs/1708.04878
====================================================
Sequence Modelling For Analysing Student Interaction with Educational Systems (Christian Hansen - 14 August, 2017)
The analysis of log data generated by online educational systems is an important task for improving the systems, and furthering our knowledge of how students learn. This paper uses previously unseen log data from Edulab, the largest provider of digital learning for mathematics in Denmark, to analyse the sessions of its users, where 1.08 million student sessions are extracted from a subset of their data
Link: https://arxiv.org/abs/1708.04164
====================================================
Adversarial-Playground: A Visualization Suite Showing How Adversarial Examples Fool Deep Learning (Andrew P. Norton - 1 August, 2017)
Adversarial-Playground is educational, modular and interactive. Empirically, we find that our client-server division strategy reduced the response time by an average of 1.5 seconds per sample
Link: https://arxiv.org/abs/1708.00807
====================================================
Mapping the Curricular Structure and Contents of Network Science Courses (Hiroki Sayama - 15 October, 2017)
As network science has matured as an established field of research, there are already a number of courses on this topic developed and offered at various higher education institutions, often at postgraduate levels. We collected information about 30 existing network science courses from various online sources, and analyzed the contents of their syllabi or course schedules. These results illustrate the current state of consensus formation (including variations and disagreements) among the network science community on what should be taught about networks and how, which may also be informative for K--12 education and informal education.
Link: https://arxiv.org/abs/1707.09570
====================================================
Computer Self-efficacy and Its Relationship with Web Portal Usage: Evidence from the University of the East (Rex P. Bringula - 8 July, 2017)
The University of the East Web Portal is an academic, web based system that provides educational electronic materials and e-learning services. Data showed that the respondents were relatively young (M = 40 years old), majority had masters degree (f = 85, 72%), most had been using the web portal for four semesters (f = 60, 51%), and the large part were intermediate web portal users (f = 69, 59%). They were highly skilled in using the computer (M = 4.29) and skilled in using the Internet (M = 4.28). E-learning services (M = 3.29) and online library resources (M = 3.12) were only used occasionally. Pearson correlation revealed that age was positively correlated with online library resources (r = 0.267, p < 0.05) and a negative relationship existed between perceived skill level in using the portal and online library resources usage (r = -0.206, p < 0.05). A 2x2 chi square revealed that the highest educational attainment had a significant relationship with online library resources (chi square = 5.489, df = 1, p < 0.05). Basic computer (r = 0.196, p < 0.05) and Internet skills (r = 0.303, p < 0.05) were significantly and positively related with e-learning services usage but not with online library resources usage
Link: https://arxiv.org/abs/1707.02435
====================================================
The application of data mining techniques to support customer relationship management: the case of ethiopian revenue and customs authority (Belete Biazen Bezabeh - 30 June, 2017)
The application of data mining technique has been widely applied in different business areas such as health, education and finance for the purpose of data analysis and then to support and maximizes the organizations customer satisfaction in an effort to increase loyalty and retain customers business over their lifetimes . Once the customers data were collected, the necessary data preparation steps were conducted on it and finally a data set consisting of 46748 records was attained. The classification modeling was built by using J48 decision tree and multi layer perceptron ANN algorithms with 10-fold cross-validation and splitting (70% training and 30% testing) techniques. Among these models, a model which was built using J48 decision tree algorithm with default 10-fold cross-validation outperforms 99.95% of overall accuracy rate; while the classification accuracy of ANN is 99.71%
Link: https://arxiv.org/abs/1706.10050
====================================================
Academic Performance and Behavioral Patterns (Valentin Kassarnig - 9 April, 2018)
Identifying the factors that influence academic performance is an essential part of educational research. Here, we study the academic performance among a cohort of 538 undergraduate students forming a single, densely connected social network
Link: https://arxiv.org/abs/1706.09245
====================================================
NetSciEd: Network Science and Education for the Interconnected World (Hiroki Sayama - 5 July, 2017)
NetSciEd activities include (1) the NetSci High educational outreach program (since 2010), which connects high school students and their teachers with regional university research labs and provides them with the opportunity to work on network science research projects; (2) the NetSciEd symposium series (since 2012), which brings network science researchers and educators together to discuss how network science can help and be integrated into formal and informal education; and (3) the Network Literacy: Essential Concepts and Core Ideas booklet (since 2014), which was created collaboratively and subsequently translated into 18 languages by an extensive group of network science researchers and educators worldwide.
Link: https://arxiv.org/abs/1706.00115
====================================================
Mining Frequent Learning Pathways from a Large Educational Dataset (Nirmal Patel - 8 July, 2017)
In this paper, we describe data mining techniques used to extract frequent learning pathways from a large educational dataset. Our dataset contains more than 800 million interactions of over 3 million anonymized students in an online learning platform
Link: https://arxiv.org/abs/1705.11125
====================================================
Teaching computer code at school (Mokhtar Ben Henda - 3 May, 2017)
In today's education systems, there is a deep concern about the importance of teaching code and computer programming in schools. Moving digital learning from a simple use of tools to understanding the processes of the internal functioning of these tools is an old / new debate originated with the digital laboratories of the 1960
Link: https://arxiv.org/abs/1705.08507
====================================================
Real-time Teaching Cues for Automated Surgical Coaching (Anand Malpani - 24 April, 2017)
We present a virtual reality simulation-based framework for automated virtual coaching in surgical education. We evaluated our framework in a pilot randomized controlled trial with 16 subjects in each arm
Link: https://arxiv.org/abs/1704.07436
====================================================
Extension of Technology Acceptance Model by using System Usability Scale to assess behavioral intention to use e-learning (Anastasia Revythi - 1 June, 2018)
In specific, the aim of this research is to examine whether students ultimately accept and use educational learning systems such as e-class and the impact of behavioral intention on their decision to use them. 345 university students participated in the study and the data analysis was based on partial least squares method
Link: https://arxiv.org/abs/1704.06127
====================================================
Implications of the Fourth Industrial Age on Higher Education (Bo Xing - 17 March, 2017)
Higher education in the fourth industrial revolution, HE 4.0, is a complex, dialectical and exciting opportunity which can potentially transform society for the better. This paper explores the impact of HE 4.0 on the mission of a university which is teaching, research (including innovation) and service.
Link: https://arxiv.org/abs/1703.09643
====================================================
Formation {à } distance et outils num{é}riques pour l'enseignement sup{é}rieur et la recherche en Asie-Pacifique (Cambodge, Laos, Vietnam). Partie 02 : recommandations et feuille de route (Mokhtar Ben Henda - 3 March, 2017)
Nevertheless, digital technology is still hardly present in the practices of the member institutions of the Agency and the francophone university community; So distance education is not well developed: there are currently no French-language distance training courses offered by an establishment in Asia; The region has only 14 enrolled in ODL over the period 2010 - 2014; Only three institutions have responded to the AUF's "Mooc" calls for projects over the last two years, etc.". The document provides concrete examples, such as the ASEAN Cyber University (ACU) program run by South Korea and its e-learning centers in Cambodia, Laos, Vietnam and Myanmar, The Vietnamese language and the fablab set up in the region since 2014 without the Francophonie being involved
Link: https://arxiv.org/abs/1703.09641
====================================================
Team Formation for Scheduling Educational Material in Massive Online Classes (Sanaz Bahargam - 25 March, 2017)
We identify two important tasks to solve towards this objective, 1 group students so that they can maximally benefit from peer interaction and 2 find an optimal schedule of the educational material for each group
Link: https://arxiv.org/abs/1703.08762
====================================================
Computational Thinking in Education: Where does it Fit? A systematic literary review (James Lockwood - 27 March, 2017)
Seymour Papert is credited as concretising Computational Thinking in 1980 but since Wing popularised the term in 2006 and brought it to the international community's attention, more and more research has been conducted on CT in education
Link: https://arxiv.org/abs/1703.07659
====================================================
Twitter adoption, students perceptions, Big Five personality traits and learning outcome: Lessons learned from 3 case studies (Alexia Katrimpouza - 17 June, 2017)
This study presents the results of the introduction of Twitter in the educational process. Three studies were conducted in the context of 2 academic courses. In all 3 studies the students who participated in the process had a higher laboratory grade than the students who did not participated
Link: https://arxiv.org/abs/1703.04047
====================================================
On the Presence of Green and Sustainable Software Engineering in Higher Education Curricula (Damiano Torre - 3 March, 2017)
To this end, we report the findings from a targeted survey of 33 academics on the presence of green and sustainable software engineering in higher education
Link: https://arxiv.org/abs/1703.01078
====================================================
Ãtude sur les portails et agrégateurs des ressources pédagogiques universitaires francophones en accès libre (Mokhtar Ben Henda - 3 March, 2017)
The study of these trends would help to define the appropriate choices and conditions for designing the future common French-language portal and to optimize its services for the conservation, exchange, integration and pooling of educational resources within the distributed technological framework of French-language universities. The development of this first exploratory study of portals would take into account the two technological solutions discussed at the task force meeting on 17 July 2015.1. Thus, the present study should first target the portals of the UNT as models replicable or extensible to the French context by analyzing their technological choices, their modes of organization and their modes of use and communication;2
Link: https://arxiv.org/abs/1703.01072
====================================================
Using Deep Learning and Google Street View to Estimate the Demographic Makeup of the US (Timnit Gebru - 2 March, 2017)
The United States spends more than $1B each year on initiatives such as the American Community Survey (ACS), a labor-intensive door-to-door study that measures statistics relating to race, gender, education, occupation, unemployment, and other demographic factors. Here, we present a method that determines socioeconomic trends from 50 million images of street scenes, gathered in 200 American cities by Google Street View cars. Data from this census of motor vehicles, which enumerated 22M automobiles in total (8% of all automobiles in the US), was used to accurately estimate income, race, education, and voting patterns, with single-precinct resolution. (The average US precinct contains approximately 1000 people.) The resulting associations are surprisingly simple and powerful. For instance, if the number of sedans encountered during a 15-minute drive through a city is higher than the number of pickup trucks, the city is likely to vote for a Democrat during the next Presidential election (88% chance); otherwise, it is likely to vote Republican (82%)
Link: https://arxiv.org/abs/1702.06683
====================================================
Adding educational funcionalities to classic board games (Luis Alvarez - 14 February, 2017)
The main contribution of the paper is to design and add some functionalities to the games in order to transform them in serious games, that is, in games with learning and educational purposes. Associated software is distributed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 licence and can be obtained at http://www.ctim.es/SeriousGames
Link: https://arxiv.org/abs/1702.04270
====================================================
Class attendance, peer similarity, and academic performance in a large field study (Valentin Kassarnig - 9 April, 2018)
Identifying the factors that determine academic performance is an essential part of educational research. In addition, our novel dataset allows us to determine that attendance among social peers was substantially correlated ($>$0.5), suggesting either an important peer effect or homophily with respect to attendance.
Link: https://arxiv.org/abs/1702.01262
====================================================
jsCoq: Towards Hybrid Theorem Proving Interfaces (Emilio Jesús Gallego Arias - 24 January, 2017)
Targeting educational use, jsCoq allows the user to start interaction with proof scripts right away, thanks to its self-contained nature. The current release ships more than 10 popular Coq libraries, and supports popular books such as Software Foundations or Certified Programming with Dependent Types
Link: https://arxiv.org/abs/1701.07125
====================================================
Ujian Online Mahasiswa Ilmu Komputer Berbasis Smartphone (Leon Andretti Abdillah - 16 December, 2016)
Information technology influence higher education in various aspects, including education sector. The research objective to be achieved by the researchers through the research, are as follows: 1) Utilizing smartphone as a media test online exam, 2) How to make use of social technologies in online test, and 3) Identify the features or facilities that could be used for the implementation of an online exam. Observations was conducted with 87 early year students as respondents
Link: https://arxiv.org/abs/1701.06428
====================================================
Ontology based system to guide internship assignment process (Abir M 'Baya - 18 January, 2017)
In this research a domain ontological model is presented as support to the student's decision making for opportunities of University studies level of the University Lumiere Lyon 2 (ULL) education system
Link: https://arxiv.org/abs/1701.05059
====================================================
Improving Tweet Representations using Temporal and User Context (Ganesh J - 19 December, 2016)
We empirically demonstrate that the proposed models outperform the state-of-the-art models in predicting the user profile attributes like spouse, education and job by 19.66%, 2.27% and 2.22% respectively.
Link: https://arxiv.org/abs/1612.06062
====================================================
Evaluating the Impact of AbuseHUB on Botnet Mitigation (Michel van Eeten - 9 December, 2016)
AbuseHUB is the initiative of 9 Internet Service Providers, SIDN (the registry for the .nl top-level domain) and Surfnet (the national research and education network operator)
Link: https://arxiv.org/abs/1612.03101
====================================================
Analysis of the Human-Computer Interaction on the Example of Image-based CAPTCHA by Association Rule Mining (Darko BrodiÄ - 6 December, 2016)
To pursue this goal, an experiment is realized involving 100 Internet users in solving the four types of CAPTCHAs, differentiated by age, Internet experience, and education level
Link: https://arxiv.org/abs/1612.00203
====================================================
Proceedings of the 4th and 5th International Workshop on Trends in Functional Programming in Education (Johan Jeuring - 25 November, 2016)
This volume contains the proceedings of the Fourth and Fifth International Workshops on Trends in Functional Programming in Education, TFPIE 2015 and TFPIE 2016, which were held on June 2, 2015 in Sophia-Antipolis, France, and on June 7, 2016 at the University of Maryland College Park in the USA, respectively.
Link: https://arxiv.org/abs/1611.08651
====================================================
Decision-Based Transcription of Jazz Guitar Solos Using a Harmonic Bident Analysis Filter Bank and Spectral Distribution Weighting (Stanislaw Gorlow - 20 November, 2016)
The decision rules can be refined or extended with no or little musical education. We achieve an improvement of 34% w.r.t. the reference system and 19% w.r.t. Another measure of accuracy, the error score, attests that the number of erroneous pitch detections is reduced by more than 50% w.r.t. the reference system and by 45% w.r.t
Link: https://arxiv.org/abs/1611.06505
====================================================
Automatic recognition of child speech for robotic applications in noisy environments (Samuel Fernando - 8 November, 2016)
Automatic speech recognition (ASR) allows a natural and intuitive interface for robotic educational applications for children. The system was installed at a public museum event as part of a research study where 320 children (aged 3 to 14) interacted with the robot, with our ASR achieving 90% accuracy for fluent and near-fluent speech.
Link: https://arxiv.org/abs/1611.02695
====================================================
What are teachers interested in toward educational examples? A study of trainees' use of video-enhanced resources (Simon Flandin - 6 October, 2016)
This article reports on a case study on teachers' video-enhanced education. This study involved six trainees who used, during two sessions of 45 minutes, a digital device based on a " pedagogy of typical professional paths " (Durand, 2014; Ria \& Leblanc, 2011)
Link: https://arxiv.org/abs/1610.01838
====================================================
Integration of higher IT education in Ukraine in the global IT-educational space (Valery Tabakov - 4 October, 2016)
The problems of reforming higher IT education system of Ukraine in accordance with the commitments made by Ukraine in connection with the ratification of the EU-Ukraine Agreement Law of Ukraine N 1678-VII of September 16, 2014. A comparative analysis of lists of IT-specialties of higher education in Ukraine in 2005 and 2015 with similar lists adopted by the international system of higher IT education is made
Link: https://arxiv.org/abs/1610.01153
====================================================
A Portable, 3D-Printing Enabled Multi-Vehicle Platform for Robotics Research and Education (Jingjin Yu - 29 May, 2017)
microMVP is an affordable, portable, and open source micro-scale mobile robot platform designed for robotics research and education. As a complete and unique multi-vehicle platform enabled by 3D printing and the maker culture, microMVP can be easily reproduced and requires little maintenance: a set of six micro vehicles, each measuring $8\times 5\times 6$ cubic centimeters and weighing under $100$ grams, and the accompanying tracking platform can be fully assembled in under two hours, all from readily available components
Link: https://arxiv.org/abs/1609.04745
====================================================
Complementary Training Programme for Electrical and Computer Engineering Students Through an Industrial-Academic Collaboration (Extended Version) (Felipe R. Monteiro - 30 July, 2016)
Inspired by co-operative education systems, this collaboration offers an academic experience by means of a complementary training programme (CTP), in order to train undergraduates and graduate students in electrical and computer engineering, with especial emphasis on digital television (TV), industrial automation, and mobile devices technologies. Additionally, the cooperation outcomes led to applications developed for Samsung's mobile devices, digital TV, and production processes, an increase of 37% in CETELI's scientific production (i.e., conference and journal papers) as well as professional training for undergraduates and graduate students.
Link: https://arxiv.org/abs/1608.00143
====================================================
Machine Learned Resume-Job Matching Solution (Yiou Lin - 26 July, 2016)
Experimental results of over 47 thousand resumes show that our solution can significantly improve the predication precision current position, salary, educational background and company scale.
Link: https://arxiv.org/abs/1607.07657
====================================================
Understanding Communication Patterns in MOOCs: Combining Data Mining and qualitative methods (Rebecca Eynon - 25 July, 2016)
They have captured the imaginations of many, attracting significant media attention - with The New York Times naming 2012 "The Year of the MOOC." For those engaged in learning analytics and educational data mining, MOOCs have provided an exciting opportunity to develop innovative methodologies that harness big data in education.
Link: https://arxiv.org/abs/1607.07495
====================================================
The Effects of Cultural dimensions and Demographic Characteristics on E-learning Acceptance (Ali Tarhini - 6 July, 2016)
A total of 1197 questionnaires were received from students who were using web-based learning systems at higher educational institutions in Lebanon and the UK with opposite scores on cultural dimensions
Link: https://arxiv.org/abs/1607.01492
====================================================
A Speaker Diarization System for Studying Peer-Led Team Learning Groups (Harishchandra Dubey - 22 June, 2016)
Automatic analysis of PLTL sessions would help education researchers to get insight into how learning outcomes are impacted by individual participation, group behavior, team dynamics, etc.. In this study, a new corpus is established called CRSS-PLTL, that contains speech data from 5 PLTL teams over a semester (10 sessions per team with 5-to-8 participants in each team). Our proposed solution is unsupervised and contains a new online speaker change detection algorithm, termed G 3 algorithm in conjunction with Hausdorff-distance based clustering to provide improved detection accuracy
Link: https://arxiv.org/abs/1606.07136
====================================================
What is Learning Analytics about? A Survey of Different Methods Used in 2013-2015 (Mohammad Khalil - 9 June, 2016)
Because the field matures and is now adapted in diverse educational settings, we believe there is a pressing need to list its own research methods and specify its objectives and dilemmas. This paper surveys publications from Learning Analytics and Knowledge conference from 2013 to 2015 and lists the significant research areas in this sphere
Link: https://arxiv.org/abs/1606.02878
====================================================
Using Collaborative Visual Analytics for Innovative Industry-inspired Learning Activities (Olivera Marjanovic - 4 June, 2016)
In addition to giving students access to state-of-the-art tools for visualization (SAS-VA) and collaboration (Yammer), an even more important educational objective is to expose students to current industry practices with individual data-driven disciplinary insights no longer considered to sufficient when dealing with complex multi-disciplinary challenges
Link: https://arxiv.org/abs/1606.01427
====================================================
New tools in GeoGebra offering novel opportunities to teach loci and envelopes (Francisco Botana - 30 May, 2016)
GeoGebra is an open source mathematics education software tool being used in thousands of schools worldwide. Since version 4.2 (December 2012) it supports symbolic computation of locus equations as a result of joint effort of mathematicians and programmers helping the GeoGebra developer team. The joint work, based on former researches, started in 2010 and continued until present days, now enables fast locus and envelope computations even in a web browser in full HTML5 mode
Link: https://arxiv.org/abs/1605.09153
====================================================
Information and Communications Technologies (ICT) and Pre-Service Education Professionals: A Case Study of Motivation and Knowledge (Maria Isabel Ponce-Escudero - 21 May, 2016)
The following targets have been proposed: [1] knowing what basic skills regarding initial instrumental knowledge presents the prospective teacher (aptitudes) and [2] knowing their motivation for the educational use of ICT in the classroom (attitudes)
Link: https://arxiv.org/abs/1605.06659
====================================================
Information Security Awareness at Oman Educational Institutions : An Academic Prespective (Rajasekar Ramalingam - 17 May, 2016)
A survey was performed on the education institutions in Oman to investigate the level of information security awareness among various entities. The survey attracted 173 respondents: the level of information security awareness and knowledge on security practices were correlated and analyzed
Link: https://arxiv.org/abs/1605.05580
====================================================
SweLL on the rise: Swedish Learner Language corpus for European Reference Level studies (Elena Volodina - 22 April, 2016)
SweLL consists of three subcorpora - SpIn, SW1203 and Tisus, collected from three different educational establishments. Five of the six CEFR levels are represented in the corpus: A1, A2, B1, B2 and C1 comprising in total 339 essays. The work on SweLL is still ongoing with more than 100 essays waiting in the pipeline
Link: https://arxiv.org/abs/1604.06583
====================================================
Compatibility of Mating Preferences (Haluk O. Bingol - 26 July, 2016)
We investigate how compatible the mating preferences of men and women are in a given property such as age, height, education and income. We use dataset of a large online dating site (N = 44, 255 users). (iv) Highest compatibility is observed in income with 95 %
Link: https://arxiv.org/abs/1604.04783
====================================================
PERCCOM: A Master Program in Pervasive Computing and COMmunications for Sustainable Development (Jari Porras - 11 April, 2016)
This program brings together 11 academic partners and 8 industry partners to combine advanced Information and Communication Technologies (ICT) with environmental awareness to enable world-class education and unique competences for ICT professionals who can build cleaner, greener, more resource and energy efficient cyber-physical systems
Link: https://arxiv.org/abs/1604.02937
====================================================
Next-Term Student Performance Prediction: A Recommender Systems Approach (Mack Sweeney - 6 April, 2016)
National statistics indicate that most higher education institutions have four-year degree completion rates around 50 percent, or just half of their student populations
Link: https://arxiv.org/abs/1604.01840
====================================================
SciChallenge: Using Student-Generated Content and Contests to Enhance the Interest for Science Education and Careers (Sabri Pllana - 31 March, 2016)
It uses a contest-based approach towards self-produced digital education materials from young people for young people. In cooperation with partner schools, teachers, and other youth-oriented institutions, the contest participants (individuals or groups) between the ages of 10 and 20 years generate creative digital materials (videos, slides, or infographics)
Link: https://arxiv.org/abs/1603.09598
====================================================
Automated Clustering and Program Repair for Introductory Programming Assignments (Sumit Gulwani - 19 June, 2018)
Previous research has suggested that program repair techniques can be used to generate feedback in programming education. We find that our approach can repair 97% of student attempts, while 81% of those are small repairs of good quality. We obtain promising initial results (the average usefulness grade 3.4 on a scale from 1 to 5), and conclude that our approach can be used in an interactive setting.
Link: https://arxiv.org/abs/1603.03165
====================================================
Greedy Ants Colony Optimization Strategy for Solving the Curriculum Based University Course Timetabling Problem (Patrick Kenekayoro - 16 February, 2016)
Timetabling is a problem faced in all higher education institutions. A number of meta-heuristic approaches have obtained good results when tested on the ITC dataset, however few have used the ant colony optimization technique, particularly on the ITC 2007 curriculum based university course timetabling problem. This study describes an ant system that solves the curriculum based university course timetabling problem and the quality of the algorithm is tested on the ITC 2007 dataset
Link: https://arxiv.org/abs/1602.04933
====================================================
Experiences in Implementing an ICT-Augmented Reality as an Immersive Learning System for a Philippine HEI (Nestor R. Valdez - 24 June, 2015)
This paper presents the experiences in building and implementing a 3D avatar-based virtual world (3D-AVW) as a VLE (3D-AVLE) for the Technological University of the Philippines-Taguig (TUP-T), a higher education institution (HEI) in the Philippines. With the current LAN setup in TUP-T, the optimal number of concurrent users that can be accommodated without sacrificing connectivity and the quality of virtual experience was found to be at 30 users, exactly the mean class size in TUP-T
Link: https://arxiv.org/abs/1601.06825
====================================================
Predictive and statistical analyses for academic advisory support (Mohammed Al-Sarem - 7 November, 2015)
The ability to recognize weakness of students and solving any problem may confront them in timely fashion is always a target of all educational institutions. The sample consisted of a total of 249 undergraduate students: 46 % of them were Female and 54% Male. Among of them, C 4.5 constitutes the best agreement among the finding results.
Link: https://arxiv.org/abs/1601.04244
====================================================
Wikipedia Ranking of World Universities (José Lages - 4 February, 2016)
At the same time WRWU incorporates all knowledge accumulated at 24 Wikipedia editions giving stronger highlights for historically important universities leading to a different estimation of efficiency of world countries in university education
Link: https://arxiv.org/abs/1511.09021
====================================================
Tracking Motion and Proxemics using Thermal-sensor Array (Chandrayee Basu - 25 November, 2015)
Indoor tracking has all-pervasive applications beyond mere surveillance, for example in education, health monitoring, marketing, energy management and so on. The goal of the project is to facilitate motion detection and group proxemics modeling using an 8 x 8 infrared sensor array. Each of the 8 x 8 pixels is a temperature reading in Fahrenheit. We refer to each 8 x 8 matrix as a scene. We collected approximately 902 scenes with different configurations of human groups and different walking directions
Link: https://arxiv.org/abs/1511.08166
====================================================
A Systematic Literature Review of the Critical Factors for Success of Mobile Learning in Higher Education (University Students' Perspective) (Muasaad Alrasheedi - 13 November, 2015)
While this can be taken as an encouraging sign, the perplexing part is that the fervor with which mobile phones have been welcomed into every aspect of our lives does not seem to be evident in the educational sector. A total of 30 studies were included in the research, which combined would give a true picture of user perceptions of the factors they consider important for effective m-Learning implementation. Our systematic review collates results from 30 studies conducted in 17 countries, where 13 critical success factors (CSFs) were found to strongly impact m-Learning.
Link: https://arxiv.org/abs/1511.04417
====================================================
Building a Decision Tree Model for Academic Advising Affairs Based on the Algorithm C 4-5 (Mohammed Al-Sarem - 10 November, 2015)
The ability to recognize students weakness and solve any problem that may confront them in timely fashion is always a target for all educational institutions. The C 4.5 algorithm is used as a method for building such trees
Link: https://arxiv.org/abs/1511.04026
====================================================
On Intra Prediction for Screen Content Video Coding (Haoming Chen - 10 November, 2015)
Screen content coding (SCC) is becoming increasingly important in various applications, such as desktop sharing, video conferencing, and remote education. All the three proposed variants provide significant gains over HEVC, and simulation results show that average gains of 3.3% BD-bitrate in Intra-frame coding are achieved by the RDO variant for screen content video. To the best of our knowledge, this is the first paper that 1) points out current HEVC intra prediction scheme with bilinear interpolation does not work efficiently for screen content video and 2) uses different filters adaptively in the HEVC intra prediction interpolation.
Link: https://arxiv.org/abs/1511.01862
====================================================
Can a Mobile Game Teach Computer Users to Thwart Phishing Attacks? (Nalin Asanka Gamagedara Arachchilage - 5 November, 2015)
To prevent this, anti-phishing education needs to be considered. Therefore, a mobile game prototype was developed based on the design introduced by Arachchilage and Cole [3]
Link: https://arxiv.org/abs/1511.01622
====================================================
Evaluating m-learning in Saudi Arabian higher education: a case study (Salem Alkhalaf - 12 October, 2015)
Nowadays, mobile devices have become increasingly a part of education for those who study or teach at the university level and school levels. This paper presents a study that applies mlearning to a course at Qassim University, where 100 students attended during the academic year 2014, including summer courses. 90 student questionnaires were filled correctly, remaining 10 had various anomalies and thus were not considered
Link: https://arxiv.org/abs/1510.03189
====================================================
Using Socrative to Enhance In-Class Student Engagement and Collaboration (Sam M Dakka - 8 October, 2015)
Learning and teaching experiment was designed to incorporate SRS Student Response System to measure and assess student engagement in higher education for level 5 engineering students. The SRS system was based on getting an immediate student feedback to short quizzes lasting 10 to 15 minutes using Socrative software. The experiment was conducted through semester 2 of yearlong engineering module. The results showed that 53% of the students improved their performance while 23% neither improved nor underperformed
Link: https://arxiv.org/abs/1510.02500
====================================================
Integrated Science, Technology, Engineering and Mathematics (STEM) Education through Active Experience of Designing Technical Toys in Vietnamese Schools (Le Xuan Quang - 13 September, 2015)
The design performed at the Faculty of Technology Education, Hanoi National University of Education, Vietnam in April 2015
Link: https://arxiv.org/abs/1509.03807
====================================================
Teaching Python programming with automatic assessment and feedback provision (Hans Fangohr - 11 September, 2015)
The choice of tests and the reporting back to the student is chosen to optimise the educational value for the students. We include an evaluation of the system and data from using it in a class of 425 students.
Link: https://arxiv.org/abs/1509.03556
====================================================
Design Studio 2.0: Augmenting Reflective Architectural Design Learning (Burak Pak - 6 September, 2015)
When considered in an educational context, Web 2.0 provides various opportunities for enhanced integration and for improving the learning processes in information-rich collaborative disciplines such as urban planning and architectural design. The dialogue between the design students and studio teachers can be mediated in various ways by creating novel learning spaces using Web 2.0-based social software and information aggregation services, and brought to a level where the Web 2.0 environment supports, augments and enriches the reflective learning processes. We propose to call this new setting Design Studio 2.0. We suggest that Design Studio 2.0 can provide numerous opportunities which are not fully or easily available in a conventional design studio setting. As a result, we will introduce a set of key criteria for the development and implementation of an effective e-learning environment as a sustainable platform for supporting the Design Studio 2.0.
Link: https://arxiv.org/abs/1509.01872
====================================================
Media Usage Survey: Overall Comparison of Faculty and Students (Gerd Gidion - 31 July, 2015)
Recent developments in the use of technologies in education have provided unique opportunities for teaching and learning. This paper describes the results of a survey conducted at Western University (Canada) in 2013, regarding the use of media by students and instructors
Link: https://arxiv.org/abs/1508.00043
====================================================
Media Usage in Post-Secondary Education and Implications for Teaching and Learning (Gerd Gidion - 24 July, 2015)
This paper reports the results of a survey about media usage in teaching and learning conducted with Western University students and instructors, highlighting trends in the usage of new and traditional media in higher education by instructors and students. In addition, the survey comprises part of an international research program in which 20 universities from 10 countries are currently participating
Link: https://arxiv.org/abs/1507.06857
====================================================
2001-2013: Survey and Analysis of Major Cyberattacks (Tavish Vaidya - 1 September, 2015)
Widespread and extensive use of computers and their interconnections in almost all sectors like communications, finance, transportation, military, governance, education, energy etc., have made them attractive targets for adversaries to spy, disrupt or steal information by pressing of few keystrokes from any part of the world. This paper presents a survey of major cyberattacks from 2001 to 2013 and analyzes these attacks to understand the motivation, targets and technique(s) employed by the attackers
Link: https://arxiv.org/abs/1507.06673
====================================================
What are essential concepts about networks? (Hiroki Sayama - 27 September, 2015)
At the NetSci 2014 conference, we initiated a year-long process to develop an educational resource that concisely summarizes essential concepts about networks that can be used by anyone of school age or older
Link: https://arxiv.org/abs/1507.03490
====================================================
Effect of Strategic Grading and Early Offers in Matching Markets (Hedyeh Beyhaghi - 9 July, 2015)
Strategic suppression of grades, as well as early offers and contracts, are well-known phenomena in the matching process where graduating students apply to jobs or further education. Assuming uniform student quality distribution, we show that the quality loss from the above strategic manipulation is bounded by at most a factor of 2, and give improved bounds for some special cases of welfare functions.
Link: https://arxiv.org/abs/1507.02718
====================================================
Typologies of the Popular Science Web Video (Jesús Muñoz Morcillo - 19 June, 2015)
To avoid a misleading identification of science web videos with institutionally produced videos, we steer clear of the term science communication video, since many of the actual producers are not even familiar with the academic discussion on science communication, and since the subject matter does not depend on political or educational strategies. A content analysis of 200 videos from 100 online video channels was conducted
Link: https://arxiv.org/abs/1506.06149
====================================================
Modelling the Effectiveness of Curriculum in Educational Systems Using Bayesian Networks (Ahmad A. Kardan - 9 June, 2015)
In recent years, online education has been considered as one of the most widely used IT services. In order to evaluate the proposed model, the data of three consecutive semesters of 117 MS IT Students of E-Learning Center of Amirkabir University of Technology has been used
Link: https://arxiv.org/abs/1506.02794
====================================================
Gender Issues & Information Communication Technology for Development (ICT4D): Prospects and Challenges for Women in Nigeria (Kwetishe Joro Danjuma - 17 April, 2015)
It has successfully transformed education, businesses, healthcare, entertainment, politics and good governance within the Global North; providing equitable access to developmental framework driven by ICTs. Data gathered from the questionnaire was analyzed using Statistical Package for Social Science version 19, and the result was presented using ANOVA, and descriptive analysis
Link: https://arxiv.org/abs/1504.04644
====================================================
Assessing Excel VBA Suitability for Monte Carlo Simulation (Alexei Botchkarev - 28 March, 2015)
Despite the popularity of the Excel in many industries and educational institutions, it has been repeatedly criticized for its flaws and often described as questionable, if not completely unsuitable, for statistical problems. The purpose of this study is to assess suitability of the Excel (specifically its 2010 and 2013 versions) with VBA programming as a tool for MC simulation. The results of the study indicate that Microsoft Excel (versions 2010 and 2013) is a strong Monte Carlo simulation application offering a solid framework of core simulation components including spreadsheets for data input and output, VBA development environment and summary statistics functions
Link: https://arxiv.org/abs/1503.08376
====================================================
A Framework for Textbook Enhancement and Learning using Crowdsourced Annotations (Anamika Chhabra - 11 August, 2015)
Hence, we aim to facilitate and promote communication between the communities of authors, instructors and students in order to gradually improve the educational material. An experiment was conducted on 60 students who try to learn an article of a textbook by annotating it for four days
Link: https://arxiv.org/abs/1503.06009
====================================================
A Multi-Gene Genetic Programming Application for Predicting Students Failure at School (J. O. Orove - 11 March, 2015)
Several efforts to predict student failure rate (SFR) at school accurately still remains a core problem area faced by many in the educational sector. Result obtained from GPSFARPS simulations show its unique ability to evolve a suitable failure rate expression with a fast convergence at 30 generations from a maximum specified generation of 500
Link: https://arxiv.org/abs/1503.03211
====================================================
Discovering functional zones using bus smart card data and points of interest in Beijing (Haoying Han - 10 March, 2015)
Cities comprise various functional zones, including residential, educational, commercial zones, etc. In this research, we used 77976010 bus smart card records of Beijing City in one week in April 2008 and converted them into two-dimensional time series data of each bus platform, Then, through data mining in the big database system and previous studies on citizens' trip behavior, we established the DZoF (discovering zones of different functions) model based on SCD (smart card Data) and POIs (points of interest), and pooled the results at the TAZ (traffic analysis zone) level
Link: https://arxiv.org/abs/1503.03131
====================================================
System Interactive Cyber Presence for E learning to Break Down Learner Isolation (Bousaaid Mourad - 23 February, 2015)
Our contribution to reduce the feeling of isolation is to ensure the presence of the teacher in the educational tools. Among the tools we offer, video conference Openmeeting integrated in Moodle providing the possibility of using the notion of class and whiteboard, the indicator of motivation quantification tool based hand gesture that we developed and finally social networks web 2. 0 like Facebook, youtube, twitter to promote collaboration, sharing and communication of the learner with his peers.
Link: https://arxiv.org/abs/1502.06641
====================================================
Supporting Instructors in Collaborating with Researchers using MOOClets (Joseph Jay Williams - 14 February, 2015)
Most education and workplace learning takes place in classroom contexts far removed from laboratories or field sites with special arrangements for scientific research. But digital online resources provide a novel opportunity for large scale efforts to bridge the real world and laboratory settings which support data collection and randomized A/B experiments comparing different versions of content or interactions [2]. MOOClets [3] are defined as modular components of a digital resource that can be implemented in technology to: (1) allow modification to create multiple versions, (2) allow experimental comparison and personalization of different versions, (3) reliably specify what data are collected
Link: https://arxiv.org/abs/1502.04247
====================================================
Evaluating Open Access Paper Repository In Higher Education For Asean Region (Reza Chandra - 13 February, 2015)
Paper repository at higher education is a collection of scientific articles created by the academic society. This study took as many as 80 universities in the Webometrics ranking of repositories in the Southeast Asia region. The result of this study, Eprints is the most widely used tools in higher education, as many as 37 higher educations (46,25%). Institut Teknologi Sepuluh November got the highest score in number of web page in Google (2.010.000), Bogor Agricultural University Scientific Repository got the highest score for number of document paper (44.300). University of Sumatera Utara Repository got the highest score for reffering page (82588) and backlink (86421). Universiti Teknologi Malaysia Institutional Repository got the highest score for reffering domain (532).
Link: https://arxiv.org/abs/1502.04069
====================================================
An alternative use of the NetLogo modeling environment, where the student thinks and acts like an Agent, in order to teach concepts of Ecology (Aristotelis Gkiolmas - 23 January, 2015)
The Multi Agent Based programming, modeling and simulation environment of NetLogo has been used extensively during the last fifteen years for educational among other purposes. The scheme was carried out, as part of a broader research, with interviews, and web page like interface menu selections, in a sample of 17 University students in Athens (prospective Primary School teachers) and the results were judged as encouraging
Link: https://arxiv.org/abs/1501.05779
====================================================
Real Time Collaborative Platform for Learning and Teaching Foreign Languages (Ilya V. Osipov - 16 January, 2015)
The paper describes a novel social network-based open educational resource for learning foreign languages in real time from native speakers, based on the predefined teaching materials. The system went live in April 2014, and had over six thousand active daily users, with over 40,000 total registered users
Link: https://arxiv.org/abs/1501.04155
====================================================
Students Behavioural Analysis in an Online Learning Environment Using Data Mining (ICIAfS) (I. P. Ratnapala - 25 December, 2014)
The focus of this research was to use Educational Data Mining (EDM) techniques to conduct a quantitative analysis of students interaction with an e-learning system through instructor-led non-graded and graded courses. A group of 412 students' access behaviour in an e-learning system were analysed and they were grouped into clusters using K-Means clustering method according to their course access log records. The results explained that more than 40% from the student group are passive online learners in both graded and non-graded learning environments
Link: https://arxiv.org/abs/1412.7813
====================================================
Educational Technology as Seen Through the Eyes of the Readers (Peter Kraker - 24 June, 2015)
In this paper, I present the evaluation of a novel knowledge domain visualization of educational technology. It comprises of 13 topic areas, spanning psychological, pedagogical, and methodological foundations, learning methods and technologies, and social and technological developments
Link: https://arxiv.org/abs/1412.6462
====================================================
Proceedings 3rd International Workshop on Trends in Functional Programming in Education (James Caldwell - 11 December, 2014)
The goal of TFPIE is to gather researchers, professors, teachers, and all professionals interested in functional programming in education. The post-workshop review process received 13 submissions, which were vetted by the program committee, assuming scientific journal standards of publication
Link: https://arxiv.org/abs/1412.4738
====================================================
You Tweet What You Eat: Studying Food Consumption Through Twitter (Sofiane Abbar - 25 January, 2015)
We further link this data to societal and economic factors, such as education and income, illustrating that, for example, areas with higher education levels tweet about food that is significantly less caloric. Finally, we address the somewhat controversial issue of the social nature of obesity (first raised by Christakis & Fowler in 2007) by inducing two social networks using mentions and reciprocal following relationships.
Link: https://arxiv.org/abs/1412.4361
====================================================
Evaluating Learning Games during their Conception (Iza Marfisi-Schottman - 9 December, 2014)
Learning Games (LGs) are educational environments based on a playful approach to learning. These quality indicators have been validated by 6 LG experts that used them to assess the quality of 24 LGs in the process of being designed
Link: https://arxiv.org/abs/1412.2880
====================================================
MLitB: Machine Learning in the Browser (Edward Meeds - 17 June, 2015)
Beyond an educational resource for ML, the browser has vast potential to not only improve the state-of-the-art in ML research, but also, inexpensively and on a massive scale, to bring sophisticated ML learning and prediction to the public at large
Link: https://arxiv.org/abs/1412.2432
====================================================
Mary Astell's words in A Serious Proposal to the Ladies (part I), a lexicographic inquiry with NooJ (Hélène Pignot - 3 December, 2014)
We first focused on the semantics to see how Astell builds her vindication of the female sex, which words she uses to sensitise women to their alienated condition and promote their education. Introduction In our previous articles, we have studied the singularities of 17 th century English within the framework of a diachronic analysis thanks to syntactical and morphological graphs and thanks to the dictionaries we have compiled from a corpus that may be expanded overtime. Our early work was based on a limited corpus of English travel literature to Greece in the 17 th century. This article deals with a late seventeenth century text written by a woman philosopher and essayist, Mary Astell (1666--1731), considered as one of the first English feminists
Link: https://arxiv.org/abs/1412.1215
====================================================
Inferring User Preferences by Probabilistic Logical Reasoning over Social Networks (Jiwei Li - 10 November, 2014)
spouse, education, location) and preferences (likes and dislikes) from text. Our experiments show that probabilistic logical reasoning significantly improves the performance on attribute and relation extraction, and also achieves an F-score of 0.791 at predicting a users likes or dislikes, significantly better than two strong baselines.
Link: https://arxiv.org/abs/1411.2679
====================================================
Child Education Through Animation: An Experimental Study (Md Baharul Islam - 7 November, 2014)
Teachers have tried to teach their students by introducing text books along with verbal instructions in traditional education system. We visited a primary school in Dhaka city for this study and conducted teaching with three different groups of students, (i) teacher taught students by traditional system on same materials and marked level of students ability to adapt by a set of questions, (ii) another group was taught with only visual learning material and assessment was done with 15 questionnaires, (iii) the third group was taught with the video of solar system combined with teachers instructions and assessed with the same questionnaires
Link: https://arxiv.org/abs/1411.1897
====================================================
OpenCourseWare Observatory -- Does the Quality of OpenCourseWare Live up to its Promise? (Sahar Vahdati - 14 April, 2015)
A vast amount of OpenCourseWare (OCW) is meanwhile being published online to make educational content accessible to larger audiences. In order to obtain a representative overview of the quality of OCW, we performed a quality assessment on a set of 100 randomly selected courses obtained from 20 different OCW repositories
Link: https://arxiv.org/abs/1410.5694
====================================================
Visualization of Co-Readership Patterns from an Online Reference Management System (Peter Kraker - 9 December, 2014)
First, we investigate the distribution of subject areas in user libraries of educational technology researchers on Mendeley. The results show that around 69% of the publications in an average user library can be attributed to a single subject area. The resulting visualization prototype, based on the most read publications in this field on Mendeley, reveals 13 topic areas of educational technology research. The visualization is a recent representation of the field: 80% of the publications included were published within ten years of data collection
Link: https://arxiv.org/abs/1409.0348
====================================================
Non-Standard Words as Features for Text Categorization (Slobodan Beliga - 16 November, 2014)
For the purpose of this research, 390 text documents were collected and formed the SKIPEZ collection with 6 classes: official, literary, informative, popular, educational and scientific. The best categorization results are achieved using the first feature set (NSW frequencies) with the categorization accuracy of 87%
Link: https://arxiv.org/abs/1408.6746
====================================================
Utilizing the Active and Collaborative Learning Model in the Introductory Physics Course (Nguyen H. Nam - 14 August, 2014)
The author exploits the learning management system of Hanoi National University of Education to establish a learning environment in the Introductory Physics course Part 2, which supports to the blended learning, for the 1st year student
Link: https://arxiv.org/abs/1408.3309
====================================================
"Your click decides your fate": Leveraging clickstream patterns from MOOC videos to infer students' information processing & attrition behavior (Tanmay Sinha - 26 July, 2014)
With an expansive and ubiquitously available gold mine of educational data, Massive Open Online courses (MOOCs) have become the an important foci of learning analytics research. MOOCs offer many valuable learning experiences to students, from video lectures, readings, assignments and exams, to opportunities to connect and collaborate with others through threaded discussion forums and other Web 2.0 technologies
Link: https://arxiv.org/abs/1407.7143
====================================================
Pre service Teachers Perception of using Mobile Devices in Teaching Climate Change in Primary Schools (C. A Obiefuna - 16 July, 2014)
One hundred and fifty (150) pre service teachers in two Colleges of Education in the erosion disaster zones of Anambra and Imo States in the south eastern state of Nigeria were used for the study
Link: https://arxiv.org/abs/1407.4450
====================================================
Integration of Cloud Computing and Web2.0 Collaboration Technologies in E-Learning (Rasha Fouad AlCattan - 19 June, 2014)
This computing approach relies on a number of existing technologies, such as Web2.0, virtualization, Service oriented architecture SOA, Web services,etc.Cloud computing is growing rapidly and becoming an adoptable technology for the organizations especially education institutes, with its dynamic scalability and usage of virtualized resources as a service through the Internet.Today, eLearning is also becoming a very popular and powerful trend.However,in traditional web based eLearning systems,building and maintenance are located onsite in institutions or enterprises, which cause lot of problems to appear such as lacking the support of underlying infrastructure, which can dynamically allocate the needed calculation and storage resources for eLearning systems.As the need for e learning is increasing continuously and its necessary for eLearning systems to keep pace with the right technology needed for development and improvement.However, todays technologies such as Web 2.0, Cloud, etc.enable to build more successful and effective educational environment,that provide collaboration and interaction in eLearning environments.The challenge is to use and integrate these technologies in order to construct tools that allow the best possible learning results.Cloud computing and Web 2.0 are two areas that are starting to strongly effect how the development,deployment and usage of eLearning application.This paper presents the benefits of using cloud computing with the integration of Web 2.0 collaboration technologies in eLearning environment.
Link: https://arxiv.org/abs/1406.5020
====================================================
Student Dropout Risk Assessment in Undergraduate Course at Residential University (Sweta Rai - 14 May, 2014)
Student dropout prediction is an indispensable for numerous intelligent systems to measure the education system and success rate of any university as well as throughout the university in the world. In this study, the descriptive statistics analysis was carried out to measure the quality of data using SPSS 20.0 statistical software and application of decision tree and association rule were carried out by using WEKA data mining tool.
Link: https://arxiv.org/abs/1405.3727
====================================================
Perceptions of International Female Students Towards E-learning in Resolving High Education and Family Role Strain (Mboni Kibelloh - 14 May, 2014)
The purpose of this study is to examine perceptions and behavioral intentions of international female students towards e-learning as a tool for resolving overseas high education and family strain from a technology acceptance standpoint. The research draws on face-to-face interviews with 21 female international students enrolled in classroom taught degree programs at a university in Wuhan, China
Link: https://arxiv.org/abs/1405.3377
====================================================
A novel interactive OBE approach in SCM pedagogy using beer game simulation theory (S. E. S. Bariran - 16 April, 2014)
In this paper, a combination of outcome-based education (OBE) and simulation-based education is proposed focusing on beer game theory. The analysis is based on 336 runs of beer game simulation within a target group of 56 participants divided into 14 subgroups (SG1-SG14).The purpose of the study is mainly to investigate the effect of mutual interactions on students learning process using supply chain total cost and ordering fluctuations as critical measurement criteria.
Link: https://arxiv.org/abs/1404.4384
====================================================
Faculty Attitudes Towards Integrating Technology and Innovation (Colleen Marzilli - 15 April, 2014)
Building on a faculty-led initiative to develop a Community of Practice for improving education, this study used a mixed-method approach of a faculty-developed, electronic survey to assess this topic. Findings from 72 faculty members revealed an overall positive stance toward technology in the classroom and the average faculty member utilized about six technology tools in their courses
Link: https://arxiv.org/abs/1404.4334
====================================================
Case study: Data Mining of Associate Degree Accepted Candidates by Modular Method (Behrouz Minaei Bidgoli - 16 April, 2014)
In the first step, by using unsupervised paradigm, we grouped (clustered) set of modular accepted candidates based on their student status and labeled data sets by three classes so that each class somehow shows educational and student status of modular accepted candidates. In the second step, by using supervised and unsupervised algorithms, we generated predicting models in 2008 data sets
Link: https://arxiv.org/abs/1404.4286
====================================================
Employing Virtualization for Information Technology Education (Timur Mirzoev - 8 April, 2014)
It is feasible to satisfy this appetite for exciting education by employing server virtualization technologies to teach advanced concepts with extensive hands-on assignments. This manuscript introduces the utilization of commercial software, such as vSphere 4.1, with full datacenter functionality and operations for teaching Information Technology classes of various levels.
Link: https://arxiv.org/abs/1404.2167
====================================================
Exploring Indonesian Web Based Career Center Discrepancy of Web Popularity and Type of Services (Renny Renny - 21 March, 2014)
Utilization of the Internet in higher education focus on the learning process or the provision of academic information for students. Colleges that already have a Career Center only 34 of the 264 colleges as sample
Link: https://arxiv.org/abs/1403.5401
====================================================
Breaking Barriers: Assistive Technology Tool as Educational Software to support Writing (Onintra Poobrasert - 19 February, 2014)
It is therefore necessary for our institute to develop suitable ICT technologies to assist the education of these learning disabilities children. Hence, the results indicated that all three students with learning disabilities in this study improved their ability of writing by 50%, 81.89% and 100% respectively.
Link: https://arxiv.org/abs/1402.4724
====================================================
Design of Locally E-management System for Technical Education Foundation- Erbil (Ayad Ghany Ismaeel - 8 February, 2014)
Until now, there is no e-management and automation necessary for the operations or procedures of the departments in the Technical Education Foundation Erbil, and the foundation like any other organization in Kurdistan region is not connected to the network, because there is not infrastructure for that purpose. The important conclusions and advantages of applying DLMS4TEF are making backup to DLMS4TEF's databases using the option (zipped) which allows them to reach the size of (3%) of the original database size, sufficient security techniques, through achieving levels of security, hidden access to the administrator section, and finally DLMS4TEF, when compared with the traditional methods and project of Oman, shows the same efficiency of some, if not better, features of Oman
Link: https://arxiv.org/abs/1402.1880
====================================================
The Readability of Tweets and their Geographic Correlation with Education (James R. A. Davenport - 23 January, 2014)
By utilizing geographic data provided by 2% of users, joined with "ZIP Code Tabulation Area" (ZCTA) level education data from the U.S
Link: https://arxiv.org/abs/1401.6058
====================================================
The Effect Of Online Cooperative Homework On Students' Academic Success (Semseddin Gunduz - 21 January, 2014)
The experience group of the research consists of 58 students from Anadolu University Education Faculty Education of Computer and Instruction Technology Section. In each class consisting of 29 people, it's decided that 14 students prepare their homework individually; the rest 15 students prepare their homework with cooperative as triple groups
Link: https://arxiv.org/abs/1401.5236
====================================================
Computer model of teaching with the varied coefficient of forgetting (Robert V. Mayer - 12 January, 2014)
But in practice that knowledge which are included in educational activity of the pupil are remembered much more strongly and forgotten more slowly then knowledge which he doesn't use. For the purpose of more exact research of didactic systems is offered the model of training, in which consider that in case increasing the number of applications of this element of a learning material: 1) duration of its use by the pupil decreases; 2) the coefficient of forgetting decreases
Link: https://arxiv.org/abs/1401.2617
====================================================
The Development of Educational Quality Administration: a Case of Technical College in Southern Thailand (Bangsuk Jantawan - 26 December, 2013)
The purpose of this research were: to survey the needs of using the information system for educational quality administration; to develop Information System for Educational quality Administration (ISEs) in accordance with quality assessment standard; to study the qualification of ISEs; and to study satisfaction level of ISEs user. Subsequently, the tools of study have been employed that there were the collection of 47 questionnaires and 5 interviews to specialist by responsible officers for Information center of Technical colleges in Southern Thailand
Link: https://arxiv.org/abs/1312.7118
====================================================
Students' Perceptions and Attitude towards the effectiveness of Prezi Uses in learning Islamic Subject (Azlina Mustaffa - 19 December, 2013)
Specifically its aims to identify students interest and second examine their attitude towards the uses of Prezi in learning Islamic educations. A total of 22 students participated in the survey, employing a 22-item questionnaire
Link: https://arxiv.org/abs/1312.5481
====================================================
Various models of process of the learning, based on the numerical solution of the differential equations (R. V. Mayer - 11 December, 2013)
Are considered: 1) the unicomponent model, which is recognizing that educational information consists of equal elements; 2) the multicomponent model, which is considering that knowledge is assimilate with a various strength, and on lesson weak knowledge becomes strong; 3) the generalized multicomponent model which considers change of working capacity of the pupil and various complexity of studied elements of a training material
Link: https://arxiv.org/abs/1312.3116
====================================================
Proceedings Second Workshop on Trends in Functional Programming In Education (Philip K. F. Hölzenspies - 8 December, 2013)
The Second International Workshop on Trends in Functional Programming in Education, TFPIE 2013, was held on May 13, 2013 at Brigham Young University in Provo, Utah, USA. Submissions were vetted by the TFPIE 2013 program committee using prevailing academic standards. The 2 articles in this volume were selected for publication as the result of this process
Link: https://arxiv.org/abs/1312.2216
====================================================
Learning about social learning in MOOCs: From statistical analysis to generative model (Christopher G. Brinton - 19 December, 2013)
Since social learning is a key element of scalable education in MOOCs and is done via online discussion forums, our main focus is in understanding forum activities. Two salient features of MOOC forum activities drive our research: 1. 2. High-volume, noisy discussions: at least 30% of the courses produce new discussion threads at rates that are infeasible for students or teaching staff to read through
Link: https://arxiv.org/abs/1312.2159
====================================================
Automatic White Blood Cell Measuring Aid for Medical Diagnosis (Pramit Ghosh - 3 December, 2013)
This system can be deployed in the remote area as a supporting aid for telemedicine technology and only high school education is sufficient to operate it. The proposed system achieved 97.33 percent accuracy for the samples collected to test this system.
Link: https://arxiv.org/abs/1312.0809
====================================================
Onboarding in Open Source Software Projects: A Preliminary Analysis (Fabian Fagerholm - 6 November, 2013)
The study is based on a program created and conceived at Stanford University in conjunction with Facebook's Education Modernization program. More than 120 students participated in 2013
Link: https://arxiv.org/abs/1311.1334
====================================================
Innovation éducative en sciences de l'information (Enrique Wulff Barreiro - 4 November, 2013)
Concerning its development in the virtual classroom, the web 2.0 educational innovation means the use and the production of textbooks and the personalisation of the classnotes
Link: https://arxiv.org/abs/1311.0804
====================================================
Improving Software Developer's Competence: Is the Personal Software Process Working? (Pekka Abrahamsson - 1 November, 2013)
Data is obtained from 58 computer science students in three university courses on the master level, which were held in two different educational institutions in Finland and Denmark
Link: https://arxiv.org/abs/1311.0228
====================================================
U.S. academic libraries: understanding their web presence and their relationship with economic indicators (Enrique Orduña-Malea - 22 October, 2013)
universities with the highest total expenditures in academic libraries according to data provided by the National Center for Education Statistics (NCES). Better results are obtained by correlating total library expenditures with URL mentions measured by Google (r= 0.546) and visits measured by Compete (r= 0.573), respectively
Link: https://arxiv.org/abs/1310.5812
====================================================
Predicting Students' Performance Using ID3 And C4.5 Classification Algorithms (Kalpesh Adhatrao - 8 October, 2013)
An educational institution needs to have an approximate prior knowledge of enrolled students to predict their performance in future academics. By applying the ID3 (Iterative Dichotomiser 3) and C4.5 classification algorithms on this data, we have predicted the general and individual performance of freshly admitted students in future examinations.
Link: https://arxiv.org/abs/1310.2071
====================================================
Development of Comprehensive Devnagari Numeral and Character Database for Offline Handwritten Character Recognition (Vikas J. Dongre - 16 August, 2013)
The present work generated 5137 and 20305 isolated samples for numeral and character database, respectively, from 750 writers of all ages, sex, education, and profession
Link: https://arxiv.org/abs/1309.5357
====================================================
An Investigation of the Incidences of Repetitive Strain Injury among computer Users in Nigeria (Olatunde Olabiyisi - 27 August, 2013)
Five hundred and thirty one (531) questionnaires were personally administered to different categories of people that use computer in various works of life, ranging from banking sector, civil service, educational sector, health sector to private sector. The result obtained showed that 94.3% of the respondents suffered pain from one or more parts of the body. 86.8% of the respondents suffered from eyestrain, 63.9% suffered from low back pain, 67.4% with wrist pain, 64.7% finger pain while the least suffered pain was foot pain which only 19% responded positively to it. RSI modeled was formulated through linear regression which showed that a unit change in computer will result in corresponding 1.76 unit increases in RSI and a unit change in ergonomic deficiency will also result in corresponding 0.66 increases in RSI
Link: https://arxiv.org/abs/1308.5841
====================================================
Speech based Password Protected Cyber Applications (Urmila Shrawankar - 7 May, 2013)
Whenever we think of cyber applications, we visualize the model that gives the idea that we are sitting in front of computer at home or workplace connected to internet and performing all the work that generally we have to go and do on a specific place for example e-shopping, e-banking, e-education etc. When we think of security, is it 100% secure? No, not at all because though it is password protected, the password is a text base secrete code that can be open
Link: https://arxiv.org/abs/1305.1428
====================================================
Using Serious Games to Train Evacuation Behaviour (João Ribeiro - 15 March, 2013)
They have been successfully applied in different areas such as health care and education, since they can simulate an environment/task quite accurately, making them a practical alternative to real-life simulations. A sample of 30 individuals tested the evacuating scenario, having to leave the building during a fire in the shortest time possible
Link: https://arxiv.org/abs/1303.3828
====================================================
Overview of EIREX 2012: Social Media (Julián Urbano - 5 February, 2013)
The third Information Retrieval Education through EXperimentation track (EIREX 2012) was run at the University Carlos III of Madrid, during the 2012 spring semester. EIREX 2012 is the third in a series of experiments designed to foster new Information Retrieval (IR) education methodologies and resources, with the specific goal of teaching undergraduate IR courses from an experimental perspective. This overview paper summarizes the results of the EIREX 2012 track, focusing on the creation of the test collection and the analysis to assess its reliability.
Link: https://arxiv.org/abs/1302.1178
====================================================
Collaborative digital library of historical resources: Evaluation of first users (A. Abdullah - 22 January, 2013)
As a testbed system, the collaborative digital library known as CoreDev has demonstrated its capabilities in serving an educational community as has been reflected by the positive feedback on the functional requirements from 44 users. Over 75% of the respondents in the user survey considered themselves capable of using the digital library easily. The beta tester demographics (n = 105) indicate that the digital library is reaching its target communities.
Link: https://arxiv.org/abs/1301.5398
====================================================
Proceedings First International Workshop on Trends in Functional Programming in Education (Marco T. Morazán - 20 January, 2013)
The First International Workshop on Trends in Functional Programming in Education, TFPIE 2012, was held on June 11, 2012 at the University of St Andrews in Scotland. Submissions were vetted by the TFPIE 2012 program committee using prevailing academic standards. The 4 articles in this volume were selected for publication as the result of this process
Link: https://arxiv.org/abs/1301.4650
====================================================
Prototype for Extended XDB Using Wiki (Wook-Sung Yoo - 23 November, 2012)
Supported by NASA Ames Research Center through NASA Exploration System Mission Directorate (ESMD) Higher Education grant, a project team at Fairfield University extended this concept and developed an extended XDB protocol and a prototype providing text-searches for Wiki. The prototype was created for 16 tags of the MediaWiki dialect
Link: https://arxiv.org/abs/1211.5629
====================================================
A Decision Support Tool for Inferring Further Education Desires of Youth in Sri Lanka (Mohamed Firdhous - 8 November, 2012)
This paper presents the results of a study carried out to identify the factors that influence the further education desires of Sri Lankan youth. The accuracy of the model and the decision support tool has been tested by using a random data sets and the accuracy was found to be well above 80 percent, which is sufficient for any policy related decision making.
Link: https://arxiv.org/abs/1211.2028
====================================================
Performance Constraint and Power-Aware Allocation For User Requests In Virtual Computing Lab (Nguyen Quang-Hung - 26 December, 2012)
Virtual machine (VM), which is a sandbox for user application, fits well in the education environment to provide computational resources for teaching and research needs. The simulation on 7-day workload, which converted from LLNL Atlas log, showed the FF-MAP and FF-MAP-H2L algorithms reducing 7.24% and 7.42% energy consumption than existing greedy mapping algorithm in the leasing scheduler Haizea. In addition, we introduce a ratio θof consolidation in HalfPI-FF-MAP and PI-FF-MAP algorithms, in which θis Ï/2 and Ï, and results on their simulations show that energy consumption decreased by 34.87% and 63.12% respectively.
Link: https://arxiv.org/abs/1210.1026
====================================================
Usage and Impact of ICT in Education Sector; A Study of Pakistan (M. Nisar Wasif - 20 September, 2012)
To know with reference to the usage and Impact of ICT in Education sector of Pakistan, we accumulate data from 429 respondents from 5 colleges and universities, we use convenient sampling to accumulate the data from district Rawalpindi of Pakistan
Link: https://arxiv.org/abs/1206.5132
====================================================
Education in Conflict Zones: a Web and Mobility Approach (Shah Mahmood - 12 June, 2012)
We propose a new framework for education in conflict zones, considering the explosive growth of social media, web services, and mobile Internet over the past decade. Moreover, we focus on one conflict zone, Afghanistan, as a case study, because of its alarmingly high illiteracy rate, lack of qualified teachers, rough terrain, and relatively high mobile penetration of over 50%
Link: https://arxiv.org/abs/1206.2544
====================================================
Mobile Learning Environment System (MLES): The Case of Android-based Learning Application on Undergraduates' Learning (Hafizul Fahri Hanafi - 9 April, 2012)
Taking cognizance of this promising setting, a study was undertaken to investigate the impact of such an environment enabled by android platform on the learning process among undergraduates of Sultan Idris Education University, Malaysia; in particular, this paper discusses critical aspects of the design and implementation of the android learning system. Data were collected through a survey involving 56 respondents, and these data were analyzed by using SPSS 12.0
Link: https://arxiv.org/abs/1204.1839
====================================================
CRM 2.0 within E-Health Systems: Towards Achieving Health Literacy & Customer Satisfaction (Muhammad Anshari - 31 July, 2012)
We draw the conclusion that the CRM 2.0 in healthcare technologies has brought a possibility to extend the services of e-health by enabling patients, patient's families, and community at large to participate more actively in the process of health education; it helps improve health literacy through empowerment, social networking process, and online health educator. This paper is based on our works presented at ICID 2011.
Link: https://arxiv.org/abs/1203.4309
====================================================
RAPID: A Reachable Anytime Planner for Imprecisely-sensed Domains (Emma Brunskill - 15 March, 2012)
In our work, motivated by findings from the education community relevant to automated tutoring, we consider problems that exhibit a form of topological structure in the factored dynamics model. RAPID performs well on a large tutoring-inspired problem simulation with 122 state variables, corresponding to a flat state space of over 10^30 states.
Link: https://arxiv.org/abs/1203.3538
====================================================
Overview of EIREX 2011: Crowdsourcing (Julián Urbano - 2 March, 2012)
The second Information Retrieval Education through EXperimentation track (EIREX 2011) was run at the University Carlos III of Madrid, during the 2011 spring semester. EIREX 2011 is the second in a series of experiments designed to foster new Information Retrieval (IR) education methodologies and resources, with the specific goal of teaching undergraduate IR courses from an experimental perspective. This overview paper summarizes the results of the EIREX 2011 track, focusing on the creation of the test collection and the analysis to assess its reliability.
Link: https://arxiv.org/abs/1203.0518
====================================================
An Authoring System for Editing Lessons in Phonetic English in SMIL3.0 (G. Merzougui - 25 January, 2012)
This course is based on a template that fits the educational aspects of phonetics, exploiting the features of version 3.0 of the standard SMIL (Synchronized Multimedia Integration Language) for the publication of this course on the web.
Link: https://arxiv.org/abs/1201.5285
====================================================
Data Mining: A prediction for performance improvement using classification (Brijesh Kumar Bhardwaj - 16 January, 2012)
The performance in higher education in India is a turning point in the academics for all students. As a result, we had 300 student records, which were used for by Byes classification prediction model construction
Link: https://arxiv.org/abs/1201.3418
====================================================
The Weakness of Weak Ties in the Classroom (Luis M. Vaquero - 12 March, 2012)
We analyze the most complete record of college student interactions to date (approximately 80,000 interactions by 290 students -- 16 times more interactions with almost 3 times more students than previous studies on educational networks) and compare the social interaction data with the academic scores of the students
Link: https://arxiv.org/abs/1201.1589
====================================================
Interconnection of Communities of Practice: A Web Platform for Knowledge Management (Elise Garrot-Lavoué - 16 December, 2011)
The model of ICP was implemented and has been used to develop the TE-Cap 2 platform which has, as its field of application, educational tutoring activities. The TE-Cap 2 platform has been used in real conditions
Link: https://arxiv.org/abs/1201.1425
====================================================
Overview of EIREX 2010: Computing (Julián Urbano - 31 December, 2011)
The first Information Retrieval Education through Experimentation track (EIREX 2010) was run at the University Carlos III of Madrid, during the 2010 spring semester. EIREX 2010 is the first in a series of experiments designed to foster new Information Retrieval (IR) education methodologies and resources, with the specific goal of teaching undergraduate IR courses from an experimental perspective. For an introduction to the motivation behind the EIREX experiments, see the first sections of [Urbano et al., 2011]. This overview paper summarizes the results of the EIREX 2010 track, focusing on the creation of the test collection and the analysis to assess its reliability.
Link: https://arxiv.org/abs/1201.0274
====================================================
A model of Cross Language Retrieval for IT domain papers through a map of ACM Computing Classification System (Gérald Kembellec - 30 November, 2011)
The purpose is the use of an IT representation as educational research software for newcomers in research. An ontology translation in French is automatically proposed and can be based on Web 2.0 enhanced by a community of users
Link: https://arxiv.org/abs/1112.0032
====================================================
OntologyNavigator: WEB 2.0 scalable ontology based CLIR portal to IT scientific corpus for researchers (Gérald Kembellec - 3 October, 2011)
The purpose is the use of an IT representation as educational research software for researchers. An ontology translation in French is automatically proposed and can be based on Web 2.0 enhanced by a community of users
Link: https://arxiv.org/abs/1110.0336
====================================================
Publish or Patent: Bibliometric evidence for empirical trade-offs in national funding strategies (Robert D. Shelton - 15 February, 2011)
Government funding, and spending in the higher education sector, seem to encourage publications, whereas other components such as industrial funding, and spending in the business sector, encourage patenting. Our results help explain why the US trails the EU in publications, because of its focus on industrial funding - some 70% of its total R&D investment
Link: https://arxiv.org/abs/1102.3047
====================================================
Use of semantic technologies for the development of a dynamic trajectories generator in a Semantic Chemistry eLearning platform (Richard Huber - 7 December, 2010)
With up to 350.000 users per month the platform is the most frequently used scientific educational service in the German spoken Internet
Link: https://arxiv.org/abs/1012.1646
====================================================
Web Page Categorization Using Artificial Neural Networks (S. M. Kamruzzaman - 25 September, 2010)
Here eight major categories of web pages have been selected for categorization; these are business & economy, education, government, entertainment, sports, news & media, job search, and science. The second stage includes fixing the input values of the neural network; all the values remain between 0 and 1
Link: https://arxiv.org/abs/1009.4991
====================================================
An Interactive Zoo Guide: A Case Study of Collaborative Learning (Hao Shi - 4 June, 2010)
In this project, staff from all the three faculties, namely the Faculty of Health, Engineering and Science, Faculty of Arts, Education and Human Development, and Faculty of Business and Law in higher education work together to establish a detailed project management plan and to develop the unit guidelines for participating students. The project was called 'Interactive ZooOz Guide' and developed on a GPS-enabled PDA device in 2007
Link: https://arxiv.org/abs/1006.0869
====================================================
Understanding the Tenets of Agile Software Engineering: Lecturing, Exploration and Critical Thinking (Shvetha Soundararajan - 27 May, 2010)
At best, students have only limited exposure to the agile philosophy, principles and practices at the graduate and undergraduate levels of education. In an effort to address this concern, we offered a graduate-level course entitled "Agile Software Engineering" in the Department of Computer Science at Virginia Tech in Fall 2009
Link: https://arxiv.org/abs/1005.5060
====================================================
Enhancing Curriculum Acceptance among Students with E-learning 2.0 (Kamaljit I. Lakhtaria - 15 April, 2010)
E-learning; enhanced by communicating and interacting is becoming increasingly accepted and this puts Web 2.0 at the center of the new educational technologies. E-Learning 2.0 emerges as an innovative method of online learning for its incorporation of Web 2.0 tools. Students are accepting curriculum that is designed by teacher; whereas E-learning 2.0 enabled Curriculum management system allows student to involve in learning activities. While Institute adapts E-Learning 2.0 as Learning Management System, it also provides Social Networking services and provides direct and transparent interaction between students and teachers. This view of the e-Learning 2.0 shifts its focus from LMS to the students, equipping them, with the means to become ever more autonomous, accepting them to make use of these means in solving problems on their own initiative. Curriculum usage will empower student involvement and enhancing E-learning 2.0 spreading. This paper, analyzing implementation E-learning 2.0 for Curriculum management and discusses Opportunities & Challenges for Curriculum over Web 2.0.
Link: https://arxiv.org/abs/1004.2560
====================================================
A CHAID Based Performance Prediction Model in Educational Data Mining (M. Ramaswami - 5 February, 2010)
While the primary data was collected from the regular students, the secondary data was gathered from the school and office of the Chief Educational Officer (CEO). A total of 1000 datasets of the year 2006 from five different schools in three different districts of Tamilnadu were collected. As a result, we had 772 student records, which were used for CHAID prediction model construction
Link: https://arxiv.org/abs/1002.1144
====================================================
New ways of scientific publishing and accessing human knowledge inspired by transdisciplinary approaches (I. C. Gebeshuber - 7 January, 2010)
Such ways of presenting and managing research results would be accessible by people with different kinds of backgrounds and levels of education, and allow for full use of the ever- increasing number of scientific and technical publications. This approach would dramatically change and revolutionize the way we are doing science, and contribute to overcoming the three gaps between the world of ideas, inventors, innovators and investors as introduced by Gebeshuber, Gruber and Drack in 2009 for accelerated scientific and technological breakthroughs to improve the human condition
Link: https://arxiv.org/abs/1001.1199
====================================================
ICT in Universities of the Western Himalayan Region in India: Status, Performance- An Assessment (D. Sharma - 9 December, 2009)
The objective of this study is to undertake the task of assessment regarding initiative, utilization of ICT resources, its performance and impact in these higher educational institutions/universities. Followed by a questionnaire containing different ICT components 18 different groups like vision, planning, implementation, ICT infrastructure and related activities exhibiting performance
Link: https://arxiv.org/abs/0912.1839
====================================================
Software Engineering Education by Example (Nacer Boudjlida - 17 November, 2009)
Based on the old but famous distinction between "in the small" and "in the large" software development, at Nancy Université, UHP Nancy 1, we experience for a while software engineering education thanks to actual project engineering
Link: https://arxiv.org/abs/0911.3306
====================================================
Assessment of a percutaneous iliosacral screw insertion simulator (J. Tonetti - 12 October, 2009)
PURPOSE: This work's objective was to assess educational efficiency of a path simulator under fluoroscopic guidance applied to sacroiliac joint percutaneous screw fixation. MATERIALS AND METHODS: We evaluated 23 surgeons' accuracy inserting a guide-wire in a human cadaver experiment, following a pre-established procedure. RESULTS: An average number of 13 X-rays was required for wire implantation by the G1 group. G2 group, assisted by the simulator use, required an average of 10 X-rays. A substantial difference was especially observed within the novice sub-group (N), with an average of 12.75 X-rays for the G1 category and an average of 8.5 X-rays for the G2 category
Link: https://arxiv.org/abs/0910.2154
====================================================
Knowledge Elecitation for Factors Affecting Taskforce Productivity using a Questionnaire (Muhammad Sohail - 30 July, 2009)
Education Institutions, Industries and Research etc) in Pakistan. A total 61 responses from these experts were received
Link: https://arxiv.org/abs/0907.5429
====================================================
Acquiring Knowledge for Evaluation of Teachers Performance in Higher Education using a Questionnaire (Hafeez Ullah Amin - 25 June, 2009)
Here we want to depict the problem domain as, how to evaluate teachers performance in higher education through the use of expert system technology. This questionnaire was sent to 87 domain experts within all public and private universities in Pakistani. Among them 25 domain experts sent their valuable opinions. The whole questionnaire was divided into 15 main groups of factors, which were further divided into 99 individual questions
Link: https://arxiv.org/abs/0906.4663
====================================================
The new multimedia educational technologies, used in open and distance learning (Dieter Penteliuc-Cotosman - 23 April, 2009)
Most technologies, briefly presented here, will be implemented in the "ARTeFACt" project - telematic system for vocational education system of open system learning, system which will be officially launched at the end of 2006, in the institutional offer of the Faculty of Arts of the University West of Timisoara
Link: https://arxiv.org/abs/0904.3694
====================================================
Teacher's Evaluation - a Component of Quality Assessment System (Tiberiu Marius Karnyanszky - 3 March, 2009)
Starting from 2006, a national mechanism was created in Romania and all the educational institutions have to apply a concrete algorithm to ensure the internal evaluation, the external evaluation and, the most important, to increase the quality of the educational process
Link: https://arxiv.org/abs/0903.0519
====================================================
Anti Plagiarism Application with Algorithm Karp-Rabin at Thesis in Gunadarma University (A. B. Mutiara - 26 November, 2008)
In education world, plagiarism perpetrator can get the devil to pay from school/university. In this paper, an application have been developed in order to check and look for 5 type percentage similarity from a thesis with other one at certain part or chapters. Percentage got that is 0%, under 15%, between 15-50%, up to 50% and 100%
Link: https://arxiv.org/abs/0811.4349
====================================================
Overview and main results of the DidaTab project (Francois-Marie Blondel - 21 September, 2008)
Our main result is that the use of spreadsheet during secondary education (grade 6 to 12) is rather sparse for school work (and even more seldom at home) and that student competencies are weak
Link: https://arxiv.org/abs/0809.3612
====================================================
How applicable is Python as first computer language for teaching programming in a pre-university educational environment, from a teacher's point of view? (Fotis Georgatos - 9 September, 2008)
This is done by examining computer language evolution history, related scientific background work, the existing educational research on computer languages and Python's experimental application in higher secondary education in Greece, during first half of year 2002
Link: https://arxiv.org/abs/0809.1437
====================================================
Cross-concordances: terminology mapping and its effectiveness for information retrieval (Philipp Mayr - 23 June, 2008)
The German Federal Ministry for Education and Research funded a major terminology mapping initiative, which found its conclusion in 2007. 64 crosswalks with more than 500,000 relations were established
Link: https://arxiv.org/abs/0806.3765
====================================================
Instrumented Collective Learning Situations (ICLS): the Gap between Theoretical Research and Observed Practices (Christine Michel - 19 July, 2007)
By a survey on 13 fields in higher education in France, Switzerland and Canada, we present how ICLS are designed and how teachers used them
Link: https://arxiv.org/abs/0707.2934
====================================================
Using Genetic Algorithms to Optimise Rough Set Partition Sizes for HIV Data Analysis (Bodie Crossingham - 17 May, 2007)
Six demographic variables were used in the analysis, these variables are; race, age of mother, education, gravidity, parity, and age of father, with the outcome or decision being either HIV positive or negative. The prediction accuracy of equal width bin partitioning is 57.7% while the accuracy achieved after optimising the partitions is 72.8%
Link: https://arxiv.org/abs/0705.2485
====================================================
SkyServer Traffic Report - The First Five Years (Vik Singh - 26 January, 2007)
The analysis shows (1) the site's popularity, (2) the educational website that delivered nearly fifty thousand hours of interactive instruction, (3) the relative use of interactive, programmatic, and batch-local access, (4) the success of offering ad-hoc SQL, personal database, and batch job access to scientists as part of the data publication, (5) the continuing interest in "old" datasets, (6) the usage of SQL constructs, and (7) a novel approach of using the corpus of correct SQL queries to suggest similar but correct statements when a user presents an incorrect SQL statement.
Link: https://arxiv.org/abs/cs/0701173
====================================================
Ten-Year Cross-Disciplinary Comparison of the Growth of Open Access and How it Increases Research Citation Impact (C. Hajjem - 15 August, 2006)
We tested 1,307,038 articles published across 12 years (1992-2003) in 10 disciplines (Biology, Psychology, Sociology, Health, Political Science, Economics, Education, Law, Business, Management). A robot trawls the Web for full-texts using reference metadata ISI citation data (signal detectability d'=2.45; bias = 0.52). Percentage OA (relative to total OA + NOA) articles varies from 5%-16% (depending on discipline, year and country) and is slowly climbing annually (correlation r=.76, sample size N=12, probability p < 0.005). Comparing OA and NOA articles in the same journal/year, OA articles have consistently more citations, the advantage varying from 36%-172% by discipline and year. Comparing articles within six citation ranges (0, 1, 2-3, 4-7, 8-15, 16+ citations), the annual percentage of OA articles is growing significantly faster than NOA within every citation range (r > .90, N=12, p < .0005) and the effect is greater with the more highly cited articles (r = .98, N=6, p < .005). Causality cannot be determined from these data, but our prior finding of a similar pattern in physics, where percent OA is much higher (and even approaches 100% in some subfields), makes it unlikely that the OA citation advantage is merely or mostly a self-selection bias (for making only one's better articles OA)
Link: https://arxiv.org/abs/cs/0606079
====================================================
Improving the CSIEC Project and Adapting It to the English Teaching and Learning in China (Jiyou Jia - 6 February, 2006)
In this paper after short review of the CSIEC project initialized by us in 2003 we present the continuing development and improvement of the CSIEC project in details, including the design of five new Microsoft agent characters representing different virtual chatting partners and the limitation of simulated dialogs in specific practical scenarios like graduate job application interview, then briefly analyze the actual conditions and features of its application field: web-based English education in China
Link: https://arxiv.org/abs/cs/0602018
====================================================
Telling Great Stories: An NSDL Content and Communications System for Aggregation, Display, and Distribution of News and Features (Carol Minton Morris - 19 October, 2005)
This paper argues that a dynamic narrative flow [1] is enabled by effective management of complex content and communications in a decentralized web-based education digital library making publishing objects such as aggregations of resources, or selected parts of objects [4] accessible through a Content and Communications System. Providing services that encourage patrons to reuse, reflect out, and contribute resources back [5] to the Library increases the reach and impact of the National Science Digital Library (NSDL)
Link: https://arxiv.org/abs/cs/0509094
====================================================
The MammoGrid Project Grids Architecture (Richard McClatchey - 16 June, 2003)
Using the MammoGrid clinicians will be able to harness the use of massive amounts of medical image data to perform epidemiological studies, advanced image processing, radiographic education and ultimately, tele-diagnosis over communities of medical "virtual organisations". This is achieved through the use of Grid-compliant services [1] for managing (versions of) massively distributed files of mammograms, for handling the distributed execution of mammograms analysis software, for the development of Grid-aware algorithms and for the sharing of resources between multiple collaborating medical centres
Link: https://arxiv.org/abs/cs/0306095
====================================================
Model Cards for Model Reporting (Margaret Mitchell - 5 October, 2018)
Trained machine learning models are increasingly used to perform high-impact tasks in areas such as law enforcement, medicine, education, and employment
Link: https://arxiv.org/abs/1810.03993
====================================================
From Simulation to Real-World Robotic Mobile Fulfillment Systems (Lin Xie - 8 October, 2018)
The XOR-bench enables the RMFS to be integrated with several mini-robots and mobile industrial robots in (removed) experiments for the purpose of research and education.
Link: https://arxiv.org/abs/1810.03643
====================================================
Hummingbird: An Open-Source Dual-Rotor Tail-Sitter Platform for Research and Education (Yilun Wu - 7 October, 2018)
Our open-source release includes all of the design documents, software resources, and simulation tools needed to build and fly a high-performance tail-sitter for research and educational purposes
Link: https://arxiv.org/abs/1810.03196
====================================================
Wikistat 2.0: Educational Resources for Artificial Intelligence (Philippe Besse - 28 September, 2018)
Which artificial intelligence is mostly concerned by the job offers? Which methodologies and technologies should be favored in the training pprograms? Which objectives, tools and educational resources do we needed to put in place to meet these pressing needs? We answer these questions in describing the contents and operational ressources in the Data Science orientation of the speciality Applied Mathematics at INSA Toulouse. This explains the structuring of the educational site https://github.com/wikistat/ into a set of tutorials
Link: https://arxiv.org/abs/1810.02688
====================================================
Are Children Well-Supported by Their Parents Concerning Online Privacy Risks, and Who Supports the Parents? (Jun Zhao - 28 September, 2018)
Tablet computers are becoming ubiquitously available at home or school for young children to complement education or entertainment
Link: https://arxiv.org/abs/1809.10944
====================================================
On the Use of Metacognitive Evidence in Feedback-free Situations: Advice-taking and Trust Formation (Niccolo Pescetelli - 27 September, 2018)
Specifically, these processes are hypothesized to be particularly important in situations where objective feedback is difficult to acquire, which are abundant in our everyday life (e.g., political, educational and health related matters)
Link: https://arxiv.org/abs/1809.10453
====================================================
Personalized Education at Scale (Sam Saarinen - 24 September, 2018)
Adapting presentations to the educational needs of an individual has traditionally been the domain of experts, making it expensive and logistically challenging to do at scale, and also leading to inequity in educational outcomes. We propose that emerging technologies in reinforcement learning (RL), as well as semi-supervised learning, natural language processing, and computer vision are critical to leveraging this data to provide personalized education at scale.
Link: https://arxiv.org/abs/1809.10025
====================================================
The use of Virtual Reality in Enhancing Interdisciplinary Research and Education (Tiffany Leung - 23 September, 2018)
It investigates the promises of VR in interdisciplinary education and research. The main contributions of this study are (i) literature review of theories of learning underlying the justification of the use of VR systems in education, (ii) taxonomy of the various types and implementations of VR systems and their application in supporting education and research (iii) evaluation of educational applications of VR from a broad range of disciplines, (iv) investigation of how the learning process and learning outcomes are affected by VR systems, and (v) comparative analysis of VR and traditional methods of teaching in terms of quality of learning
Link: https://arxiv.org/abs/1809.08585
====================================================
Clustering students' open-ended questionnaire answers (Wilhelmiina Hämäläinen - 19 September, 2018)
Open responses form a rich but underused source of information in educational data mining and intelligent tutoring systems
Link: https://arxiv.org/abs/1809.07306
====================================================
Towards Dialogue-based Navigation with Multivariate Adaptation driven by Intention and Politeness for Social Robots (Chandrakant Bothe - 19 September, 2018)
Service robots need to show appropriate social behavior in order to deploy in social environments such as healthcare, education, retail, etc
Link: https://arxiv.org/abs/1809.07269
====================================================
On the Maintenance of Classic Modula-2 Compilers (Benjamin Kowarsch - 19 September, 2018)
Many of these are still valuable resources in computer science education today
Link: https://arxiv.org/abs/1809.07080
====================================================
Time Series Analysis of Clickstream Logs from Online Courses (Yohan Jo - 11 September, 2018)
Transferring traditional educational resources to online contexts has become an increasingly relevant problem in recent years
Link: https://arxiv.org/abs/1809.04177
====================================================
The LKPY Package for Recommender Systems Experiments: Next-Generation Tools and Lessons Learned from the LensKit Project (Michael D. Ekstrand - 10 September, 2018)
We have successfully used the software in a wide range of recommender systems experiments, to support education in traditional classroom and online settings, and as the algorithmic backend for user-facing recommendation services in movies and books. In response to these challenges, we are developing a new set of tools that leverage the PyData stack to enable the kinds of research experiments and educational experiences that we have been able to deliver with LensKit, along with new experimental structures that the existing code makes difficult
Link: https://arxiv.org/abs/1809.03125
====================================================
What indicators matter? The Analysis of Perception toward Research Assessment Indicators and Leiden Manifesto- The Case Study of Taiwan (Carey Ming-Li Chen - 9 September, 2018)
Hence, it is important to initiate the education of informetrics to all of the stakeholders in research evaluation so that the misuse and abuse of bibliometric indicators may possibly not happen again, and the bibliometric analysis is able to turn to contextualization-based analysis in the future.
Link: https://arxiv.org/abs/1809.02953
====================================================
Zero Shot Learning for Code Education: Rubric Sampling with Deep Learning Inference (Mike Wu - 5 September, 2018)
But what about those first hundred thousand students? In most educational contexts (i.e. We demonstrate our results on a novel dataset from Code.org, the world's largest programming education platform.
Link: https://arxiv.org/abs/1809.01357
====================================================
Pillar Universities in Russia: The Rise of "the Second Wave" (Tatiana Lisitskaya - 1 September, 2018)
We study progress of the initial phase of such universities, named "pillar" in Russian education system
Link: https://arxiv.org/abs/1809.00248
====================================================
InfoInternet for Education in the Global South: A Study of Applications Enabled by Free Information-only Internet Access in Technologically Disadvantaged Areas (authors' version) (Johanna Johansen - 28 August, 2018)
This paper summarises our work on studying educational applications enabled by the introduction of a new information layer called InfoInternet. In this paper we identify and describe characteristics of educational applications, their specific users, and learning environment
Link: https://arxiv.org/abs/1808.09496
====================================================
Using SWISH to realise interactive web based tutorials for logic based languages (Jan Wielemaker - 24 August, 2018)
This approach is particularly suitable for capturing data analysis workflows and creating interactive educational material
Link: https://arxiv.org/abs/1808.08042
====================================================
Response Collector: A Video Learning System for Flipped Classrooms (Hayato Okumoto - 22 August, 2018)
The flipped classroom has become famous as an effective educational method that flips the purpose of classroom study and homework
Link: https://arxiv.org/abs/1808.07227
====================================================
Mechanisms for Resilient Video Transmission (Roger Immich - 20 August, 2018)
Real-time video services over these networks are becoming a part of everyday life and have been used to spread information ranging from education to entertainment content
Link: https://arxiv.org/abs/1808.06722
====================================================
The Effect of Security Education and Expertise on Security Assessments: the Case of Software Vulnerabilities (Luca Allodi - 20 August, 2018)
Our results provide some structural insights into the complex relationship between education or experience of assessors and the quality of their assessments. In particular we find that individual characteristics matter more than professional experience or formal education; apparently it is the \emph{combination} of skills that one owns (including the actual knowledge of the system under study), rather than the specialization or the years of experience, to influence more the assessment quality
Link: https://arxiv.org/abs/1808.06547
====================================================
The Potential of Using Google Expeditions and Google Lens Tools under STEM-education in Ukraine (Yevhenii B. Shapovalov - 8 August, 2018)
There determined that augmented reality tools can improve students motivation to learn and correspond to trends of STEM-education. However, there problems of using of augmented reality platforms, such as the lack of awareness of this system by teachers, the lack of guidance, the absence of the Ukrainian-language interface and responding of educational programs of the Ministry of Education and Science of Ukraine
Link: https://arxiv.org/abs/1808.06465
====================================================
Rock bottom, the world, the sky: Catrobat, an extremely large-scale and long-term visual coding project relying purely on smartphones (Kirshan Kumar Luhana - 19 August, 2018)
We also have created a plethora of extensions, e.g., for various educational robots, including Lego Mindstorms and flying Parrot quadcopters ("the sky"), as well as for controlling arbitrary external devices through Arduino or Raspberry Pi boards, going up to the stratosphere and even beyond to interplanetary space ("the sky")
Link: https://arxiv.org/abs/1808.06292
====================================================
New Approaches and Trends in the Philosophy of Educational Technology for Learning and Teaching Environments (Ismail Ipek - 18 August, 2018)
To develop a high-quality learning environment, we will explain technology design steps and practice in order to improve the learning of tasks, complex cognitive skills, attitudes, motivations and competencies in the future trends of educational technology. At the end of the study, integrated technologies in e-learning were discussed and presented, based on foundations of IDT and the philosophy of educational technology.
Link: https://arxiv.org/abs/1808.06063
====================================================
Embedded EthiCS: Integrating Ethics Broadly Across Computer Science Education (Barbara J. Grosz - 16 August, 2018)
This paper presents Embedded EthiCS, a novel approach to integrating ethics into computer science education that incorporates ethical reasoning throughout courses in the standard computer science curriculum
Link: https://arxiv.org/abs/1808.05686
====================================================
Blended learning models (Andrii M. Striuk - 7 August, 2018)
The article presents the authors' organizational model of blended learning on the basis of existing models of learning at higher educational establishments
Link: https://arxiv.org/abs/1808.04893
====================================================
Bringing Together Dynamic Geometry Software and the Graphics Processing Unit (Aaron Montag - 14 August, 2018)
This interplay of DGS and GPU opens up various applications in education and mathematical research
Link: https://arxiv.org/abs/1808.04579
====================================================
An Integrated Design and Simulation Environment for Rapid Prototyping of Laminate Robotic Mechanisms (Roozbeh Khodambashi - 10 August, 2018)