├── .gitignore ├── 2017的腾讯广告社交赛TOP10PPT.zip ├── 2018腾讯算法大赛参赛手册-V4.pdf ├── README.md ├── data.py ├── feature.py ├── ffm.py ├── ffmdata.py ├── forRank.py ├── forVal.py ├── imformation └── README.md ├── lgb.py ├── nn.py ├── nnHelper.py ├── picture ├── top1.png └── top3.pdf ├── test.py └── xlearn_ffm.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/.gitignore -------------------------------------------------------------------------------- /2017的腾讯广告社交赛TOP10PPT.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/2017的腾讯广告社交赛TOP10PPT.zip -------------------------------------------------------------------------------- /2018腾讯算法大赛参赛手册-V4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/2018腾讯算法大赛参赛手册-V4.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/README.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/data.py -------------------------------------------------------------------------------- /feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/feature.py -------------------------------------------------------------------------------- /ffm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/ffm.py -------------------------------------------------------------------------------- /ffmdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/ffmdata.py -------------------------------------------------------------------------------- /forRank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/forRank.py -------------------------------------------------------------------------------- /forVal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/forVal.py -------------------------------------------------------------------------------- /imformation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/imformation/README.md -------------------------------------------------------------------------------- /lgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/lgb.py -------------------------------------------------------------------------------- /nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/nn.py -------------------------------------------------------------------------------- /nnHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/nnHelper.py -------------------------------------------------------------------------------- /picture/top1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/picture/top1.png -------------------------------------------------------------------------------- /picture/top3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/picture/top3.pdf -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/test.py -------------------------------------------------------------------------------- /xlearn_ffm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon234071/2018-/HEAD/xlearn_ffm.py --------------------------------------------------------------------------------