Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,8 +13,8 @@ task_categories: # Full list at https://github.com/huggingface/hub-docs/blob/ma
|
|
| 13 |
configs:
|
| 14 |
- tic_tac_toe
|
| 15 |
---
|
| 16 |
-
#
|
| 17 |
-
The [
|
| 18 |
|
| 19 |
# Configurations and tasks
|
| 20 |
| **Configuration** | **Task** | **Description** |
|
|
@@ -26,5 +26,5 @@ The [Ozone dataset](https://archive.ics.uci.edu/ml/datasets/Ozone) from the [UCI
|
|
| 26 |
```python
|
| 27 |
from datasets import load_dataset
|
| 28 |
|
| 29 |
-
dataset = load_dataset("mstz/tic_tac_toe"
|
| 30 |
```
|
|
|
|
| 13 |
configs:
|
| 14 |
- tic_tac_toe
|
| 15 |
---
|
| 16 |
+
# TicTacToe
|
| 17 |
+
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).
|
| 18 |
|
| 19 |
# Configurations and tasks
|
| 20 |
| **Configuration** | **Task** | **Description** |
|
|
|
|
| 26 |
```python
|
| 27 |
from datasets import load_dataset
|
| 28 |
|
| 29 |
+
dataset = load_dataset("mstz/tic_tac_toe")["train"]
|
| 30 |
```
|