├── .gitignore ├── README.md ├── book_player ├── execute.py └── query.sql ├── data └── .gitkeep ├── docs └── material_ml.pdf └── model_sub ├── predict ├── etl │ ├── query.sql │ └── query_id.sql └── ml │ ├── api_score.py │ └── batch_score.py └── train ├── etl └── query.sql └── ml ├── lif_curve.png ├── modeling.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/ranked-ml/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/ranked-ml/HEAD/README.md -------------------------------------------------------------------------------- /book_player/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/ranked-ml/HEAD/book_player/execute.py -------------------------------------------------------------------------------- /book_player/query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/ranked-ml/HEAD/book_player/query.sql -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/material_ml.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/ranked-ml/HEAD/docs/material_ml.pdf -------------------------------------------------------------------------------- /model_sub/predict/etl/query.sql: -------------------------------------------------------------------------------- 1 | select * 2 | 3 | from tb_book_players 4 | 5 | where dtRef = '{date}' -------------------------------------------------------------------------------- /model_sub/predict/etl/query_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/ranked-ml/HEAD/model_sub/predict/etl/query_id.sql -------------------------------------------------------------------------------- /model_sub/predict/ml/api_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/ranked-ml/HEAD/model_sub/predict/ml/api_score.py -------------------------------------------------------------------------------- /model_sub/predict/ml/batch_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/ranked-ml/HEAD/model_sub/predict/ml/batch_score.py -------------------------------------------------------------------------------- /model_sub/train/etl/query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/ranked-ml/HEAD/model_sub/train/etl/query.sql -------------------------------------------------------------------------------- /model_sub/train/ml/lif_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/ranked-ml/HEAD/model_sub/train/ml/lif_curve.png -------------------------------------------------------------------------------- /model_sub/train/ml/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/ranked-ml/HEAD/model_sub/train/ml/modeling.py -------------------------------------------------------------------------------- /model_sub/train/ml/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/ranked-ml/HEAD/model_sub/train/ml/train.py --------------------------------------------------------------------------------