├── README.md ├── run_nn.sh └── src ├── __pycache__ └── nffm.cpython-35.pyc ├── input └── README.md ├── load_vowpal.py ├── make_dataset.py ├── make_feature.py ├── nffm.py ├── train.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyunluo/Tencent2018_Lookalike_Rank10th/HEAD/README.md -------------------------------------------------------------------------------- /run_nn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyunluo/Tencent2018_Lookalike_Rank10th/HEAD/run_nn.sh -------------------------------------------------------------------------------- /src/__pycache__/nffm.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyunluo/Tencent2018_Lookalike_Rank10th/HEAD/src/__pycache__/nffm.cpython-35.pyc -------------------------------------------------------------------------------- /src/input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyunluo/Tencent2018_Lookalike_Rank10th/HEAD/src/input/README.md -------------------------------------------------------------------------------- /src/load_vowpal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyunluo/Tencent2018_Lookalike_Rank10th/HEAD/src/load_vowpal.py -------------------------------------------------------------------------------- /src/make_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyunluo/Tencent2018_Lookalike_Rank10th/HEAD/src/make_dataset.py -------------------------------------------------------------------------------- /src/make_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyunluo/Tencent2018_Lookalike_Rank10th/HEAD/src/make_feature.py -------------------------------------------------------------------------------- /src/nffm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyunluo/Tencent2018_Lookalike_Rank10th/HEAD/src/nffm.py -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyunluo/Tencent2018_Lookalike_Rank10th/HEAD/src/train.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyunluo/Tencent2018_Lookalike_Rank10th/HEAD/src/utils.py --------------------------------------------------------------------------------