christopher commited on
Commit
e197c14
·
verified ·
1 Parent(s): 3d973f8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ from chess_search.utils import position_to_tokens, replay_moves
9
 
10
  dset = load_dataset("Lichess/chess-puzzles", split="train")
11
  puzzle_lookup = {row["PuzzleId"]: i for i, row in enumerate(dset)}
12
- idx = BitmapIndex.load("puzzles_full")
13
 
14
  app = FastAPI()
15
  app.mount("/static", StaticFiles(directory="static"), name="static")
 
9
 
10
  dset = load_dataset("Lichess/chess-puzzles", split="train")
11
  puzzle_lookup = {row["PuzzleId"]: i for i, row in enumerate(dset)}
12
+ idx = BitmapIndex.load("data.mdb")
13
 
14
  app = FastAPI()
15
  app.mount("/static", StaticFiles(directory="static"), name="static")