Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
language: en
|
4 |
+
license: mit
|
5 |
+
task_categories:
|
6 |
+
- text-generation
|
7 |
+
- question-answering
|
8 |
+
tags:
|
9 |
+
- chess
|
10 |
+
- evaluation
|
11 |
+
- prediction
|
12 |
+
---
|
13 |
+
|
14 |
+
# Chess Position Evaluation Dataset
|
15 |
+
|
16 |
+
This dataset contains chess positions in FEN format along with their evaluations and expected outcomes. It is formatted in the Alpaca instruction-following format.
|
17 |
+
|
18 |
+
## Dataset Structure
|
19 |
+
|
20 |
+
Each example contains:
|
21 |
+
- instruction: A prompt to evaluate the chess position
|
22 |
+
- input: The FEN string representing the chess position
|
23 |
+
- output: The evaluation value and expected winner
|
24 |
+
|
25 |
+
## Example
|
26 |
+
|
27 |
+
```json
|
28 |
+
{
|
29 |
+
"instruction": "Evaluate the following chess position in FEN format.",
|
30 |
+
"input": "rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq - 0 1",
|
31 |
+
"output": "0.52 (Black wins)"
|
32 |
+
}
|
33 |
+
```
|
34 |
+
|
35 |
+
## Intended Use
|
36 |
+
|
37 |
+
This dataset can be used to train models to evaluate chess positions and predict game outcomes.
|