Create folder mcts for all mcts related files
This commit is contained in:
@@ -6,8 +6,8 @@ from torch import distributions as dist
|
||||
import chess
|
||||
import chess.engine
|
||||
|
||||
from chesspp.baysian_mcts import BayesianMcts
|
||||
from chesspp.classic_mcts import ClassicMcts
|
||||
from chesspp.mcts.baysian_mcts import BayesianMcts
|
||||
from chesspp.mcts.classic_mcts import ClassicMcts
|
||||
from chesspp.i_strategy import IStrategy
|
||||
from typing import Dict
|
||||
|
||||
|
||||
0
chesspp/mcts/__init__.py
Normal file
0
chesspp/mcts/__init__.py
Normal file
@@ -1,7 +1,7 @@
|
||||
import math
|
||||
|
||||
import torch.distributions as dist
|
||||
from chesspp.i_mcts import *
|
||||
from chesspp.mcts.i_mcts import *
|
||||
from chesspp.i_strategy import IStrategy
|
||||
from chesspp.util_gaussian import gaussian_ucb1, max_gaussian, min_gaussian
|
||||
|
||||
4
main.py
4
main.py
@@ -4,8 +4,8 @@ import time
|
||||
import chess
|
||||
import chess.engine
|
||||
import chess.pgn
|
||||
from chesspp.classic_mcts import ClassicMcts
|
||||
from chesspp.baysian_mcts import BayesianMcts
|
||||
from chesspp.mcts.classic_mcts import ClassicMcts
|
||||
from chesspp.mcts.baysian_mcts import BayesianMcts
|
||||
from chesspp.random_strategy import RandomStrategy
|
||||
from chesspp.stockfish_strategy import StockFishStrategy
|
||||
from chesspp import engine
|
||||
|
||||
Reference in New Issue
Block a user