Datasets:
Merge branch 'main' of https://huggingface.co/datasets/agentlans/bubble-sort
Browse files
README.md
CHANGED
|
@@ -1,3 +1,37 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-4.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-generation
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- sorting
|
| 9 |
+
- algorithm
|
| 10 |
+
- computer-science
|
| 11 |
+
- education
|
| 12 |
+
- reasoning
|
| 13 |
+
---
|
| 14 |
+
# Bubble Sort Dataset
|
| 15 |
+
|
| 16 |
+
Randomly-generated integer sorting problems.
|
| 17 |
+
|
| 18 |
+
Similar in spirit to [agentlans/dijkstra](https://huggingface.co/datasets/agentlans/dijkstra)
|
| 19 |
+
but with the [bubble sort algorithm](https://en.wikipedia.org/wiki/Bubble_sort), one of the simplest sorting algorithms.
|
| 20 |
+
|
| 21 |
+
- Number of integers: 2 to 10
|
| 22 |
+
- Range of each integer: [-100, 100)
|
| 23 |
+
|
| 24 |
+
## Main Uses
|
| 25 |
+
|
| 26 |
+
- Training and evaluating reasoning-capable language models
|
| 27 |
+
- Identifying failed steps in the reasoning process
|
| 28 |
+
|
| 29 |
+
## Limitations
|
| 30 |
+
|
| 31 |
+
- The bubble sort algorithm is simple but inefficient.
|
| 32 |
+
- In practice, using a language model to perform bubble sort makes it more unreliable and greatly worsens performance.
|
| 33 |
+
- Only intended for research use.
|
| 34 |
+
|
| 35 |
+
## Licence
|
| 36 |
+
|
| 37 |
+
Creative Commons Attribution 4.0
|