Datasets:

License:
momentino commited on
Commit
7c11e19
·
1 Parent(s): 3b21e18

chore: removed debug sample limit

Browse files
Files changed (1) hide show
  1. planbench.py +1 -1
planbench.py CHANGED
@@ -254,5 +254,5 @@ class PlanBench(datasets.GeneratorBasedBuilder):
254
  def _generate_examples(self, filepath, split):
255
  with open(filepath, encoding = "utf-8") as fin :
256
  data = json.load(fin)
257
- for instance in data["instances"][:10]:
258
  yield instance["instance_id"], instance
 
254
  def _generate_examples(self, filepath, split):
255
  with open(filepath, encoding = "utf-8") as fin :
256
  data = json.load(fin)
257
+ for instance in data["instances"]:
258
  yield instance["instance_id"], instance