├── .gitignore ├── LICENSE ├── README.md ├── learn.json ├── model.pickle ├── old_puzzles.py ├── pre_rating_methods_comparison.py ├── predictor.py ├── requirements.txt └── test.json /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | venv 3 | .idea 4 | output.csv 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ieshuaganocry/aimchess-puzzle-rating-prediction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ieshuaganocry/aimchess-puzzle-rating-prediction/HEAD/README.md -------------------------------------------------------------------------------- /learn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ieshuaganocry/aimchess-puzzle-rating-prediction/HEAD/learn.json -------------------------------------------------------------------------------- /model.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ieshuaganocry/aimchess-puzzle-rating-prediction/HEAD/model.pickle -------------------------------------------------------------------------------- /old_puzzles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ieshuaganocry/aimchess-puzzle-rating-prediction/HEAD/old_puzzles.py -------------------------------------------------------------------------------- /pre_rating_methods_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ieshuaganocry/aimchess-puzzle-rating-prediction/HEAD/pre_rating_methods_comparison.py -------------------------------------------------------------------------------- /predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ieshuaganocry/aimchess-puzzle-rating-prediction/HEAD/predictor.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ieshuaganocry/aimchess-puzzle-rating-prediction/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ieshuaganocry/aimchess-puzzle-rating-prediction/HEAD/test.json --------------------------------------------------------------------------------