Skip to content

Commit b58a8bb

Browse files
committed
remove extra prints
1 parent cd1fbdf commit b58a8bb

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

examples/star/star.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ def main():
1616
ds = load_dataset(args.dataset_name)
1717
assert "train" in ds
1818
all_samples = generate_predictions(args.model_name, ds["train"], args.temperature, args.n)
19-
for x in all_samples:
20-
for xx in x:
21-
print(xx)
22-
print("-"*100)
2319
assert len(ds["train"]) == len(all_samples)
2420
all_traces, all_execution_results = execute_tests(ds["train"], all_samples)
2521
passed_examples = []

0 commit comments

Comments
 (0)