Skip to content

Commit

Permalink
MISC - fixed typo in README command for launching eval
Browse files Browse the repository at this point in the history
  • Loading branch information
MidoAssran committed Feb 19, 2024
1 parent b1b3bb7 commit 9610f3e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ The single machine implementation starts from the [eval/main.py](eval/main.py),

For example, to run ImageNet image classification on GPUs "0","1", and "2" on a local machine using the config [configs/eval/vitl16_in1k.yaml](configs/eval/vitl16_in1k.yaml), type the command:
```
python -m eval.main \
python -m evals.main \
--fname configs/eval/vitl16_in1k.yaml \
--devices cuda:0 cuda:1 cuda:2
```
Expand All @@ -367,15 +367,15 @@ To launch a distributed evaluation run, the implementation starts from [eval/mai

For example, to launch a distributed ImageNet image classification experiment using the config [configs/eval/vitl16_in1k.yaml](configs/eval/vitl16_in1k.yaml), type the command:
```
python -m eval.main_distributed \
python -m evals.main_distributed \
--fname configs/eval/vitl16_in1k.yaml \
--folder $path_to_save_stderr_and_stdout \
--partition $slurm_partition
```

Similarly, to launch a distributed K400 video classificaiton experiment using the config [configs/eval/vitl16_k400.yaml](configs/eval/vitl16_k400.yaml), type the command:
```
python -m eval.main_distributed \
python -m evals.main_distributed \
--fname configs/eval/vitl16_k400.yaml \
--folder $path_to_save_stderr_and_stdout \
--partition $slurm_partition
Expand Down

0 comments on commit 9610f3e

Please sign in to comment.