| | --- |
| | language: |
| | - en |
| | tags: |
| | - TicTacToe |
| | - tabular_classification |
| | - binary_classification |
| | - UCI |
| | pretty_name: TicTacToe |
| | size_categories: |
| | - n<1K |
| | task_categories: |
| | - tabular-classification |
| | configs: |
| | - tic_tac_toe |
| | license: cc |
| | --- |
| | # TicTacToe |
| | The [TicTacToe dataset](https://archive-beta.ics.uci.edu/dataset/101/tic+tac+toe+endgame) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets). |
| |
|
| | # Configurations and tasks |
| | | **Configuration** | **Task** | **Description** | |
| | |-------------------|---------------------------|-------------------------| |
| | | tic_tac_toe | Binary classification | Does the X player win? | |
| |
|
| |
|
| | # Usage |
| | ```python |
| | from datasets import load_dataset |
| | |
| | dataset = load_dataset("mstz/tic_tac_toe")["train"] |
| | ``` |