Xmaster6y commited on
Commit
f6abe6d
1 Parent(s): 82bd166

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -3
README.md CHANGED
@@ -18,15 +18,23 @@ results:
18
  ---
19
  # Model Card for gpt2-stockfish-debug
20
 
21
- ## Details
22
 
23
- Simple completion tuning using an equivalent of:
24
 
25
  ```json
26
  {"prompt":"FEN: {fen}\nMOVE:", "completion": " {move}"}
27
  ```
28
 
29
- ## Use
 
 
 
 
 
 
 
 
30
 
31
  ```python
32
  import chess
 
18
  ---
19
  # Model Card for gpt2-stockfish-debug
20
 
21
+ ## Training Details
22
 
23
+ The model was trained during 1 epoch on the `Xmaster6y/stockfish-debug` dataset (no hyperparameter tuning done). The samples are:
24
 
25
  ```json
26
  {"prompt":"FEN: {fen}\nMOVE:", "completion": " {move}"}
27
  ```
28
 
29
+ Two possible simple extensions:
30
+
31
+ - Expand the FEN string: `r2qk3/...` -> `r11qk111/...` or equivalent
32
+ - Condition with the result (ELO not available in the dataset):
33
+ ```json
34
+ {"prompt":"RES: {res}\nFEN: {fen}\nMOVE:", "completion": " {move}"}
35
+ ```
36
+
37
+ ## Use the Model
38
 
39
  ```python
40
  import chess