Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
maoyixie committed Nov 28, 2024
1 parent 2a97cc2 commit fcc01fa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions run_all_experiments.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def parse_args() -> argparse.Namespace:
'--cloud-experiment-name',
type=str,
default='',
help='The name of the cloud experiment')
help='The name of the cloud experiment.')
parser.add_argument('-cb',
'--cloud-experiment-bucket',
type=str,
Expand All @@ -193,7 +193,7 @@ def parse_args() -> argparse.Namespace:
parser.add_argument('-y',
'--benchmark-yaml',
type=str,
help='A benchmark YAML file')
help='A benchmark YAML file.')
parser.add_argument('-to', '--run-timeout', type=int, default=RUN_TIMEOUT)
parser.add_argument('-a',
'--ai-binary',
Expand All @@ -206,7 +206,7 @@ def parse_args() -> argparse.Namespace:
'--model',
default=models.DefaultModel.name,
help=('Models available: '
f'{", ".join(models.LLM.all_llm_names())}'))
f'{", ".join(models.LLM.all_llm_names())}.'))
parser.add_argument('-td',
'--template-directory',
type=str,
Expand All @@ -223,21 +223,21 @@ def parse_args() -> argparse.Namespace:
parser.add_argument(
'-lo',
'--log-level',
help=f'Sets the logging level. Options available: {", ".join(LOG_LEVELS)}',
help=f'Sets the logging level. Options available: {", ".join(LOG_LEVELS)}.',
default='info')
parser.add_argument(
'-of',
'--oss-fuzz-dir',
help=
'Path to OSS-Fuzz dir to use. If not set will create temporary directory',
'Path to OSS-Fuzz dir to use. If not set will create temporary directory.',
default='')
parser.add_argument(
'-g',
'--generate-benchmarks',
help=('Generate benchmarks and use those for analysis. This is a string '
'of comma-separated heuristics to use when identifying benchmark '
'targets. Options available: '
f'{", ".join(introspector.get_oracle_dict().keys())}'),
f'{", ".join(introspector.get_oracle_dict().keys())}.'),
type=str)
parser.add_argument(
'-gp',
Expand Down

0 comments on commit fcc01fa

Please sign in to comment.