KeithG33 commited on
Commit
131006e
·
1 Parent(s): fb85cce

update readme

Browse files
Files changed (1) hide show
  1. README.md +6 -2
README.md CHANGED
@@ -23,8 +23,12 @@ dataset_info:
23
  dtype: int8
24
  - name: action
25
  dtype: int16
 
 
 
 
26
  - name: result
27
- dtype: int8
28
  splits:
29
  - name: train
30
  num_bytes: 65545518162
@@ -44,4 +48,4 @@ This repository contains a gigantic curated chess dataset meant for machine lear
44
 
45
  The supporting dataset code and training platform, known as ChessBot-Battleground, is found at: https://github.com/KeithG33/ChessBot-Battleground/
46
 
47
- *Note*: The dataset requires `trust_remote_code=True` to parse the pgn data. See the code in `ChessBot-Dataset.py` if you'd like to verify first
 
23
  dtype: int8
24
  - name: action
25
  dtype: int16
26
+ - name: best_action
27
+ dtype: int16
28
+ - name: legal_actions
29
+ sequence: int16
30
  - name: result
31
+ dtype: float32
32
  splits:
33
  - name: train
34
  num_bytes: 65545518162
 
48
 
49
  The supporting dataset code and training platform, known as ChessBot-Battleground, is found at: https://github.com/KeithG33/ChessBot-Battleground/
50
 
51
+ *Note*: The dataset uses a custom loading script (`ChessBot-Dataset.py`) to parse PGN data on the fly.