Unverified Commit 27302dd5 authored by Cody Yu's avatar Cody Yu Committed by GitHub
Browse files

[Misc] Fix CI lint (#9085)

parent 0cc566ca
...@@ -194,7 +194,9 @@ if __name__ == "__main__": ...@@ -194,7 +194,9 @@ if __name__ == "__main__":
default='128:256', default='128:256',
help='Range of input lengths for sampling prompts,' help='Range of input lengths for sampling prompts,'
'specified as "min:max" (e.g., "128:256").') 'specified as "min:max" (e.g., "128:256").')
parser.add_argument("--seed", type=int, default=0, parser.add_argument("--seed",
type=int,
default=0,
help='Random seed for reproducibility') help='Random seed for reproducibility')
args = parser.parse_args() args = parser.parse_args()
main(args) main(args)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment