facebookresearch / SlowFast

PySlowFast: video understanding codebase from FAIR for reproducing state-of-the-art video models.
Apache License 2.0
6.53k stars 1.21k forks source link

whats the meaning of output from terminal? #677

Closed Leozyc-waseda closed 1 year ago

Leozyc-waseda commented 1 year ago

training done: _p33.65_f12.65 _t0.08_m2.88 _a63.51 Top5 Acc: 100.00 MEM: 2.88 f: 12.6452

ythu2 commented 1 year ago

It displays the number of model parameters, FLOPs, median training epoch time, memory usage, top-1 accuracy, and top-5 accuracy.

See the below line for details https://github.com/facebookresearch/SlowFast/blob/6092dad7be32bb1d6b71fe1bade258dc8b492fe3/tools/train_net.py#L761C5-L775C6

Leozyc-waseda commented 1 year ago

@ythu2 Thank you very much ! :)