wmcnally / golfdb

GolfDB is a video database for Golf Swing Sequencing, which involves detecting 8 golf swing events in trimmed golf swing videos. This repo demos the baseline model, SwingNet.
204 stars 62 forks source link

What is the sequence length here? #12

Closed Imen29 closed 3 years ago

Imen29 commented 3 years ago

Hello! I want to know what is the seq_lenghth in train.py and eval.py? thanks a lot!

wmcnally commented 3 years ago

64

Imen29 commented 3 years ago

@wmcnally, not a value of seq_length i am asking about its description ??!! thanks in advance.

wmcnally commented 3 years ago

It's the number of frames in the input. The input to the model has 5 dimensions: (batch, frames, height, width, channels). So with a batch size of 1, sequence length of 64, and image size of 160x160, the input would have the shape (1, 64, 160, 160, 3). Hope this helps.

Imen29 commented 3 years ago

@wmcnally thanks