├── README.md ├── data ├── featindex.fm.txt ├── featindex.txt ├── fm.model.txt ├── test.fm.txt └── train.fm.txt └── python ├── FNN.py ├── SNN_DAE.py ├── SNN_RBM.py ├── data_fm.py ├── dl_utils.py ├── fm.py ├── sampling_based_denosing_autoencoder.py └── sampling_based_gaussian_binary_rbm_sparse.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnzhang/deep-ctr/HEAD/README.md -------------------------------------------------------------------------------- /data/featindex.fm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnzhang/deep-ctr/HEAD/data/featindex.fm.txt -------------------------------------------------------------------------------- /data/featindex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnzhang/deep-ctr/HEAD/data/featindex.txt -------------------------------------------------------------------------------- /data/fm.model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnzhang/deep-ctr/HEAD/data/fm.model.txt -------------------------------------------------------------------------------- /data/test.fm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnzhang/deep-ctr/HEAD/data/test.fm.txt -------------------------------------------------------------------------------- /data/train.fm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnzhang/deep-ctr/HEAD/data/train.fm.txt -------------------------------------------------------------------------------- /python/FNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnzhang/deep-ctr/HEAD/python/FNN.py -------------------------------------------------------------------------------- /python/SNN_DAE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnzhang/deep-ctr/HEAD/python/SNN_DAE.py -------------------------------------------------------------------------------- /python/SNN_RBM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnzhang/deep-ctr/HEAD/python/SNN_RBM.py -------------------------------------------------------------------------------- /python/data_fm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnzhang/deep-ctr/HEAD/python/data_fm.py -------------------------------------------------------------------------------- /python/dl_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnzhang/deep-ctr/HEAD/python/dl_utils.py -------------------------------------------------------------------------------- /python/fm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnzhang/deep-ctr/HEAD/python/fm.py -------------------------------------------------------------------------------- /python/sampling_based_denosing_autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnzhang/deep-ctr/HEAD/python/sampling_based_denosing_autoencoder.py -------------------------------------------------------------------------------- /python/sampling_based_gaussian_binary_rbm_sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnzhang/deep-ctr/HEAD/python/sampling_based_gaussian_binary_rbm_sparse.py --------------------------------------------------------------------------------