OpenGVLab / UniFormerV2

[ICCV2023] UniFormerV2: Spatiotemporal Learning by Arming Image ViTs with Video UniFormer
https://arxiv.org/abs/2211.09552
Apache License 2.0
291 stars 18 forks source link

How to train model without PRETRAINed model? #35

Closed JeonDF closed 1 year ago

JeonDF commented 1 year ago

I want to train some model with my dataset without pretrained model. How do I modify config file?

What value of 'UNIFORMERV2.PRETRAIN' in config.yaml file do I set? Is Empty value Okay? (ex> PRETRAIN: '') Or should I remove 'PRETRAIN' field (UNIFORMERV2.PRETRAIN) in config.yaml?

Andy1621 commented 1 year ago

Yes, you can simply set an empty value or remove it in config.yaml (the default value is exactly '').

JeonDF commented 1 year ago

Thanks for your answer!