Kamil

Results 3 comments of Kamil

all right, seems like your advice + https://github.com/CSSLab/maia-chess/issues/10 helped me :) The next step for me is to map FEN into tensor so I can pass it to forward call...

ok - found it, now I am here: ``` from haibrid_chess_utils import fen_to_vec model = torch.load( "blunder_prediction/model_weights/leela_extra_blunder_00001-234000.pt", map_location=torch.device('cpu') ) t = torch.from_numpy( fen_to_vec.fenToVec( "r1bqkb1r/ppp2ppp/2n2n2/3Pp1N1/2B5/8/PPPP1PPP/RNBQK2R b KQkq - 0 5" )).reshape(-1,...

keep up! almost there :)