You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Improvement] Update docs about test crops. (open-mmlab#359)
* [Docs] Update docs about test crops.
1. Add more docs.
2. Update default configs in TSM model when using DenseSampleFrames.
* [Docs] Update docs about test crops
1. Add more docs.
2. Update default configs in TSM model when using DenseSampleFrames.
* calculate num_crops automatically
* remove `twice_sample/test_crops` in test_cfg
* update all tsm model `test_cfg['average_clips']` default value to 'prob'
* add changelog
* fix a bug when using tsn and `test_cfg['average_clips']='prob'`
* fix docs and add docs for open-mmlab#363
* use `num_segments` instead of `num_segs` in average_clip
* use `num_segs` in TSMHead and average_clip.
Copy file name to clipboardexpand all lines: demo/README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
10
10
### Video demo
11
11
12
-
We provide a demo script to predict the recognition result using a single video.
12
+
We provide a demo script to predict the recognition result using a single video. In order to get predict results in range `[0, 1]`, make sure to set `test_cfg = dict(average_clips='prob')` in config file.
@@ -157,7 +157,7 @@ or use checkpoint url from `configs/` to directly load corresponding checkpoint,
157
157
158
158
### Webcam demo
159
159
160
-
We provide a demo script to implement real-time action recognition from web camera.
160
+
We provide a demo script to implement real-time action recognition from web camera. In order to get predict results in range `[0, 1]`, make sure to set`test_cfg = dict(average_clips='prob')`in config file.
We provide a demo script to predict different labels using a single long video.
215
+
We provide a demo script to predict different labels using a single long video. In order to get predict results in range `[0, 1]`, make sure to set `test_cfg = dict(average_clips='prob')` in config file.
0 commit comments