├── 2018易观A10大数据应用峰会-RNG_终极版.pptx ├── README.md ├── THLUO ├── 1.w2c_model_start.py ├── 10.age_bin_prob_oof.py ├── 11.hcc_device_brand_age_sex.py ├── 12.device_age_regression_prob_oof.py ├── 13.device_start_GRU_pred.py ├── 14.device_start_GRU_pred_age.py ├── 15.device_all_GRU_pred.py ├── 16.device_start_capsule_pred.py ├── 17.device_start_textcnn_pred.py ├── 18.device_start_text_dpcnn_pred.py ├── 19.device_start_lstm_pred.py ├── 2.w2c_model_close.py ├── 20.lgb_sex_age_prob_oof.py ├── 21.tfidf_lr_sex_age_prob_oof.py ├── 22.base_feat.py ├── 23.ATT_v6.py ├── 24.thluo_22_lgb.py ├── 25.thluo_22_xgb.py ├── 26.thluo_nb_lgb.py ├── 27.thluo_nb_xgb.py ├── 28.final.py ├── 3.device_quchong_start_app_w2c.py ├── 3.w2c_all_emb.py ├── 3.w2c_model_all.py ├── 4.device_age_prob_oof.py ├── 5.device_sex_prob_oof.py ├── 6.start_close_age_prob_oof.py ├── 7.start_close_sex_prob_oof.py ├── 9.sex_age_bin_prob_oof.py ├── TextModel.py ├── readme.md ├── util.py └── 代码运行.bat ├── chizhu ├── readme.txt ├── single_model │ ├── .DS_Store │ ├── cnn.py │ ├── config.py │ ├── data │ │ └── .DS_Store │ ├── deepnn.py │ ├── get_nn_feat.py │ ├── lgb.py │ ├── user_behavior.py │ ├── xgb.py │ ├── xgb_nb.py │ └── yg_best_nn.py ├── stacking │ ├── .DS_Store │ ├── all_feat │ │ ├── .DS_Store │ │ └── xgb__nurbs_nb.ipynb │ └── nurbs_feat │ │ ├── .DS_Store │ │ ├── xgb_22.py │ │ └── xgb__nurbs_nb.py └── util │ ├── bagging.py │ └── get_nn_res.py ├── linwangli ├── code │ ├── lgb_allfeat_22.py │ ├── lgb_allfeat_condProb.py │ └── utils.py ├── readme.txt ├── result │ └── .DS_Store ├── yg-1st-lgb.py └── 融合思路.pptx ├── nb_cz_lwl_wcm ├── 10_lgb.py ├── 11_cnn.py ├── 12_get_feature_lwl.py ├── 13_last_get_all_feature.py ├── 1_get_age_reg.py ├── 2_get_feature_brand.py ├── 3_get_feature_device_package.py ├── 4_get_feature_device_start_close_tfidf_1_2.py ├── 5_get_feature_device_start_close_tfidf.py ├── 6_get_feature_device_start_close.py ├── 7_get_feature_w2v.py ├── 8_get_feature_lwl.py ├── 9_yg_best_nn.py └── 运行说明.txt └── wangcanming └── deepnet_v33.py /2018易观A10大数据应用峰会-RNG_终极版.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/2018易观A10大数据应用峰会-RNG_终极版.pptx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/README.md -------------------------------------------------------------------------------- /THLUO/1.w2c_model_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/1.w2c_model_start.py -------------------------------------------------------------------------------- /THLUO/10.age_bin_prob_oof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/10.age_bin_prob_oof.py -------------------------------------------------------------------------------- /THLUO/11.hcc_device_brand_age_sex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/11.hcc_device_brand_age_sex.py -------------------------------------------------------------------------------- /THLUO/12.device_age_regression_prob_oof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/12.device_age_regression_prob_oof.py -------------------------------------------------------------------------------- /THLUO/13.device_start_GRU_pred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/13.device_start_GRU_pred.py -------------------------------------------------------------------------------- /THLUO/14.device_start_GRU_pred_age.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/14.device_start_GRU_pred_age.py -------------------------------------------------------------------------------- /THLUO/15.device_all_GRU_pred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/15.device_all_GRU_pred.py -------------------------------------------------------------------------------- /THLUO/16.device_start_capsule_pred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/16.device_start_capsule_pred.py -------------------------------------------------------------------------------- /THLUO/17.device_start_textcnn_pred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/17.device_start_textcnn_pred.py -------------------------------------------------------------------------------- /THLUO/18.device_start_text_dpcnn_pred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/18.device_start_text_dpcnn_pred.py -------------------------------------------------------------------------------- /THLUO/19.device_start_lstm_pred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/19.device_start_lstm_pred.py -------------------------------------------------------------------------------- /THLUO/2.w2c_model_close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/2.w2c_model_close.py -------------------------------------------------------------------------------- /THLUO/20.lgb_sex_age_prob_oof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/20.lgb_sex_age_prob_oof.py -------------------------------------------------------------------------------- /THLUO/21.tfidf_lr_sex_age_prob_oof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/21.tfidf_lr_sex_age_prob_oof.py -------------------------------------------------------------------------------- /THLUO/22.base_feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/22.base_feat.py -------------------------------------------------------------------------------- /THLUO/23.ATT_v6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/23.ATT_v6.py -------------------------------------------------------------------------------- /THLUO/24.thluo_22_lgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/24.thluo_22_lgb.py -------------------------------------------------------------------------------- /THLUO/25.thluo_22_xgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/25.thluo_22_xgb.py -------------------------------------------------------------------------------- /THLUO/26.thluo_nb_lgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/26.thluo_nb_lgb.py -------------------------------------------------------------------------------- /THLUO/27.thluo_nb_xgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/27.thluo_nb_xgb.py -------------------------------------------------------------------------------- /THLUO/28.final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/28.final.py -------------------------------------------------------------------------------- /THLUO/3.device_quchong_start_app_w2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/3.device_quchong_start_app_w2c.py -------------------------------------------------------------------------------- /THLUO/3.w2c_all_emb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/3.w2c_all_emb.py -------------------------------------------------------------------------------- /THLUO/3.w2c_model_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/3.w2c_model_all.py -------------------------------------------------------------------------------- /THLUO/4.device_age_prob_oof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/4.device_age_prob_oof.py -------------------------------------------------------------------------------- /THLUO/5.device_sex_prob_oof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/5.device_sex_prob_oof.py -------------------------------------------------------------------------------- /THLUO/6.start_close_age_prob_oof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/6.start_close_age_prob_oof.py -------------------------------------------------------------------------------- /THLUO/7.start_close_sex_prob_oof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/7.start_close_sex_prob_oof.py -------------------------------------------------------------------------------- /THLUO/9.sex_age_bin_prob_oof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/9.sex_age_bin_prob_oof.py -------------------------------------------------------------------------------- /THLUO/TextModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/TextModel.py -------------------------------------------------------------------------------- /THLUO/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/readme.md -------------------------------------------------------------------------------- /THLUO/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/util.py -------------------------------------------------------------------------------- /THLUO/代码运行.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/THLUO/代码运行.bat -------------------------------------------------------------------------------- /chizhu/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/readme.txt -------------------------------------------------------------------------------- /chizhu/single_model/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/single_model/.DS_Store -------------------------------------------------------------------------------- /chizhu/single_model/cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/single_model/cnn.py -------------------------------------------------------------------------------- /chizhu/single_model/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/single_model/config.py -------------------------------------------------------------------------------- /chizhu/single_model/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/single_model/data/.DS_Store -------------------------------------------------------------------------------- /chizhu/single_model/deepnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/single_model/deepnn.py -------------------------------------------------------------------------------- /chizhu/single_model/get_nn_feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/single_model/get_nn_feat.py -------------------------------------------------------------------------------- /chizhu/single_model/lgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/single_model/lgb.py -------------------------------------------------------------------------------- /chizhu/single_model/user_behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/single_model/user_behavior.py -------------------------------------------------------------------------------- /chizhu/single_model/xgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/single_model/xgb.py -------------------------------------------------------------------------------- /chizhu/single_model/xgb_nb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/single_model/xgb_nb.py -------------------------------------------------------------------------------- /chizhu/single_model/yg_best_nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/single_model/yg_best_nn.py -------------------------------------------------------------------------------- /chizhu/stacking/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/stacking/.DS_Store -------------------------------------------------------------------------------- /chizhu/stacking/all_feat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/stacking/all_feat/.DS_Store -------------------------------------------------------------------------------- /chizhu/stacking/all_feat/xgb__nurbs_nb.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/stacking/all_feat/xgb__nurbs_nb.ipynb -------------------------------------------------------------------------------- /chizhu/stacking/nurbs_feat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/stacking/nurbs_feat/.DS_Store -------------------------------------------------------------------------------- /chizhu/stacking/nurbs_feat/xgb_22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/stacking/nurbs_feat/xgb_22.py -------------------------------------------------------------------------------- /chizhu/stacking/nurbs_feat/xgb__nurbs_nb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/stacking/nurbs_feat/xgb__nurbs_nb.py -------------------------------------------------------------------------------- /chizhu/util/bagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/util/bagging.py -------------------------------------------------------------------------------- /chizhu/util/get_nn_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/chizhu/util/get_nn_res.py -------------------------------------------------------------------------------- /linwangli/code/lgb_allfeat_22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/linwangli/code/lgb_allfeat_22.py -------------------------------------------------------------------------------- /linwangli/code/lgb_allfeat_condProb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/linwangli/code/lgb_allfeat_condProb.py -------------------------------------------------------------------------------- /linwangli/code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/linwangli/code/utils.py -------------------------------------------------------------------------------- /linwangli/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/linwangli/readme.txt -------------------------------------------------------------------------------- /linwangli/result/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/linwangli/result/.DS_Store -------------------------------------------------------------------------------- /linwangli/yg-1st-lgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/linwangli/yg-1st-lgb.py -------------------------------------------------------------------------------- /linwangli/融合思路.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/linwangli/融合思路.pptx -------------------------------------------------------------------------------- /nb_cz_lwl_wcm/10_lgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/nb_cz_lwl_wcm/10_lgb.py -------------------------------------------------------------------------------- /nb_cz_lwl_wcm/11_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/nb_cz_lwl_wcm/11_cnn.py -------------------------------------------------------------------------------- /nb_cz_lwl_wcm/12_get_feature_lwl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/nb_cz_lwl_wcm/12_get_feature_lwl.py -------------------------------------------------------------------------------- /nb_cz_lwl_wcm/13_last_get_all_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/nb_cz_lwl_wcm/13_last_get_all_feature.py -------------------------------------------------------------------------------- /nb_cz_lwl_wcm/1_get_age_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/nb_cz_lwl_wcm/1_get_age_reg.py -------------------------------------------------------------------------------- /nb_cz_lwl_wcm/2_get_feature_brand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/nb_cz_lwl_wcm/2_get_feature_brand.py -------------------------------------------------------------------------------- /nb_cz_lwl_wcm/3_get_feature_device_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/nb_cz_lwl_wcm/3_get_feature_device_package.py -------------------------------------------------------------------------------- /nb_cz_lwl_wcm/4_get_feature_device_start_close_tfidf_1_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/nb_cz_lwl_wcm/4_get_feature_device_start_close_tfidf_1_2.py -------------------------------------------------------------------------------- /nb_cz_lwl_wcm/5_get_feature_device_start_close_tfidf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/nb_cz_lwl_wcm/5_get_feature_device_start_close_tfidf.py -------------------------------------------------------------------------------- /nb_cz_lwl_wcm/6_get_feature_device_start_close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/nb_cz_lwl_wcm/6_get_feature_device_start_close.py -------------------------------------------------------------------------------- /nb_cz_lwl_wcm/7_get_feature_w2v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/nb_cz_lwl_wcm/7_get_feature_w2v.py -------------------------------------------------------------------------------- /nb_cz_lwl_wcm/8_get_feature_lwl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/nb_cz_lwl_wcm/8_get_feature_lwl.py -------------------------------------------------------------------------------- /nb_cz_lwl_wcm/9_yg_best_nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/nb_cz_lwl_wcm/9_yg_best_nn.py -------------------------------------------------------------------------------- /nb_cz_lwl_wcm/运行说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/nb_cz_lwl_wcm/运行说明.txt -------------------------------------------------------------------------------- /wangcanming/deepnet_v33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chizhu/yiguan_sex_age_predict_1st_solution/HEAD/wangcanming/deepnet_v33.py --------------------------------------------------------------------------------