├── README.md ├── convert_format.py ├── ctrNet.py ├── data ├── download.sh └── gdown.pl ├── extract_features.py ├── models ├── CIN.py └── base_model.py ├── prepocess.py ├── run.py └── src └── misc_utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoday/ICME2019-CTR/HEAD/README.md -------------------------------------------------------------------------------- /convert_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoday/ICME2019-CTR/HEAD/convert_format.py -------------------------------------------------------------------------------- /ctrNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoday/ICME2019-CTR/HEAD/ctrNet.py -------------------------------------------------------------------------------- /data/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoday/ICME2019-CTR/HEAD/data/download.sh -------------------------------------------------------------------------------- /data/gdown.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoday/ICME2019-CTR/HEAD/data/gdown.pl -------------------------------------------------------------------------------- /extract_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoday/ICME2019-CTR/HEAD/extract_features.py -------------------------------------------------------------------------------- /models/CIN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoday/ICME2019-CTR/HEAD/models/CIN.py -------------------------------------------------------------------------------- /models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoday/ICME2019-CTR/HEAD/models/base_model.py -------------------------------------------------------------------------------- /prepocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoday/ICME2019-CTR/HEAD/prepocess.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoday/ICME2019-CTR/HEAD/run.py -------------------------------------------------------------------------------- /src/misc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guoday/ICME2019-CTR/HEAD/src/misc_utils.py --------------------------------------------------------------------------------