Update README.md
Browse files
README.md
CHANGED
|
@@ -40,4 +40,63 @@ configs:
|
|
| 40 |
path: data/test_4-*
|
| 41 |
- split: test_5
|
| 42 |
path: data/test_5-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
path: data/test_4-*
|
| 41 |
- split: test_5
|
| 42 |
path: data/test_5-*
|
| 43 |
+
license: apache-2.0
|
| 44 |
+
language:
|
| 45 |
+
- en
|
| 46 |
+
pretty_name: CLRS Text Testing Datasets
|
| 47 |
+
size_categories:
|
| 48 |
+
- 100K<n<1M
|
| 49 |
---
|
| 50 |
+
# CLRS Text Testing Datasets
|
| 51 |
+
Dataset containing 5 different test splits for the CLRS-30 Algorithms, each split is generated with a different random seed using [GitHub code](https://github.com/google-deepmind/clrs/tree/master/clrs/_src/clrs_text).
|
| 52 |
+
The full list of 30 algorithms and lengths included in each split is available [here](https://github.com/google-deepmind/clrs/blob/master/clrs/_src/clrs_text/generate_clrs_text.py#L88).
|
| 53 |
+
|
| 54 |
+
The full paper available [on ArXiv](https://arxiv.org/abs/2406.04229)
|
| 55 |
+
|
| 56 |
+
### Licensing Information
|
| 57 |
+
|
| 58 |
+
We are releasing this dataset under the terms of [Apache-2.0](https://choosealicense.com/licenses/apache-2.0/).
|
| 59 |
+
|
| 60 |
+
## Bibtex
|
| 61 |
+
|
| 62 |
+
If you use our dataset, please cite us:
|
| 63 |
+
```bibtex
|
| 64 |
+
@article{markeeva2024clrs,
|
| 65 |
+
title={The CLRS-Text Algorithmic Reasoning Language Benchmark},
|
| 66 |
+
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},
|
| 67 |
+
journal={arXiv preprint arXiv:2406.04229},
|
| 68 |
+
year={2024}
|
| 69 |
+
}
|
| 70 |
+
```
|
| 71 |
+
|
| 72 |
+
## Full List of Algorithms
|
| 73 |
+
- activity_selector
|
| 74 |
+
- articulation_points
|
| 75 |
+
- bellman_ford
|
| 76 |
+
- bfs
|
| 77 |
+
- binary_search
|
| 78 |
+
- bridges
|
| 79 |
+
- bubble_sort
|
| 80 |
+
- dag_shortest_paths
|
| 81 |
+
- dfs
|
| 82 |
+
- dijkstra
|
| 83 |
+
- find_maximum_subarray_kadane
|
| 84 |
+
- floyd_warshall
|
| 85 |
+
- graham_scan
|
| 86 |
+
- heapsort
|
| 87 |
+
- insertion_sort
|
| 88 |
+
- jarvis_march
|
| 89 |
+
- kmp_matcher
|
| 90 |
+
- lcs_length
|
| 91 |
+
- matrix_chain_order
|
| 92 |
+
- minimum
|
| 93 |
+
- mst_kruskal
|
| 94 |
+
- mst_prim
|
| 95 |
+
- naive_string_matcher
|
| 96 |
+
- optimal_bst
|
| 97 |
+
- quickselect
|
| 98 |
+
- quicksort
|
| 99 |
+
- segments_intersect
|
| 100 |
+
- strongly_connected_components
|
| 101 |
+
- task_scheduling
|
| 102 |
+
- topological_sort
|