Update README.md
Browse files
README.md
CHANGED
|
@@ -1,10 +1,16 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
dataset_info:
|
| 3 |
features:
|
| 4 |
- name: question
|
| 5 |
dtype: string
|
| 6 |
- name: answer
|
| 7 |
-
|
| 8 |
- name: algo_name
|
| 9 |
dtype: string
|
| 10 |
splits:
|
|
@@ -19,3 +25,56 @@ configs:
|
|
| 19 |
- split: train
|
| 20 |
path: data/train-*
|
| 21 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: apache-2.0
|
| 5 |
+
size_categories:
|
| 6 |
+
- 1M<n<10M
|
| 7 |
+
pretty_name: CLRS Text Training Datasets
|
| 8 |
dataset_info:
|
| 9 |
features:
|
| 10 |
- name: question
|
| 11 |
dtype: string
|
| 12 |
- name: answer
|
| 13 |
+
sequence: string
|
| 14 |
- name: algo_name
|
| 15 |
dtype: string
|
| 16 |
splits:
|
|
|
|
| 25 |
- split: train
|
| 26 |
path: data/train-*
|
| 27 |
---
|
| 28 |
+
# CLRS Text Testing Datasets
|
| 29 |
+
A dataset containing the training data for CLRS-30 Text, generated using our [GitHub code](https://github.com/google-deepmind/clrs/tree/master/clrs/_src/clrs_text).
|
| 30 |
+
The full list of the 30 algorithms and lengths included is available [here](https://github.com/google-deepmind/clrs/blob/master/clrs/_src/clrs_text/generate_clrs_text.py#L53).
|
| 31 |
+
|
| 32 |
+
The full paper available on [ArXiv](https://arxiv.org/abs/2406.04229)
|
| 33 |
+
|
| 34 |
+
### Licensing Information
|
| 35 |
+
|
| 36 |
+
We are releasing this dataset under the terms of [Apache-2.0](https://choosealicense.com/licenses/apache-2.0/).
|
| 37 |
+
|
| 38 |
+
## Bibtex
|
| 39 |
+
|
| 40 |
+
If you use our dataset, please cite us:
|
| 41 |
+
```bibtex
|
| 42 |
+
@article{markeeva2024clrs,
|
| 43 |
+
title={The CLRS-Text Algorithmic Reasoning Language Benchmark},
|
| 44 |
+
author={Markeeva, Larisa and McLeish, Sean and Ibarz, Borja and Bounsi, Wilfried and Kozlova, Olga and Vitvitskyi, Alex and Blundell, Charles and Goldstein, Tom and Schwarzschild, Avi and Veli{\v{c}}kovi{\'c}, Petar},
|
| 45 |
+
journal={arXiv preprint arXiv:2406.04229},
|
| 46 |
+
year={2024}
|
| 47 |
+
}
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
## Full List of Algorithms
|
| 51 |
+
- activity_selector
|
| 52 |
+
- articulation_points
|
| 53 |
+
- bellman_ford
|
| 54 |
+
- bfs
|
| 55 |
+
- binary_search
|
| 56 |
+
- bridges
|
| 57 |
+
- bubble_sort
|
| 58 |
+
- dag_shortest_paths
|
| 59 |
+
- dfs
|
| 60 |
+
- dijkstra
|
| 61 |
+
- find_maximum_subarray_kadane
|
| 62 |
+
- floyd_warshall
|
| 63 |
+
- graham_scan
|
| 64 |
+
- heapsort
|
| 65 |
+
- insertion_sort
|
| 66 |
+
- jarvis_march
|
| 67 |
+
- kmp_matcher
|
| 68 |
+
- lcs_length
|
| 69 |
+
- matrix_chain_order
|
| 70 |
+
- minimum
|
| 71 |
+
- mst_kruskal
|
| 72 |
+
- mst_prim
|
| 73 |
+
- naive_string_matcher
|
| 74 |
+
- optimal_bst
|
| 75 |
+
- quickselect
|
| 76 |
+
- quicksort
|
| 77 |
+
- segments_intersect
|
| 78 |
+
- strongly_connected_components
|
| 79 |
+
- task_scheduling
|
| 80 |
+
- topological_sort
|