-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtournament.py
44 lines (32 loc) · 1.36 KB
/
tournament.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from itertools import combinations
import kaggle_environments
def run_tournament(list_of_agents):
"""Runs a rock, paper, scissors tournament given a list of agents.
Agents need to be functions that return a number representing a rock (0),
paper(1) or scissors (2).
"""
if not list_of_agents:
print("No agents were provided.")
return
# Create all matches from all possible combinations of agents
matches = combinations(list_of_agents, r=2)
for (agent_A, agent_B) in matches:
print(f"\n\n=== {agent_A.__name__} VS {agent_B.__name__} ===")
is_match_finished = False
while not is_match_finished:
environment = kaggle_environments.make("rps")
match_data = environment.run([agent_A, agent_B])
# Compute the score of the agents
score_A, score_B = [
match_data[-1][id_agent]["reward"]
for id_agent in range(2)
]
# Check if agent A is the winner
if score_A > score_B:
is_match_finished = True
print(f"{agent_A.__name__} wins with {score_A} points")
# Check if agent B is the winner
if score_A < score_B:
is_match_finished = True
print(f"{agent_B.__name__} wins with {score_B} points")
print("\n\n")