yuantianyuan01 / StreamMapNet

GNU General Public License v3.0
189 stars 16 forks source link

Question about frame number of training video. #13

Closed weimengchuan closed 9 months ago

weimengchuan commented 10 months ago

Thank you for this great work!

I found that in training stage, the frame number of every videos (frame groups) are random. I wonder if this variable length training strategy is better than the fixed length training strategy.

The pseudo code of fore-mentioned fixed length training strategy is shown below.

for i in range(epoch):
    for scene in scene_list:  # In NuScenes dataset, frame length of every scenes are approximately equal (around 40).
        for frame in frame_list:
            ....
            train(data[scene][frame])
            ....
weimengchuan commented 9 months ago

close.