Spaces:
Running
Running
- lighteval_to_duckdb.py +5 -2
lighteval_to_duckdb.py
CHANGED
@@ -5,6 +5,10 @@ import re
|
|
5 |
import ast
|
6 |
from datasets import load_dataset
|
7 |
|
|
|
|
|
|
|
|
|
8 |
def export_to_duckdb(conn, results_dir: Path):
|
9 |
# SQL schema (matching results.completions)
|
10 |
create_string = """CREATE TABLE IF NOT EXISTS completions (
|
@@ -68,5 +72,4 @@ def main():
|
|
68 |
if __name__ == "__main__":
|
69 |
main()
|
70 |
|
71 |
-
#
|
72 |
-
#python npr_to_duckdb.py "/mnt/ssd/aryawu/lighteval/results.duckdb" "/mnt/ssd/aryawu/lighteval/results/details"
|
|
|
5 |
import ast
|
6 |
from datasets import load_dataset
|
7 |
|
8 |
+
"""
|
9 |
+
This script exports the results from the Parquet files in the results directory to a DuckDB database.
|
10 |
+
"""
|
11 |
+
|
12 |
def export_to_duckdb(conn, results_dir: Path):
|
13 |
# SQL schema (matching results.completions)
|
14 |
create_string = """CREATE TABLE IF NOT EXISTS completions (
|
|
|
72 |
if __name__ == "__main__":
|
73 |
main()
|
74 |
|
75 |
+
#python npr_to_duckdb.py "pathto/lighteval/results.duckdb" "pathto/lighteval/results/details"
|
|