From f7c3a3c84ee9a7040fd59626d63321ec8bf05349 Mon Sep 17 00:00:00 2001 From: hyllll <631774934@qq.com> Date: Thu, 19 Nov 2020 21:22:45 +0800 Subject: [PATCH] update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index adfc90a..f2136ee 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ For clarify, we use MovieLens-100k dataset as a example and treat the BPRMF meth - ### Data preprocess (data_generator.py) - Filter the datasets and split the datasets into training set, validation set and test set. - ### Training the teacher model (run_pair_mf_train.py) - - The teacher model can be well trained by using the historical user-item interaction data. After training, we can get the distilled knowledge (i.e., user and item embeddings as well as the basic recommendation list). + - The teacher model can be well trained by using the historical user-item interaction data. After training, we can get the distilled knowledge (i.e., user and item embeddings as well as the basic recommendation list) from the teacher model. - ### Training the student model (run_trd.py) - We treat the distilled knowledge as the input and adopt the Deep Q-Networks (DQN) [1] as the student model. The student model aims to reinforce and refine the basic recommendation list.