alexandreduplessis commited on
Commit
c24394f
·
verified ·
1 Parent(s): bf76425

Chess Challenge submission by alexandreduplessis

Browse files
Files changed (1) hide show
  1. tokenizer.py +1 -2
tokenizer.py CHANGED
@@ -59,8 +59,7 @@ class ChessTokenizer(PreTrainedTokenizer):
59
  "(O)": "castle_q",
60
  }
61
 
62
- _PROMO_RE = re.compile(r'=?([QRBNqrbn])') # accepts "=Q" or "q" style
63
-
64
 
65
  def __init__(
66
  self,
 
59
  "(O)": "castle_q",
60
  }
61
 
62
+ _PROMO_RE = re.compile(r'=?([QRBNqrbn])')
 
63
 
64
  def __init__(
65
  self,