Hier auf GitHub:
https://chess-tuning-tools.readthedocs.io/en/latest/index.htmlDort wird Installation und Handhabung erklärt:
In order to be able to start the tuning, first create a python environment and install chess-tuning-tools by typing:
pip install chess-tuning-tools
Furthermore, you need to have cutechess-cli in the path. The tuner will use it to run matches.
To execute the local tuner, simply run:
tune local -c tuning_config.json
Take a look at the usage instructions and the example configurations to learn how to set up the tuning_config.json file.
Hier ein einfaches Anwendungsbeispiel:
   {
       "engines": [
           {
               "command": "engine1",
               "fixed_parameters": {
                   "Threads": 2
               }
           },
           {
               "command": "engine2",
               "fixed_parameters": {
                   "Threads": 4
               }
           }
       ],
       "parameter_ranges": {
           "CPuct": "Real(0.0, 10.0)"
       },
       "engine1_tc": "1+0.1",
       "engine2_tc": "1+0.1",
       "rounds": 20,
       "opening_file": "openings.pgn"
   }