├── .idea ├── learning_to_rank.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── data ├── __init__.py ├── dev │ └── val.txt ├── model │ └── model.mod ├── plot │ ├── all_feature_importance_1.png │ ├── all_feature_importance_2.png │ ├── multi-dimension_feature_importance.png │ ├── single_feature_importance.png │ ├── tree_plot │ ├── tree_plot.pdf │ └── tree_plot.png ├── test │ ├── leaf.txt │ └── test.txt └── train │ ├── feats.txt │ ├── group.txt │ └── raw_train.txt ├── desktop.ini └── src ├── __init__.py ├── trees ├── __init__.py ├── data.py ├── data_format_read.py ├── lgb_ltr.py ├── ndcg.py └── xgb_ltr.py └── utils └── __init__.py /.idea/learning_to_rank.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |