├── .gitignore ├── LICENSE ├── README.md ├── data └── preprocess.py ├── datasets └── aliexpress.py ├── main.py ├── models ├── aitm.py ├── layers.py ├── metaheac.py ├── mmoe.py ├── omoe.py ├── ple.py ├── sharedbottom.py ├── singletask.py └── test.py └── mtreclib.png /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | target 4 | __pycache__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easezyc/Multitask-Recommendation-Library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easezyc/Multitask-Recommendation-Library/HEAD/README.md -------------------------------------------------------------------------------- /data/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easezyc/Multitask-Recommendation-Library/HEAD/data/preprocess.py -------------------------------------------------------------------------------- /datasets/aliexpress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easezyc/Multitask-Recommendation-Library/HEAD/datasets/aliexpress.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easezyc/Multitask-Recommendation-Library/HEAD/main.py -------------------------------------------------------------------------------- /models/aitm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easezyc/Multitask-Recommendation-Library/HEAD/models/aitm.py -------------------------------------------------------------------------------- /models/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easezyc/Multitask-Recommendation-Library/HEAD/models/layers.py -------------------------------------------------------------------------------- /models/metaheac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easezyc/Multitask-Recommendation-Library/HEAD/models/metaheac.py -------------------------------------------------------------------------------- /models/mmoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easezyc/Multitask-Recommendation-Library/HEAD/models/mmoe.py -------------------------------------------------------------------------------- /models/omoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easezyc/Multitask-Recommendation-Library/HEAD/models/omoe.py -------------------------------------------------------------------------------- /models/ple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easezyc/Multitask-Recommendation-Library/HEAD/models/ple.py -------------------------------------------------------------------------------- /models/sharedbottom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easezyc/Multitask-Recommendation-Library/HEAD/models/sharedbottom.py -------------------------------------------------------------------------------- /models/singletask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easezyc/Multitask-Recommendation-Library/HEAD/models/singletask.py -------------------------------------------------------------------------------- /models/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easezyc/Multitask-Recommendation-Library/HEAD/models/test.py -------------------------------------------------------------------------------- /mtreclib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easezyc/Multitask-Recommendation-Library/HEAD/mtreclib.png --------------------------------------------------------------------------------