Gait3D / Gait3D-Benchmark

This is the code for the paper "Gait Recognition in the Wild with Dense 3D Representations and A Benchmark. (CVPR 2022)", "Gait Recognition in the Wild with Multi-hop Temporal Switch", and "Parsing is All You Need for Accurate Gait Recognition in the Wild".
137 stars 19 forks source link

question about iteration and epoch #13

Closed yan811 closed 1 year ago

yan811 commented 1 year ago

Hi! The total iteration in your code is set to 180000, and you report the total epoch as 1200 in your paper. What's the relationship between iteration and epoch?

JinkaiZheng commented 1 year ago

Trainset has 18940 sequences Batch size = 32 4 = 128 sequences One epoch = 18940 / 128 ≈ 150 iterations So, 180,000 iterations = 1200 150 ≈ 1200 epochs

yan811 commented 1 year ago

Thanks!