Skip to content

Commit 205c9f2

Browse files
committed
UPDATE: readme
1 parent 6ebfeb7 commit 205c9f2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ Clone <strong>config.yml.sample</strong> file and rename it to <strong>config.ym
1212

1313
## Running
1414
`python run.py --task TASK_TO_PERFORM` <br>
15-
Replace TASK_TO_PERFORM with one of the following options: <strong>collecting, training, evaluating</strong>
15+
Replace TASK_TO_PERFORM with one of the following options: <strong>collecting, data_cleaning, training, evaluating</strong>

run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def get_console_arguments():
1212
parser = argparse.ArgumentParser(description='Neuron Coverage Demonstration')
1313
parser.add_argument('--task', dest='task', choices=['collecting', 'data_cleaning', 'training', 'evaluating'],
1414
default="",
15-
required=True, help='Enter one of the following: collecting, training, evaluating')
15+
required=True, help='Enter one of the following: collecting, data_cleaning, training, evaluating')
1616
parser.add_argument('--q', dest='number_of_images', type=int, default=1000,
1717
required=False, help='Number of images data to collect')
1818
parser.add_argument('--cm', dest='collect_mode', choices=['manual_mode', 'ai_mode'], default="manual_mode",

0 commit comments

Comments
 (0)