mit-han-lab / gan-compression

[CVPR 2020] GAN Compression: Efficient Architectures for Interactive Conditional GANs
Other
1.1k stars 148 forks source link

What do these two paths mean?(--metaA_path --metaB_path) #102

Closed Zhaoyu321 closed 2 years ago

Zhaoyu321 commented 2 years ago

Hello! How to get the files under these two paths (--metaA_path --metaB_path) when I train a supernet. In other words, how do I get the files under these two paths by training on my own dataset. Thanks!

lmxyy commented 2 years ago

They are just the metafiles that define the dataset splits. For example, train1 includes all the images in the training set, while train2 includes all the images in the validation set (or subtrain set) for the evolution search. train1+train2 is used for fine-tuning.

lmxyy commented 2 years ago

You could also split the training set to train1 and train2 yourself.

Zhaoyu321 commented 2 years ago

I understand, thank you very much for your reply!