Datasets:
Update public BenchPress links
Browse files
README.md
CHANGED
|
@@ -32,7 +32,7 @@ metadata, one row per observed score, and the paper-canonical dense subset used
|
|
| 32 |
in the BenchPress experiments.
|
| 33 |
|
| 34 |
The source repository is
|
| 35 |
-
[`
|
| 36 |
generated from commit `5be3b4eddf0188721ff25f00713b589b2cbed8e0`.
|
| 37 |
|
| 38 |
## Files
|
|
@@ -51,15 +51,15 @@ generated from commit `5be3b4eddf0188721ff25f00713b589b2cbed8e0`.
|
|
| 51 |
```python
|
| 52 |
from datasets import load_dataset
|
| 53 |
|
| 54 |
-
scores = load_dataset("
|
| 55 |
-
models = load_dataset("
|
| 56 |
-
benchmarks = load_dataset("
|
| 57 |
```
|
| 58 |
|
| 59 |
For a complete audit-pool table:
|
| 60 |
|
| 61 |
```python
|
| 62 |
-
scores_all = load_dataset("
|
| 63 |
```
|
| 64 |
|
| 65 |
## Schema
|
|
|
|
| 32 |
in the BenchPress experiments.
|
| 33 |
|
| 34 |
The source repository is
|
| 35 |
+
[`microsoft/benchpress`](https://github.com/microsoft/benchpress). This export was
|
| 36 |
generated from commit `5be3b4eddf0188721ff25f00713b589b2cbed8e0`.
|
| 37 |
|
| 38 |
## Files
|
|
|
|
| 51 |
```python
|
| 52 |
from datasets import load_dataset
|
| 53 |
|
| 54 |
+
scores = load_dataset("microsoft/benchpress-score-matrix", "scores_paper")["train"].to_pandas()
|
| 55 |
+
models = load_dataset("microsoft/benchpress-score-matrix", "models")["train"].to_pandas()
|
| 56 |
+
benchmarks = load_dataset("microsoft/benchpress-score-matrix", "benchmarks")["train"].to_pandas()
|
| 57 |
```
|
| 58 |
|
| 59 |
For a complete audit-pool table:
|
| 60 |
|
| 61 |
```python
|
| 62 |
+
scores_all = load_dataset("microsoft/benchpress-score-matrix", "scores_all")["train"].to_pandas()
|
| 63 |
```
|
| 64 |
|
| 65 |
## Schema
|