google-research / mixmatch

Apache License 2.0
1.13k stars 163 forks source link

Meaning of train_kimg, report_img, and save_kimg flags #10

Closed varunnair18 closed 5 years ago

varunnair18 commented 5 years ago

During the training of our own datasets, how should the train_kimg, report_kimg, and save_kimg flags change from the default values? Is train_kimg to represent the total number of images in our dataset, both labeled and unlabeled?

The help message for train_kimg states 'Training duration in kibi-samples', but I don't quite understand what the kibi-samples are.

Thank you for your help!

david-berthelot commented 5 years ago

1 kibi = 1024 images

david-berthelot commented 5 years ago

Note: None of these really are related to the dataset size, the dataset data is just set on repeat during training (so it keeps reading and shuffling in a loop).

varunnair18 commented 5 years ago

Got it, thank you!