Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/3_evals/1_llm_judge/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Run in the following steps:
```bash
uv run --env-file .env \
-m src.3_evals.1_llm_judge.upload_data \
--source_dataset hf://junzhang1207/search-dataset@2349ba4:train \
--source_dataset hf://vector-institute/hotpotqa@d997ecf:train \
--langfuse_dataset_name search-dataset \
--limit 18
```
Expand Down
4 changes: 2 additions & 2 deletions tests/data_tests/test_load_hf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

def test_load_from_hub_unspecified_subset():
"""Test loading dataset from hub, no subset specified."""
url = "hf://junzhang1207/search-dataset@2349ba4:train"
url = "hf://vector-institute/hotpotqa@d997ecf:train"
rows_limit = 18
dataset = get_dataset(url, limit=rows_limit)
print(url, get_dataset_url_hash(url), rows_limit, dataset)
Expand All @@ -17,7 +17,7 @@ def test_load_from_hub_unspecified_subset():

def test_load_from_hub_named_subset():
"""Test loading dataset from hub, no subset specified."""
url = "hf://ComplexDataLab/Misinfo_Datasets@9f1ca17[liar_new]:test"
url = "hf://vector-institute/hotpotqa@d997ecf:train"
rows_limit = 18
dataset = get_dataset(url, limit=rows_limit)
print(url, get_dataset_url_hash(url), rows_limit, dataset)
Expand Down
Loading