davidberenstein1957 commited on
Commit
8486710
·
1 Parent(s): 199a7d9

fix: update dataset loading in DrawBenchPrompts to retrieve full test set

Browse files
Files changed (1) hide show
  1. benchmark/draw_bench.py +1 -1
benchmark/draw_bench.py CHANGED
@@ -6,7 +6,7 @@ from datasets import load_dataset
6
 
7
  class DrawBenchPrompts:
8
  def __init__(self):
9
- self.dataset = load_dataset("shunk031/DrawBench", split="test[:5]")
10
 
11
  def __iter__(self) -> Iterator[Tuple[str, Path]]:
12
  for i, row in enumerate(self.dataset):
 
6
 
7
  class DrawBenchPrompts:
8
  def __init__(self):
9
+ self.dataset = load_dataset("shunk031/DrawBench", split="test")["test"]
10
 
11
  def __iter__(self) -> Iterator[Tuple[str, Path]]:
12
  for i, row in enumerate(self.dataset):