├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md └── workflows │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── AGENTS.md ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── _static │ ├── CTT-Plots.png │ ├── logo.png │ └── plot_example.png ├── authors.rst ├── conf.py ├── contributing.rst ├── faq.myst ├── history.rst ├── index.myst ├── installation.rst ├── make.bat ├── parameters.myst └── usage.myst ├── examples ├── README.rst ├── complete_config.json ├── distributed │ ├── client.json │ └── experiment.json ├── simple_tune.json └── vastai │ ├── README.rst │ ├── config.json │ ├── on-start-script.png │ └── onstart.sh ├── mypy.ini ├── noxfile.py ├── pyproject.toml ├── setup.cfg ├── tests ├── __init__.py ├── test_dbutils.py ├── test_io.py ├── test_local.py ├── test_priors.py ├── test_tune.py └── test_utils.py ├── tune ├── __init__.py ├── cli.py ├── db_workers │ ├── __init__.py │ ├── dbmodels │ │ ├── __init__.py │ │ ├── base_model.py │ │ └── models.py │ ├── tuning_client.py │ ├── tuning_server.py │ └── utils.py ├── io.py ├── local.py ├── plots.py ├── priors.py ├── summary.py └── utils.py └── uv.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: kiudee 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/AGENTS.md -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/CTT-Plots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/docs/_static/CTT-Plots.png -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/_static/plot_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/docs/_static/plot_example.png -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/faq.myst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/docs/faq.myst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.myst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/docs/index.myst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/parameters.myst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/docs/parameters.myst -------------------------------------------------------------------------------- /docs/usage.myst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/docs/usage.myst -------------------------------------------------------------------------------- /examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/examples/README.rst -------------------------------------------------------------------------------- /examples/complete_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/examples/complete_config.json -------------------------------------------------------------------------------- /examples/distributed/client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/examples/distributed/client.json -------------------------------------------------------------------------------- /examples/distributed/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/examples/distributed/experiment.json -------------------------------------------------------------------------------- /examples/simple_tune.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/examples/simple_tune.json -------------------------------------------------------------------------------- /examples/vastai/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/examples/vastai/README.rst -------------------------------------------------------------------------------- /examples/vastai/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/examples/vastai/config.json -------------------------------------------------------------------------------- /examples/vastai/on-start-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/examples/vastai/on-start-script.png -------------------------------------------------------------------------------- /examples/vastai/onstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/examples/vastai/onstart.sh -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/mypy.ini -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit test package for chess_tuning_tools.""" 2 | -------------------------------------------------------------------------------- /tests/test_dbutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tests/test_dbutils.py -------------------------------------------------------------------------------- /tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tests/test_io.py -------------------------------------------------------------------------------- /tests/test_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tests/test_local.py -------------------------------------------------------------------------------- /tests/test_priors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tests/test_priors.py -------------------------------------------------------------------------------- /tests/test_tune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tests/test_tune.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tune/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tune/__init__.py -------------------------------------------------------------------------------- /tune/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tune/cli.py -------------------------------------------------------------------------------- /tune/db_workers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tune/db_workers/__init__.py -------------------------------------------------------------------------------- /tune/db_workers/dbmodels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tune/db_workers/dbmodels/__init__.py -------------------------------------------------------------------------------- /tune/db_workers/dbmodels/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tune/db_workers/dbmodels/base_model.py -------------------------------------------------------------------------------- /tune/db_workers/dbmodels/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tune/db_workers/dbmodels/models.py -------------------------------------------------------------------------------- /tune/db_workers/tuning_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tune/db_workers/tuning_client.py -------------------------------------------------------------------------------- /tune/db_workers/tuning_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tune/db_workers/tuning_server.py -------------------------------------------------------------------------------- /tune/db_workers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tune/db_workers/utils.py -------------------------------------------------------------------------------- /tune/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tune/io.py -------------------------------------------------------------------------------- /tune/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tune/local.py -------------------------------------------------------------------------------- /tune/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tune/plots.py -------------------------------------------------------------------------------- /tune/priors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tune/priors.py -------------------------------------------------------------------------------- /tune/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tune/summary.py -------------------------------------------------------------------------------- /tune/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/tune/utils.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiudee/chess-tuning-tools/HEAD/uv.lock --------------------------------------------------------------------------------