├── .gitignore ├── .idea └── final.iml ├── A_fetch_feature.py ├── A_info_dict.py ├── A_model.py ├── A_split_data.py ├── A_valid_and_pred.py └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.xml 3 | -------------------------------------------------------------------------------- /.idea/final.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/763337092/JData-rank37/HEAD/.idea/final.iml -------------------------------------------------------------------------------- /A_fetch_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/763337092/JData-rank37/HEAD/A_fetch_feature.py -------------------------------------------------------------------------------- /A_info_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/763337092/JData-rank37/HEAD/A_info_dict.py -------------------------------------------------------------------------------- /A_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/763337092/JData-rank37/HEAD/A_model.py -------------------------------------------------------------------------------- /A_split_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/763337092/JData-rank37/HEAD/A_split_data.py -------------------------------------------------------------------------------- /A_valid_and_pred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/763337092/JData-rank37/HEAD/A_valid_and_pred.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/763337092/JData-rank37/HEAD/readme.md --------------------------------------------------------------------------------