the 28th acm international conference on information and
play

The 28th ACM International Conference on Information and Knowledge - PowerPoint PPT Presentation

The 28th ACM International Conference on Information and Knowledge Management (CIKM 2019) Reporter: Zhenya Huang Date: 2019.11.04 Anhui Province Key Laboratory of Big Data Analysis and Application 1 Outline Background 1 Problem Definition


  1. The 28th ACM International Conference on Information and Knowledge Management (CIKM 2019) Reporter: Zhenya Huang Date: 2019.11.04 Anhui Province Key Laboratory of Big Data Analysis and Application 1

  2. Outline Background 1 Problem Definition 2 Framework 3 Experiment 4 Conclusion & Future work 5 Anhui Province Key Laboratory of Big Data Analysis and Application 2

  3. Background Ø Online Education Systems become more and more popular Ø Abundant learning materials Ø E.g., exercise, course, video Ø Personalized learning service Ø Students can learn on their own pace Ø Various platforms Ø MOOC Ø Intelligent Tutoring System Ø Online Judging System Anhui Province Key Laboratory of Big Data Analysis and Application 3

  4. Recommendation Ø Recommender systems Ø Suggest suitable exercises instead of letting students self-seeking Ø Interactive systems between agent vs. student Ø Key problem Ø Design an optimal strategy (algorithm) that can recommend the best exercise for each student at the right time recommendation Agent Student feedback Anhui Province Key Laboratory of Big Data Analysis and Application 4

  5. Related work Ø Traditional recommendation for online learning Ø Basic idea: Ø Try to discover the weakness of students Ø Recommend the exercises that students may not learned well Ø Existing methods Ø Educational psychology Ø Cognitive diagnosis studies Ø Traditional Q learning algorithm Ø Data-driven algorithm Ø Content-based methods Ø Collaborative filtering Ø Deep neural networks Anhui Province Key Laboratory of Big Data Analysis and Application 5

  6. Related work Ø Limitation Ø Single objective Ø Target at specific concepts with repeating exercising Ø Recommending non-mastered exercises Ø Always too hard Ø Student lose learning interests Function Function Function Function What kinds of objectives should we concern in exercise recommendation? Anhui Province Key Laboratory of Big Data Analysis and Application 6

  7. Exercise Recommendation Ø Multiple Objectives Ø Review & Explore Ø Review non-mastered concept vs. Seek new knowledge Ø Smoothness Ø Continuous recommendations on difficulty levels can not vary dramatically Ø Engagement Ø Keep learning Ø Some are challenging but some are “gifts’’ Anhui Province Key Laboratory of Big Data Analysis and Application 7

  8. Exercise Recommendation Ø Challenges Ø How to define multiple objectives? Ø Review & Explore Ø Smoothness Ø Engagement Ø How to enable flexible recommendations with considering above objectives simultaneously? Ø How to track students’ learning states Ø How to quantify the objectives Ø Large space of exercise candidates Anhui Province Key Laboratory of Big Data Analysis and Application 8

  9. Outline Background 1 Problem Definition 2 Framework 3 Experiment 4 Conclusion & Future work 5 Anhui Province Key Laboratory of Big Data Analysis and Application 9

  10. Problem Definition Ø Given: Ø Student: exercising record Ø Exercise: triplet Ø Content: c is word sequence, Ø Knowledge (concept): (e.g., Function) Ø Difficulty level: d is the error rate, i.e., the percentage of students who answer exercise e wrong Ø Markov Decision Process (MDP) Ø State ! " : the exercising history of the student Ø Action # " : recommend an exercise $ "%& based on State ! " Ø Reward r ! " , # " : consider multiple objectives based on the performance feedback Ø Transition T: function: ( × + → ( , mapping state ! " to state ! "%& Ø Goal: Ø Find an optimal policy π : S → A of recommending exercises to students, which maximizes the multi-objective rewards. Anhui Province Key Laboratory of Big Data Analysis and Application 10

  11. Outline Background 1 Problem Definition 2 Framework 3 Experiment 4 Conclusion & Future work 5 Anhui Province Key Laboratory of Big Data Analysis and Application 11

  12. DRE framework Ø At a glance Ø Deep reinforcement learning (Q-learning) framework Ø Exercise Q-network (EQN) Ø Estimate Q-values, generate exercise recommendation (taking action) Ø Track student learning states Ø Extract exercise semantics Ø Two Implementations Ø EQNM with Markov property Ø EQNR with Recurrent manner Ø Multi-objective Rewards Ø Review & Explore Ø Smoothness Ø Engagement Ø Off-policy training Anhui Province Key Laboratory of Big Data Analysis and Application 12

  13. DRE framework Ø Optimization Objective Ø Future rewards ! " of state-action pair (s, a): Ø Optimal action-value function Ø Compute the Q-values for all a ′ ∈ A is infeasible Ø Estimate and store all state-action pairs (large exercise candidates) Ø Update all Q-values (student practices very few exercises) Ø Solution Ø Exercise Q-Network: as a network approximator θ Ø Minimize the objective function to estimate this network. Anhui Province Key Laboratory of Big Data Analysis and Application 13

  14. DRE framework Ø Exercise Q-Network Ø Goal: estimate the action Q-value Q (s, a) of taking an action a at state s Ø Implement network approximator Ø Key points: Ø Learn the semantics of each exercise Ø Exercise Module Ø Learn the student knowledge states at each step Ø EQNM: Markov property Ø EQNR: Recurrent manner Anhui Province Key Laboratory of Big Data Analysis and Application 14

  15. Exercise Q-Network Ø Exercise Module Ø Goal: learn the semantics of each exercise Ø Combination with knowledge, content and difficulty Content embedding Knowledge embedding Anhui Province Key Laboratory of Big Data Analysis and Application 15

  16. Exercise Q-Network Ø Two implements Ø Goal: Learn the student knowledge states at each step Ø Estimate Q value Q(s, a): taking action at step t Ø EQNM: only observe current state Ø EQNR: consider historical state trajectories: n-layer fully-connected layers Current state embedding Anhui Province Key Laboratory of Big Data Analysis and Application 16

  17. Multi-objective rewards Ø Review & Explore Ø Intuition: review non-mastered concept vs. seek new knowledge Ø Review factor: review what they learned not well: punishment ( ! " < 0) Ø Explore factor: suggest to seek diverse concepts: stimulation ( ! # > 0) Ø Smoothness Ø Intuition: two continuous recommendations on difficulty levels should not vary dramatically Ø Negative squared loss Anhui Province Key Laboratory of Big Data Analysis and Application 17

  18. Multi-objective rewards Ø Engagement Ø Intuition: keep learning (interests), avoiding too hard or easy exercises all the time Ø Makes some recommendations are challenging but others seem “gifts” Ø Learning goal g Ø N historical performance ! on average Ø Balance multi-objective rewards Anhui Province Key Laboratory of Big Data Analysis and Application 18

  19. Off-policy training Ø Training with offline logs Learn from other agent policy Experience reply Two separate networks Anhui Province Key Laboratory of Big Data Analysis and Application 19

  20. Outline Background 1 Problem Definition 2 Framework 3 Experiment 4 Conclusion & Future work 5 Anhui Province Key Laboratory of Big Data Analysis and Application 20

  21. Experiment Ø Datasets Ø MATH dataset (high school level) Ø PROGRAM dataset (oj platform) Ø Data analysis Ø Learning session Ø Interval timestamps last more than 24 (10) hours, split them into two sessions Ø Longer sessions have larger concept coverage Ø Longer sessions contain more samples with smaller difficulty differences Ø Longer sessions have exercises with medium difficulty on average Ø https://base.ustc.edu.cn/data/DRE/ Anhui Province Key Laboratory of Big Data Analysis and Application 21

  22. Experiment Ø Offline Evaluation (Point-wise recommendation) Ø We evaluate methods on logged data Ø Static Ø Only contained pairs of student-exercise performance that had been recorded Ø Just know students’ final scores on exercise Ø Ranking problem Ø For student: rank an exercise list at a particular time Ø Based on performance: from bad to good Ø Data partition: for each sequence, 70% training, 30% testing Ø DRE framework: Ø Baseline: Ø Cognitive diagnosis: IRT Ø Recommender system: PMF, FM Ø Deep learning: DKT, DKVMN Ø Reinforcement learning: DQN Anhui Province Key Laboratory of Big Data Analysis and Application 22

  23. Experiment Ø Offline Evaluation (Point-wise recommendation) Ø DRER and DREM generate accurate recommendations Ø EQN > DQN: EQN well capture the state presentations of students Ø DRER > DREM: EQNR can track the long-term dependency Anhui Province Key Laboratory of Big Data Analysis and Application 23

  24. Experiment Ø Online Evaluation (Sequence-wise recommendation) Ø We evaluate methods in a simulated environment Ø Implement a student simulator Ø Real-time interaction Ø Sequential recommendation scenario Ø For student: provide the best exercise step by step Ø Evaluate the effectiveness on three rewards (multiple objectives) Ø Preliminaries Ø Student simulator: EERNN (state-of-the-art) Ø Data partition: 50% for training simulator, 50% for training DRE framework Anhui Province Key Laboratory of Big Data Analysis and Application 24

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend