Two public adjudicators for the Tangled game
Project description
snowdrop-adjudicators
This contains two public adjudicators for the Tangled game, one using the Schrodinger equation and one using simulated annealing. The Schrodinger equation adjudicator matches the ground truth output of the quantum annealer for all problem instances up to the largest sizes I've been able to test (all the terminal states of all the X-Prize graphs except the Mutant C60 graph), whereas the simulated annealing solver, while enormously faster, makes deterministic adjudication errors as described in the X-Prize Phase 1 Submission document. The simulated annealing solver's parameters were chosen to give unbiased sampling of all classically degenerate ground states of the diagonal Ising model part of the Hamiltonian, which fails to accurately compute game scores for some terminal states due to not taking into account order-by-disorder effects.
Using these adjudicators
Both included adjudicators have parameters that you need to set. To see the minimum number and type of
these for both, look at test_schrodinger.py and test_simulated_annealing.py which show how to set these
parameters and how to use the adjudicators themselves. To see the full suite of settable parameters, look at the
schrodinger.py and simulated_annealing.py files.
What will happen if I train an agent using these adjudicators?
If you use the Schrodinger adjudicator, your agent will be learning from the ground truth, but you will be limited to very small graphs, and training could take forever. If you want to go this route, you should enumerate all possible terminal states for your graph, use the Schrodinger adjudicator to adjudicate all of them, and store the results in a lookup table. You can then create a new lookup table adjudicator (see next section) which will then be very fast.
If you use the simulated annealing adjudicator, you will get very fast results, but they will be systematically wrong for some fraction of the terminal states. The more frustration in the ground states of your instance, the more potential there is for getting a wrong answer. If you train an agent using this adjudicator, it will learn from a corrupted reward signal and may perform poorly.
Building your own adjudicators
If you have an idea for how to spoof the quantum annealing hardware more effectively, for example using
tensor networks, you can build your own adjudicator. Just follow the pattern in simulated_annealing.py.
Subclass the Adjudicator base class, define the adjudicator's parameters and a setup method, and then
define your adjudication method. Ensure that the adjudicate method takes a GameState instance as input
and returns an AdjudicationResult object as output.
Important Note: If you want to enter an agent into the $10,000 Mutant $C_{60}$ prize challenge, using output of the D-Wave quantum annealing hardware as part of an adjudicator is strictly forbidden.
Running unit tests
There are two unit tests here, one per adjudicator. If you build a new adjudicator I strongly recommend following the unit test pattern here and adding the exact same type of test for your new adjudicator.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file snowdrop_adjudicators-0.0.8.tar.gz.
File metadata
- Download URL: snowdrop_adjudicators-0.0.8.tar.gz
- Upload date:
- Size: 27.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.11.12 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d0f597a00e6bf8f996333796eae0374fd87aee837d5d6224f69c87acd8885c0
|
|
| MD5 |
5b1abcf9b1f809641ac263b543da28fd
|
|
| BLAKE2b-256 |
08356157a36417a2125b6cfe05507e4da9b4ba5b49cac8f9b3b80deb296fd139
|
File details
Details for the file snowdrop_adjudicators-0.0.8-py3-none-any.whl.
File metadata
- Download URL: snowdrop_adjudicators-0.0.8-py3-none-any.whl
- Upload date:
- Size: 30.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.11.12 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f2b4b97e378511b1b6e83e5a1d96ce2758f08f8dab330020560fbae434ba378
|
|
| MD5 |
b65bd58572aea8350fd0b0cca169ae90
|
|
| BLAKE2b-256 |
6166c6b0d0be9ab76269a477d6b583ddb73eaca58a0d2ecf1bf3820cf94c4df5
|