add postal address to config

This commit is contained in:
Frank Xu
2026-01-27 17:47:42 -05:00
parent 5d94088004
commit 7a41a766ff
3 changed files with 53 additions and 11 deletions

0
stats/RQ1.ipynb Normal file
View File

File diff suppressed because one or more lines are too long

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "code",
"execution_count": 5,
"execution_count": null,
"id": "234eed3f",
"metadata": {},
"outputs": [
@@ -19,7 +19,7 @@
"from pathlib import Path\n",
"from typing import Any, Dict, Tuple\n",
"\n",
"IGNORE_FIELDS = {\"Raw_rows_first_100\", \"Exploration_sql\", \"Extraction_sql\"}\n",
"IGNORE_FIELDS = {\"Raw_rows_first_100\", \"Exploration_sql\", \"Extraction_sql\", \"PII_Prompt\"}\n",
"\n",
"\n",
"def get_app_code(db_path: str) -> str:\n",
@@ -180,7 +180,7 @@
"\n",
"\n",
"if __name__ == \"__main__\":\n",
" out = aggregate_jsonl_folder(r\"..\\batch_results_2\", \"aggregated_by_app_and_type.jsonl\")\n",
" out = aggregate_jsonl_folder(r\"..\\batch_results\", \"aggregated_by_app_and_type.jsonl\")\n",
" print(f\"Wrote: {out.resolve()}\")\n"
]
}