├── .idea └── vcs.xml ├── README.md ├── gbdt_run.sh ├── models ├── lgb.py ├── run_tf_nfm.py ├── run_tf_nfm_by_part.py ├── tf_NFM.py └── xgb.py ├── run.sh ├── src └── converters │ ├── combine_and_shuffle.py │ ├── ensemble.py │ ├── lgb_analyze_importance.py │ ├── make_submission.py │ ├── norm_ensemble.py │ ├── pre-csv.py │ ├── pre-dnn.py │ └── pre-gbdt.py └── utils ├── __init__.py ├── args.py ├── args2.py ├── args3.py ├── donal_args.py ├── nzc_args.py └── tencent_data_func.py /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/README.md -------------------------------------------------------------------------------- /gbdt_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/gbdt_run.sh -------------------------------------------------------------------------------- /models/lgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/models/lgb.py -------------------------------------------------------------------------------- /models/run_tf_nfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/models/run_tf_nfm.py -------------------------------------------------------------------------------- /models/run_tf_nfm_by_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/models/run_tf_nfm_by_part.py -------------------------------------------------------------------------------- /models/tf_NFM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/models/tf_NFM.py -------------------------------------------------------------------------------- /models/xgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/models/xgb.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/run.sh -------------------------------------------------------------------------------- /src/converters/combine_and_shuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/src/converters/combine_and_shuffle.py -------------------------------------------------------------------------------- /src/converters/ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/src/converters/ensemble.py -------------------------------------------------------------------------------- /src/converters/lgb_analyze_importance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/src/converters/lgb_analyze_importance.py -------------------------------------------------------------------------------- /src/converters/make_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/src/converters/make_submission.py -------------------------------------------------------------------------------- /src/converters/norm_ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/src/converters/norm_ensemble.py -------------------------------------------------------------------------------- /src/converters/pre-csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/src/converters/pre-csv.py -------------------------------------------------------------------------------- /src/converters/pre-dnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/src/converters/pre-dnn.py -------------------------------------------------------------------------------- /src/converters/pre-gbdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/src/converters/pre-gbdt.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/utils/args.py -------------------------------------------------------------------------------- /utils/args2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/utils/args2.py -------------------------------------------------------------------------------- /utils/args3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/utils/args3.py -------------------------------------------------------------------------------- /utils/donal_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/utils/donal_args.py -------------------------------------------------------------------------------- /utils/nzc_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/utils/nzc_args.py -------------------------------------------------------------------------------- /utils/tencent_data_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzc/tencent-contest/HEAD/utils/tencent_data_func.py --------------------------------------------------------------------------------