Skip to content

Commit

Permalink
fix error in parsing the input args
Browse files Browse the repository at this point in the history
  • Loading branch information
KleinRana authored Oct 4, 2023
1 parent 566689c commit f3ad66c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ASR_NL_benchmark/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
interface.main()
else:
print('Running benchmarking')
benchmarking = pipeline.Pipeline(args.hypfile[0], args.hypfile[1], args.reffile[0], args.reffile[1], kind=kind)
benchmarking = pipeline.Pipeline(args.hypfile[0], args.hypfile[1], args.reffile[0], args.reffile[1], kind=args.kind)
benchmarking.main()
pipeline.process_results(kind=args.kind)

0 comments on commit f3ad66c

Please sign in to comment.