├── README.md ├── dataset └── online_serving │ ├── candidate_item_pool.data │ ├── result_ui_score_for_online_serving │ └── user_behavior.data ├── model_save ├── auc.data-00000-of-00001 ├── auc.index ├── auc.meta └── checkpoint └── src ├── configuration ├── data_prepare.py ├── data_process.py ├── model.py ├── offline_training.py └── online_serving.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinry/IURO/HEAD/README.md -------------------------------------------------------------------------------- /dataset/online_serving/candidate_item_pool.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinry/IURO/HEAD/dataset/online_serving/candidate_item_pool.data -------------------------------------------------------------------------------- /dataset/online_serving/result_ui_score_for_online_serving: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinry/IURO/HEAD/dataset/online_serving/result_ui_score_for_online_serving -------------------------------------------------------------------------------- /dataset/online_serving/user_behavior.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinry/IURO/HEAD/dataset/online_serving/user_behavior.data -------------------------------------------------------------------------------- /model_save/auc.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinry/IURO/HEAD/model_save/auc.data-00000-of-00001 -------------------------------------------------------------------------------- /model_save/auc.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinry/IURO/HEAD/model_save/auc.index -------------------------------------------------------------------------------- /model_save/auc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinry/IURO/HEAD/model_save/auc.meta -------------------------------------------------------------------------------- /model_save/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinry/IURO/HEAD/model_save/checkpoint -------------------------------------------------------------------------------- /src/configuration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinry/IURO/HEAD/src/configuration -------------------------------------------------------------------------------- /src/data_prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinry/IURO/HEAD/src/data_prepare.py -------------------------------------------------------------------------------- /src/data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinry/IURO/HEAD/src/data_process.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinry/IURO/HEAD/src/model.py -------------------------------------------------------------------------------- /src/offline_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinry/IURO/HEAD/src/offline_training.py -------------------------------------------------------------------------------- /src/online_serving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinry/IURO/HEAD/src/online_serving.py --------------------------------------------------------------------------------