diff --git a/configs/recognition/r2plus1d/README.md b/configs/recognition/r2plus1d/README.md index f2c3fcfac14b7c292157c3a2808e8250109024f8..c6d247195a60371b20c8b33c41976b25f3cb7bd4 100644 --- a/configs/recognition/r2plus1d/README.md +++ b/configs/recognition/r2plus1d/README.md @@ -70,7 +70,7 @@ Example: test R(2+1)D model on Kinetics-400 dataset and dump the result to a jso ```shell python tools/test.py configs/recognition/r2plus1d/r2plus1d_r34_3d_8x8x1_180e_kinetics400_rgb.py \ checkpoints/SOME_CHECKPOINT.pth --eval top_k_accuracy mean_class_accuracy \ - --out result.json + --out result.json --average_clips=prob ``` For more details, you can refer to **Test a dataset** part in [getting_started](../../../docs/getting_started.md). diff --git a/configs/recognition/slowfast/README.md b/configs/recognition/slowfast/README.md index 98d44a92a4b313344b31e1cfc273d8e8dc70a692..cd661856254776c5a0bceb0b1fca5e95d9a10fe8 100644 --- a/configs/recognition/slowfast/README.md +++ b/configs/recognition/slowfast/README.md @@ -70,7 +70,7 @@ Example: test SlowFast model on Kinetics-400 dataset and dump the result to a js ```shell python tools/test.py configs/recognition/slowfast/slowfast_r50_3d_4x16x1_256e_kinetics400_rgb.py \ checkpoints/SOME_CHECKPOINT.pth --eval top_k_accuracy mean_class_accuracy \ - --out result.json + --out result.json --average_clips=prob ``` For more details, you can refer to **Test a dataset** part in [getting_started](../../../docs/getting_started.md). diff --git a/configs/recognition/slowonly/README.md b/configs/recognition/slowonly/README.md index 0dc6ac26e488aba350901c00a72d2a95ca01fd84..3914ac2c4e6f687d6212eecf079262f342a72ccf 100644 --- a/configs/recognition/slowonly/README.md +++ b/configs/recognition/slowonly/README.md @@ -6,8 +6,8 @@ |config | pretrain | top1 acc| top5 acc | gpu_mem(M) | iter time(s) | ckpt | log| |-|-|-|-|-|-|-|-| -|[slowonly_r50_4x16x1_256e_kinetics400_rgb](/configs/recognition/slowonly/slowonly_r50_4x16x1_256e_kinetics400_rgb.py) | None |x|x|x|x|[ckpt]()| [log]()| -|[slowonly_r50_8x8x1_256e_kinetics400_rgb](/configs/recognition/slowonly/slowonly_r50_8x8x1_256e_kinetics400_rgb.py) | None |x|x|x|x| [ckpt]() | [log]()| +|[slowonly_r50_4x16x1_256e_kinetics400_rgb](/configs/recognition/slowonly/slowonly_r50_4x16x1_256e_kinetics400_rgb.py) | None |73.02|90.77|x|x|[ckpt]()| [log]()| +|[slowonly_r50_8x8x1_256e_kinetics400_rgb](/configs/recognition/slowonly/slowonly_r50_8x8x1_256e_kinetics400_rgb.py) | None ||74.93|91.92|x| [ckpt]() | [log]()| |[slowonly_r50_video_4x16x1_256e_kinetics400_rgb](/configs/recognition/slowonly/slowonly_r50_video_4x16x1_256e_kinetics400_rgb.py) | None |x|x|x|x| [ckpt]() | [log]()| ## Data @@ -70,7 +70,7 @@ Example: test SlowOnly model on Kinetics-400 dataset and dump the result to a js ```shell python tools/test.py configs/recognition/slowonly/slowonly_r50_3d_4x16x1_256e_kinetics400_rgb.py \ checkpoints/SOME_CHECKPOINT.pth --eval top_k_accuracy mean_class_accuracy \ - --out result.json + --out result.json --average_clips=prob ``` For more details, you can refer to **Test a dataset** part in [getting_started](../../../docs/getting_started.md).