Files
SimSwapPlus/arcface_torch/configs/3millions.py
T
chenxuanhong 489a6c5f68 arcface
2022-03-19 00:43:03 +08:00

23 lines
528 B
Python

from easydict import EasyDict as edict
# configs for test speed
config = edict()
config.loss = "cosface"
config.network = "r50"
config.resume = False
config.output = None
config.embedding_size = 512
config.sample_rate = 0.99
config.fp16 = True
config.momentum = 0.9
config.weight_decay = 5e-4
config.batch_size = 64 # total_batch_size = batch_size * num_gpus
config.lr = 0.1 # batch size is 512
config.rec = "synthetic"
config.num_classes = 300 * 10000
config.num_epoch = 30
config.warmup_epoch = -1
config.val_targets = []