Skip to content

Commit 9c52bd9

Browse files
authored
DOC: ensure mode is string in compute stats args
1 parent 44bb425 commit 9c52bd9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ To appropriately calculate the metrics, ensure that your output is in the follow
3939
To get the stats for segmentation and classification, run:
4040

4141
```
42-
python compute_stats.py --mode=seg_class --pred=<path_to_results> --true=<path_to_ground_truth>
42+
python compute_stats.py --mode="seg_class" --pred=<path_to_results> --true=<path_to_ground_truth>
4343
```
4444

4545
To get the stats for cellular composition prediction, run:
4646

4747
```
48-
python compute_stats.py --mode=regression --pred=<path_to_results> --true=<path_to_ground_truth>
48+
python compute_stats.py --mode="regression" --pred=<path_to_results> --true=<path_to_ground_truth>
4949
```
5050

5151

0 commit comments

Comments
 (0)