ethanNeuralImage's picture
models
92ec8d3
raw
history blame
No virus
1.37 kB
from configs import transforms_config
from configs.paths_config import dataset_paths
DATASETS = {
'ffhq_hypernet': {
'transforms': transforms_config.EncodeTransforms,
'train_source_root': dataset_paths['ffhq'],
'train_target_root': dataset_paths['ffhq'],
'test_source_root': dataset_paths['celeba_test'],
'test_target_root': dataset_paths['celeba_test'],
},
'ffhq_hypernet_pre_extract': {
'transforms': transforms_config.NoFlipTransforms,
'train_source_root': dataset_paths['ffhq_w_inv'],
'train_target_root': dataset_paths['ffhq'],
'train_latents_path': dataset_paths['ffhq_w_latents'],
'test_source_root': dataset_paths['celeba_test_w_inv'],
'test_target_root': dataset_paths['celeba_test'],
'test_latents_path': dataset_paths['celeba_test_w_latents']
},
"cars_hypernet": {
'transforms': transforms_config.CarsEncodeTransforms,
'train_source_root': dataset_paths['cars_train'],
'train_target_root': dataset_paths['cars_train'],
'test_source_root': dataset_paths['cars_test'],
'test_target_root': dataset_paths['cars_test']
},
"afhq_wild_hypernet": {
'transforms': transforms_config.EncodeTransforms,
'train_source_root': dataset_paths['afhq_wild_train'],
'train_target_root': dataset_paths['afhq_wild_train'],
'test_source_root': dataset_paths['afhq_wild_test'],
'test_target_root': dataset_paths['afhq_wild_test']
}
}