add tau
This commit is contained in:
parent
45d12a10d6
commit
7b9e3003f1
2
checkpoints/ROMA_UNSB_001/loss_log.txt
Normal file
2
checkpoints/ROMA_UNSB_001/loss_log.txt
Normal file
@ -0,0 +1,2 @@
|
||||
================ Training Loss (Sun Feb 23 15:46:44 2025) ================
|
||||
================ Training Loss (Sun Feb 23 15:52:29 2025) ================
|
||||
82
checkpoints/ROMA_UNSB_001/train_opt.txt
Normal file
82
checkpoints/ROMA_UNSB_001/train_opt.txt
Normal file
@ -0,0 +1,82 @@
|
||||
----------------- Options ---------------
|
||||
atten_layers: 1,3,5
|
||||
batch_size: 1
|
||||
beta1: 0.5
|
||||
beta2: 0.999
|
||||
checkpoints_dir: ./checkpoints
|
||||
continue_train: False
|
||||
crop_size: 256
|
||||
dataroot: /home/openxs/kunyu/datasets/InfraredCity-Lite/Double/Moitor [default: placeholder]
|
||||
dataset_mode: unaligned_double [default: unaligned]
|
||||
direction: AtoB
|
||||
display_env: ROMA [default: main]
|
||||
display_freq: 50
|
||||
display_id: None
|
||||
display_ncols: 4
|
||||
display_port: 8097
|
||||
display_server: http://localhost
|
||||
display_winsize: 256
|
||||
easy_label: experiment_name
|
||||
epoch: latest
|
||||
epoch_count: 1
|
||||
eta_ratio: 0.1
|
||||
evaluation_freq: 5000
|
||||
flip_equivariance: False
|
||||
gan_mode: lsgan
|
||||
gpu_ids: 0
|
||||
init_gain: 0.02
|
||||
init_type: xavier
|
||||
input_nc: 3
|
||||
isTrain: True [default: None]
|
||||
lambda_GAN: 8.0 [default: 1.0]
|
||||
lambda_NCE: 8.0 [default: 1.0]
|
||||
lambda_SB: 0.1
|
||||
lambda_ctn: 1.0
|
||||
lambda_inc: 1.0
|
||||
lmda_1: 0.1
|
||||
load_size: 286
|
||||
lr: 1e-05 [default: 0.0002]
|
||||
lr_decay_iters: 50
|
||||
lr_policy: linear
|
||||
max_dataset_size: inf
|
||||
model: roma_unsb [default: cut]
|
||||
n_epochs: 100
|
||||
n_epochs_decay: 100
|
||||
n_layers_D: 3
|
||||
name: ROMA_UNSB_001 [default: experiment_name]
|
||||
nce_T: 0.07
|
||||
nce_idt: False [default: True]
|
||||
nce_includes_all_negatives_from_minibatch: False
|
||||
nce_layers: 0,4,8,12,16
|
||||
ndf: 64
|
||||
netD: basic
|
||||
netF: mlp_sample
|
||||
netF_nc: 256
|
||||
netG: resnet_9blocks
|
||||
ngf: 64
|
||||
no_antialias: False
|
||||
no_antialias_up: False
|
||||
no_dropout: True
|
||||
no_flip: True [default: False]
|
||||
no_html: False
|
||||
normD: instance
|
||||
normG: instance
|
||||
num_patches: 256
|
||||
num_threads: 4
|
||||
output_nc: 3
|
||||
phase: train
|
||||
pool_size: 0
|
||||
preprocess: resize_and_crop
|
||||
pretrained_name: None
|
||||
print_freq: 100
|
||||
random_scale_max: 3.0
|
||||
save_by_iter: False
|
||||
save_epoch_freq: 5
|
||||
save_latest_freq: 5000
|
||||
serial_batches: False
|
||||
stylegan2_G_num_downsampling: 1
|
||||
suffix:
|
||||
update_html_freq: 1000
|
||||
use_idt: False
|
||||
verbose: False
|
||||
----------------- End -------------------
|
||||
BIN
data/__pycache__/image_folder.cpython-39.pyc
Normal file
BIN
data/__pycache__/image_folder.cpython-39.pyc
Normal file
Binary file not shown.
BIN
data/__pycache__/unaligned_double_dataset.cpython-39.pyc
Normal file
BIN
data/__pycache__/unaligned_double_dataset.cpython-39.pyc
Normal file
Binary file not shown.
BIN
models/__pycache__/patchnce.cpython-39.pyc
Normal file
BIN
models/__pycache__/patchnce.cpython-39.pyc
Normal file
Binary file not shown.
BIN
models/__pycache__/roma_unsb_model.cpython-39.pyc
Normal file
BIN
models/__pycache__/roma_unsb_model.cpython-39.pyc
Normal file
Binary file not shown.
@ -221,6 +221,7 @@ class RomaUnsbModel(BaseModel):
|
||||
|
||||
parser.add_argument('--atten_layers', type=str, default='1,3,5', help='compute Cross-Similarity on which layers')
|
||||
|
||||
parser.add_argument('--tau', type=float, default=0.1, help='used in unsb')
|
||||
|
||||
parser.set_defaults(pool_size=0) # no image pooling
|
||||
|
||||
|
||||
BIN
timm/__pycache__/__init__.cpython-39.pyc
Normal file
BIN
timm/__pycache__/__init__.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/__pycache__/version.cpython-39.pyc
Normal file
BIN
timm/__pycache__/version.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/__pycache__/__init__.cpython-39.pyc
Normal file
BIN
timm/data/__pycache__/__init__.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/__pycache__/auto_augment.cpython-39.pyc
Normal file
BIN
timm/data/__pycache__/auto_augment.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/__pycache__/config.cpython-39.pyc
Normal file
BIN
timm/data/__pycache__/config.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/__pycache__/constants.cpython-39.pyc
Normal file
BIN
timm/data/__pycache__/constants.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/__pycache__/dataset.cpython-39.pyc
Normal file
BIN
timm/data/__pycache__/dataset.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/__pycache__/dataset_factory.cpython-39.pyc
Normal file
BIN
timm/data/__pycache__/dataset_factory.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/__pycache__/distributed_sampler.cpython-39.pyc
Normal file
BIN
timm/data/__pycache__/distributed_sampler.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/__pycache__/loader.cpython-39.pyc
Normal file
BIN
timm/data/__pycache__/loader.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/__pycache__/mixup.cpython-39.pyc
Normal file
BIN
timm/data/__pycache__/mixup.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/__pycache__/random_erasing.cpython-39.pyc
Normal file
BIN
timm/data/__pycache__/random_erasing.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/__pycache__/real_labels.cpython-39.pyc
Normal file
BIN
timm/data/__pycache__/real_labels.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/__pycache__/transforms.cpython-39.pyc
Normal file
BIN
timm/data/__pycache__/transforms.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/__pycache__/transforms_factory.cpython-39.pyc
Normal file
BIN
timm/data/__pycache__/transforms_factory.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/parsers/__pycache__/__init__.cpython-39.pyc
Normal file
BIN
timm/data/parsers/__pycache__/__init__.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/parsers/__pycache__/class_map.cpython-39.pyc
Normal file
BIN
timm/data/parsers/__pycache__/class_map.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/parsers/__pycache__/constants.cpython-39.pyc
Normal file
BIN
timm/data/parsers/__pycache__/constants.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/parsers/__pycache__/parser.cpython-39.pyc
Normal file
BIN
timm/data/parsers/__pycache__/parser.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/parsers/__pycache__/parser_factory.cpython-39.pyc
Normal file
BIN
timm/data/parsers/__pycache__/parser_factory.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/parsers/__pycache__/parser_image_folder.cpython-39.pyc
Normal file
BIN
timm/data/parsers/__pycache__/parser_image_folder.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/parsers/__pycache__/parser_image_in_tar.cpython-39.pyc
Normal file
BIN
timm/data/parsers/__pycache__/parser_image_in_tar.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/data/parsers/__pycache__/parser_image_tar.cpython-39.pyc
Normal file
BIN
timm/data/parsers/__pycache__/parser_image_tar.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/__init__.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/__init__.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/beit.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/beit.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/byoanet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/byoanet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/byobnet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/byobnet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/cait.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/cait.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/coat.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/coat.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/convit.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/convit.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/convmixer.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/convmixer.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/crossvit.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/crossvit.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/cspnet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/cspnet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/densenet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/densenet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/dla.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/dla.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/dpn.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/dpn.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/efficientnet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/efficientnet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/efficientnet_blocks.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/efficientnet_blocks.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/efficientnet_builder.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/efficientnet_builder.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/factory.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/factory.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/features.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/features.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/fx_features.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/fx_features.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/ghostnet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/ghostnet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/gluon_resnet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/gluon_resnet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/gluon_xception.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/gluon_xception.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/hardcorenas.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/hardcorenas.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/helpers.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/helpers.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/hrnet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/hrnet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/hub.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/hub.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/inception_resnet_v2.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/inception_resnet_v2.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/inception_v3.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/inception_v3.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/inception_v4.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/inception_v4.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/levit.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/levit.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/mlp_mixer.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/mlp_mixer.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/mobilenetv3.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/mobilenetv3.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/nasnet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/nasnet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/nest.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/nest.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/nfnet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/nfnet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/pit.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/pit.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/pnasnet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/pnasnet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/registry.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/registry.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/regnet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/regnet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/res2net.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/res2net.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/resnest.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/resnest.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/resnet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/resnet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/resnetv2.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/resnetv2.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/rexnet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/rexnet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/selecsls.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/selecsls.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/senet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/senet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/sknet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/sknet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/swin_transformer.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/swin_transformer.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/tnt.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/tnt.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/tresnet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/tresnet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/twins.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/twins.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/vgg.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/vgg.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/visformer.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/visformer.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/vision_transformer.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/vision_transformer.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/vision_transformer_hybrid.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/vision_transformer_hybrid.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/vovnet.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/vovnet.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/xception.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/xception.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/xception_aligned.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/xception_aligned.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/__pycache__/xcit.cpython-39.pyc
Normal file
BIN
timm/models/__pycache__/xcit.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/layers/__pycache__/__init__.cpython-39.pyc
Normal file
BIN
timm/models/layers/__pycache__/__init__.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/layers/__pycache__/activations.cpython-39.pyc
Normal file
BIN
timm/models/layers/__pycache__/activations.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/layers/__pycache__/activations_jit.cpython-39.pyc
Normal file
BIN
timm/models/layers/__pycache__/activations_jit.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/layers/__pycache__/activations_me.cpython-39.pyc
Normal file
BIN
timm/models/layers/__pycache__/activations_me.cpython-39.pyc
Normal file
Binary file not shown.
Binary file not shown.
BIN
timm/models/layers/__pycache__/blur_pool.cpython-39.pyc
Normal file
BIN
timm/models/layers/__pycache__/blur_pool.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/layers/__pycache__/bottleneck_attn.cpython-39.pyc
Normal file
BIN
timm/models/layers/__pycache__/bottleneck_attn.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/layers/__pycache__/cbam.cpython-39.pyc
Normal file
BIN
timm/models/layers/__pycache__/cbam.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/layers/__pycache__/classifier.cpython-39.pyc
Normal file
BIN
timm/models/layers/__pycache__/classifier.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/layers/__pycache__/cond_conv2d.cpython-39.pyc
Normal file
BIN
timm/models/layers/__pycache__/cond_conv2d.cpython-39.pyc
Normal file
Binary file not shown.
BIN
timm/models/layers/__pycache__/config.cpython-39.pyc
Normal file
BIN
timm/models/layers/__pycache__/config.cpython-39.pyc
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user