sming256 / OpenTAD

OpenTAD is an open-source temporal action detection (TAD) toolbox based on PyTorch.
Apache License 2.0
106 stars 5 forks source link

feature_stride vs sample_stride #14

Closed tqosu closed 1 month ago

tqosu commented 1 month ago

Should I use feature_stride or sample_stride? Or both?

sming256 commented 1 month ago

You should use both. By combining them, we can have more flexible settings for different features.

The real snippet_stride=feature_stride x sample_stride.

tqosu commented 1 month ago

Can I say the feature is always uniformly sampled?

sming256 commented 1 month ago

What does a uniformly sampled feature mean?

tqosu commented 1 month ago

For a given sampled sequence, the distance between two neighboring sampled feature indexes is always a constant.

sming256 commented 1 month ago

Yes. The distance between two neighboring features is always the same.

tqosu commented 1 month ago

Thanks.