Update that this dataset used an older version
Browse files
README.md
CHANGED
|
@@ -1,6 +1,33 @@
|
|
| 1 |
-
# APEBench-scraped
|
| 2 |
|
| 3 |
-
All datasets scraped from the APEBench benchmark suite
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
Obtained via:
|
| 6 |
|
|
@@ -11,7 +38,7 @@ conda activate apebench
|
|
| 11 |
|
| 12 |
```bash
|
| 13 |
pip install -U "jax[cuda12]"
|
| 14 |
-
pip install git+ssh://git@github.com/Ceyron/apebench@
|
| 15 |
```
|
| 16 |
|
| 17 |
And then executed the following script:
|
|
|
|
| 1 |
+
# APEBench-scraped (old)
|
| 2 |
|
| 3 |
+
All datasets scraped from the APEBench benchmark suite with the [version used
|
| 4 |
+
for the Neurips
|
| 5 |
+
submission](https://github.com/tum-pbs/apebench/commit/97fb1249a27ab362c95fd33ea7a7f103fd028e37).
|
| 6 |
+
|
| 7 |
+
## Download
|
| 8 |
+
|
| 9 |
+
Download without large files
|
| 10 |
+
|
| 11 |
+
```bash
|
| 12 |
+
GIT_LFS_SKIP_SMUDGE=1 git clone git@hf.co:datasets/thuerey-group/apebench-scraped-old
|
| 13 |
+
```
|
| 14 |
+
|
| 15 |
+
Afterwards, you can inspect the repository and download the files you need. For
|
| 16 |
+
example, for `1d_diff_adv`:
|
| 17 |
+
|
| 18 |
+
```bash
|
| 19 |
+
git lfs install
|
| 20 |
+
git lfs pull -I "data/1d_diff_adv*"
|
| 21 |
+
```
|
| 22 |
+
|
| 23 |
+
Alternatively, you can download the entire repository with large files:
|
| 24 |
+
|
| 25 |
+
```bash
|
| 26 |
+
git lfs install
|
| 27 |
+
git clone git@hf.co:datasets/thuerey-group/apebench-scraped-old
|
| 28 |
+
```
|
| 29 |
+
|
| 30 |
+
## Reproduction
|
| 31 |
|
| 32 |
Obtained via:
|
| 33 |
|
|
|
|
| 38 |
|
| 39 |
```bash
|
| 40 |
pip install -U "jax[cuda12]"
|
| 41 |
+
pip install git+ssh://git@github.com/Ceyron/apebench@97fb1249a27ab362c95fd33ea7a7f103fd028e37
|
| 42 |
```
|
| 43 |
|
| 44 |
And then executed the following script:
|