├── .gitignore ├── README.md ├── core ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── blocks.cpython-36.pyc │ └── features.cpython-36.pyc ├── blocks.py ├── features.py └── utils.py ├── datasets └── avazu_1w.txt ├── examples └── ctr_predict.py └── models ├── AFM.py ├── AutoInt.py ├── CCPM.py ├── DCN.py ├── DeepFM.py ├── FGCNN.py ├── FNN.py ├── FiBiNet.py ├── MLR.py ├── NFFM.py ├── NFM.py ├── PNN.py ├── WideAndDeep.py ├── __init__.py ├── __pycache__ ├── DeepFM.cpython-36.pyc ├── FNN.cpython-36.pyc ├── PNN.cpython-36.pyc ├── WideAndDeep.cpython-36.pyc └── __init__.cpython-36.pyc └── xDeepFM.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/core/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/blocks.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/core/__pycache__/blocks.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/features.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/core/__pycache__/features.cpython-36.pyc -------------------------------------------------------------------------------- /core/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/core/blocks.py -------------------------------------------------------------------------------- /core/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/core/features.py -------------------------------------------------------------------------------- /core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/core/utils.py -------------------------------------------------------------------------------- /datasets/avazu_1w.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/datasets/avazu_1w.txt -------------------------------------------------------------------------------- /examples/ctr_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/examples/ctr_predict.py -------------------------------------------------------------------------------- /models/AFM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/AFM.py -------------------------------------------------------------------------------- /models/AutoInt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/AutoInt.py -------------------------------------------------------------------------------- /models/CCPM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/CCPM.py -------------------------------------------------------------------------------- /models/DCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/DCN.py -------------------------------------------------------------------------------- /models/DeepFM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/DeepFM.py -------------------------------------------------------------------------------- /models/FGCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/FGCNN.py -------------------------------------------------------------------------------- /models/FNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/FNN.py -------------------------------------------------------------------------------- /models/FiBiNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/FiBiNet.py -------------------------------------------------------------------------------- /models/MLR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/MLR.py -------------------------------------------------------------------------------- /models/NFFM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/NFFM.py -------------------------------------------------------------------------------- /models/NFM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/NFM.py -------------------------------------------------------------------------------- /models/PNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/PNN.py -------------------------------------------------------------------------------- /models/WideAndDeep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/WideAndDeep.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/__pycache__/DeepFM.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/__pycache__/DeepFM.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/FNN.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/__pycache__/FNN.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/PNN.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/__pycache__/PNN.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/WideAndDeep.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/__pycache__/WideAndDeep.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/xDeepFM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirosora/LightCTR/HEAD/models/xDeepFM.py --------------------------------------------------------------------------------