Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
HarikalarKutusu committed Apr 4, 2022
1 parent 31fb56d commit 6b2aa16
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions language-model-creation/chess-sentence-generators/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,31 +69,37 @@ The following style sentences are generated and understood by the voice AI.
"capture {toCol}{toRow}",
```

**Other intents**
**Other implemented intents**

```python
# Promotions
iPromotion = ["promote to {piece}"]

# KINGSIDE/QUEENSIDE CASTLING INTENTS
iCastlingKingside = ["kingside castling"]
iCastlingQueenside = ["queenside castling"]

# IGNORED INTENTS
iIgnored = ["check", "checkmate", "stalemate"]

# GAME COMMAND INTENTS
iCommandUndo = ["undo", "undo move", "take back"]
iCommandReset = ["reset game"]
```

**Intents not implemented yet**

```python
# Promotions
iPromotion = ["promote to {piece}"]

# RESIGN INTENTS
iResign = ["i resign", "black resigns", "white resigns"]

# OFFER/ACCEPT DRAW INTENTS
iDrawOffer = ["i offer draw"]
iDrawAccept = ["i accept draw"]

# IGNORED INTENTS
iIgnored = ["check", "checkmate", "stalemate"]

# GAME COMMAND INTENTS
iCommandUndo = ["undo", "undo move", "take back"]
iCommandPlayBlack = ["play black"]
iCommandPlayWhite = ["play white"]
iCommandReset = ["reset game"]
iCommandFinish = ["finish game"]
iCommandReplay = ["replay game"]
iCommandHelp = ["help", "show help"]
Expand Down

0 comments on commit 6b2aa16

Please sign in to comment.