├── README.md ├── code ├── feature1.py ├── feature2.py ├── lgb1.py ├── lgb2.py ├── nffm_lgb.py └── utils.py ├── data └── put_dataset_here ├── result └── .gitignore └── temp └── .gitignore /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunaQiu/kedaxunfei2018/HEAD/README.md -------------------------------------------------------------------------------- /code/feature1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunaQiu/kedaxunfei2018/HEAD/code/feature1.py -------------------------------------------------------------------------------- /code/feature2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunaQiu/kedaxunfei2018/HEAD/code/feature2.py -------------------------------------------------------------------------------- /code/lgb1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunaQiu/kedaxunfei2018/HEAD/code/lgb1.py -------------------------------------------------------------------------------- /code/lgb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunaQiu/kedaxunfei2018/HEAD/code/lgb2.py -------------------------------------------------------------------------------- /code/nffm_lgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunaQiu/kedaxunfei2018/HEAD/code/nffm_lgb.py -------------------------------------------------------------------------------- /code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunaQiu/kedaxunfei2018/HEAD/code/utils.py -------------------------------------------------------------------------------- /data/put_dataset_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /result/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /temp/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !.gitignore 3 | --------------------------------------------------------------------------------