Skip to content

Commit

Permalink
Fix incorrect file path in CzechBankQAAnnotator (#3240)
Browse files Browse the repository at this point in the history
  • Loading branch information
yifanmai authored Dec 20, 2024
1 parent f368e67 commit d74392d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helm/benchmark/annotation/czech_bank_qa_annotator.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__(self, file_storage_path: str):
file_name = "czech_bank.db"
file_path = os.path.join(cache_dir, file_name)
ensure_file_downloaded(source_url=CzechBankQAAnnotator.DATABASE_SOURCE_URL, target_path=file_path)
database = sqlite3.connect("/home/yifanmai/oss/helm/czech_bank/czech_bank.db")
database = sqlite3.connect(file_path)

# csv_files_dir = "/home/yifanmai/oss/helm-scenarios/1999-czech-bank"
# # table_name_to_file_name = {
Expand Down

0 comments on commit d74392d

Please sign in to comment.