This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from __future__ import annotations | |
| from collections import deque, namedtuple | |
| import pyspiel | |
| from open_spiel.python.algorithms.evaluate_bots import evaluate_bots | |
| from open_spiel.python.bots.uniform_random import UniformRandomBot | |
| import torch | |
| import torch.nn as nn | |
| import torch.optim as optim | |
| import random | |
| import math |