项目作者: upura

项目描述 :
Kaggle Titanic example
高级语言: Python
项目地址: git://github.com/upura/ml-competition-template-titanic.git
创建时间: 2018-12-15T03:34:10Z
项目社区:https://github.com/upura/ml-competition-template-titanic

开源协议:MIT License

下载


ml-competition-template-titanic

Structures

  1. .
  2. ├── configs
  3. └── default.json
  4. ├── data
  5. ├── input
  6. ├── sample_submission.csv
  7. ├── train.csv
  8. └── test.csv
  9. └── output
  10. ├── features
  11. ├── __init__.py
  12. ├── base.py
  13. └── create.py
  14. ├── logs
  15. └── logger.py
  16. ├── models
  17. └── lgbm.py
  18. ├── notebooks
  19. └── eda.ipynb
  20. ├── scripts
  21. └── convert_to_feather.py
  22. ├── utils
  23. └── __init__.py
  24. ├── .gitignore
  25. ├── .pylintrc
  26. ├── LICENSE
  27. ├── README.md
  28. ├── run.py
  29. └── tox.ini

Commands

Change data to feather format

  1. python scripts/convert_to_feather.py

Create features

  1. python features/create.py

Run LightGBM

  1. python run.py

flake8

  1. flake8 .